8
8
9
9
** Note: This is a fork of [ python-nocodb] ( https://github.com/elchicodepython/python-nocodb ) with extended functionality.**
10
10
11
- <img src =" https://www.nocodb.com/brand/nocodb-banner.png " alt =" NocoDB Banner " width =" 600 " />
12
11
13
12
NocoDB is a great Airtable alternative. This client allows python developers
14
13
to use NocoDB API in a simple way.
@@ -17,39 +16,60 @@ to use NocoDB API in a simple way.
17
16
18
17
## 📌 Table of Contents
19
18
20
- - [ Installation] ( #installation )
21
- - [ Usage] ( #usage )
22
- - [ Client Configuration] ( #client-configuration )
23
- - [ Project Creation] ( #project-creation )
24
- - [ Table Row Operations] ( #table-row-operations )
25
- - [ Table Operations] ( #table-operations )
26
- - [ Table Column Operations] ( #table-column-operations )
27
- - [ View Filter Operations] ( #view-filter-operations )
28
- - [ Project Users Management] ( #project-users-management )
29
- - [ Available Filters] ( #available-filters )
30
- - [ Custom Filters] ( #custom-filters )
31
- - [ Version Information] ( #version-information )
32
- - [ Contributors] ( #contributors )
33
-
34
- - [ Contributors Guidelines] ( contributors.md )
19
+ - [ 🚀 NocoDB Python Client] ( #-nocodb-python-client )
20
+ - [ 📌 Table of Contents] ( #-table-of-contents )
21
+ - [ 📥 Installation] ( #-installation )
22
+ - [ 🔧 Usage] ( #-usage )
23
+ - [ 🔑 Client configuration] ( #-client-configuration )
24
+ - [ 📊 Project creation] ( #-project-creation )
25
+ - [ Project selection] ( #project-selection )
26
+ - [ Table rows operations] ( #table-rows-operations )
27
+ - [ 📋 Table Operations] ( #-table-operations )
28
+ - [ 🔢 Table Column Operations] ( #-table-column-operations )
29
+ - [ 🔍 View Filter Operations] ( #-view-filter-operations )
30
+ - [ 👥 Project Users Management] ( #-project-users-management )
31
+ - [ 🔎 Available filters] ( #-available-filters )
32
+ - [ Combining filters using Logical operations] ( #combining-filters-using-logical-operations )
33
+ - [ Using custom filters] ( #using-custom-filters )
34
+ - [ Author notes] ( #author-notes )
35
+ - [ 📋 Version Information] ( #-version-information )
36
+ - [ ✨ Features Overview] ( #-features-overview )
37
+ - [ 📈 Key Benefits] ( #-key-benefits )
38
+ - [ 🏗️ Architecture] ( #️-architecture )
39
+ - [ 👨💻 Contributors] ( #-contributors )
40
+ - [ Original Authors] ( #original-authors )
41
+ - [ Fork Maintainer] ( #fork-maintainer )
35
42
36
43
## 📥 Installation
37
44
45
+ Since this is a fork with additional functionality, install directly from the GitHub repository:
46
+
38
47
``` bash
39
- pip install nocodb
48
+ pip install git+https://github.com/DeepCognition/python- nocodb.git
40
49
```
41
50
42
51
<details >
43
52
<summary >Development Installation</summary >
44
53
45
54
``` bash
46
- git clone https://github.com/santoshray02 /python-nocodb.git
55
+ git clone https://github.com/DeepCognition /python-nocodb.git
47
56
cd python-nocodb
48
57
pip install -e .
49
58
```
50
59
51
60
</details >
52
61
62
+ <details >
63
+ <summary >Original Package</summary >
64
+
65
+ If you want the original package without the enhancements:
66
+
67
+ ``` bash
68
+ pip install nocodb
69
+ ```
70
+
71
+ </details >
72
+
53
73
## 🔧 Usage
54
74
55
75
### 🔑 Client configuration
@@ -449,7 +469,7 @@ graph TD
449
469
- Jan Scheiper @jangxx
450
470
451
471
### Fork Maintainer
452
- - Santosh Ray - VP of Technology [ @santoshray02 ] ( https://github.com/santoshray02 )
472
+ - Santosh Ray - VP of Technology [ @santoshray02 ] ( https://github.com/santoshray02 ) (DeepCognition)
453
473
- Added bulk insert functionality
454
474
- Refactored project identification to use project_id instead of project_name in API endpoints
455
475
- Implemented and fixed project users listing functionality
0 commit comments