We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 664c8c9 commit 2335305Copy full SHA for 2335305
README.md
@@ -29,6 +29,36 @@ client = NocoDBRequestsClient(
29
)
30
```
31
32
+### Project creation
33
+```python
34
+project_body = {
35
+ "title": "MyProject",
36
+ "bases": [
37
+ {
38
+ "type": "pg",
39
+ "config": {
40
+ "client": "pg",
41
+ "connection": {
42
+ "host": "localhost",
43
+ "port": "5432",
44
+ "user": "postgres",
45
+ "password": "postgres",
46
+ "database": "postgres"
47
+ },
48
+ "searchPath": [
49
+ "public"
50
+ ]
51
52
+ "inflection_column": "camelize",
53
+ "inflection_table": "camelize"
54
+ }
55
+ ],
56
+ "external": True
57
+}
58
+
59
+project = client.project_create(body=project_body)
60
+```
61
62
### Project selection
63
```python
64
# Be very carefull with org, project_name and table names
0 commit comments