ππ [0.1] NocoDB library Version!!
General changes
Library system changed to semantic versioning
.
New Features
NocoDB Project Creation
- Example with default database
project_body = {"title": "My new project"}
project = client.project_create(body=project_body)
- Example with Postgresql database
project_body = {
"title": "MyProject",
"bases": [
{
"type": "pg",
"config": {
"client": "pg",
"connection": {
"host": "localhost",
"port": "5432",
"user": "postgres",
"password": "postgres",
"database": "postgres"
},
"searchPath": [
"public"
]
},
"inflection_column": "camelize",
"inflection_table": "camelize"
}
],
"external": True
}
project = client.project_create(body=project_body)
Thanks to @davert0 for this feature!