nocodb-simple-client
A simple and powerful NocoDB REST API client for Python
What it is and what it does
nocodb-simple-client is a Python wrapper around the NocoDB REST API that abstracts away HTTP details and provides a Pythonic interface for database operations. It handles CRUD operations on records, bulk inserts/updates/deletes, file attachment management, and complex filtering and sorting queries. The library supports both NocoDB API v2 (default, fully backward compatible) and v3 with automatic parameter conversion—meaning code written for v2 continues to work unchanged when you switch API versions.
The package is built on pydantic for validation, requests for HTTP transport, and requests-toolbelt for file handling. It includes context manager support for automatic resource cleanup, comprehensive type hints for IDE integration, and flexible configuration via environment variables, files, or direct parameters. The library is marked production-ready and actively maintained, with support for modern Python versions (3.10 through 3.14).
Use it for:
- Build a Python application that reads and writes records to a NocoDB database without writing raw HTTP requests.
- Perform bulk insert or update operations on hundreds or thousands of records in a single call.
- Upload or download file attachments associated with NocoDB records programmatically.
- Migrate data between NocoDB instances or from another database into NocoDB using the client's CRUD methods.
- Automate NocoDB workspace, base, table, and field management via the Meta API without manual UI interaction.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A Python client library for NocoDB that provides CRUD operations, bulk operations, file management, and advanced querying against NocoDB REST API with support for both v2 and v3 API versions.
Yes. The package has low install friction (three lightweight dependencies), is actively maintained with no known vulnerabilities, carries a permissive MIT license, and provides a well-documented, type-hinted interface to NocoDB's REST API. It is suitable for production use if you need programmatic access to NocoDB from Python.
Install
nocodb-simple-client on PyPI
pip
pip install nocodb-simple-clientuv
uv add nocodb-simple-clientpoetry
poetry add nocodb-simple-clientInstalling nocodb-simple-client
Before you install
Low friction: pure Python wheel with only three runtime dependencies (pydantic, requests, requests-toolbelt). Last commit 2026-07-21 with active maintenance status.
License in practice
MIT license (permissive) — you can use, modify, and distribute this package freely in commercial and private projects with minimal restrictions.
Quickstart
pip install nocodb-simple-client
from nocodb_simple_client import NocoDBClient, NocoDBTable
with NocoDBClient(
base_url="https://your-nocodb-instance.com",
db_auth_token="your-api-token"
) as client:
table = NocoDBTable(client, table_id="your-table-id")
records = table.get_records(limit=10)
Requires Python 3.10 or later; NocoDB instance URL and API token must be provided.
Verify before relying
- Whether optional extras (cli, async, config, dotenv) are production-ready or experimental.
- Performance characteristics for bulk operations on large datasets.
- Specific error types and exception hierarchy for application error handling.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — pydantic, requests-toolbelt, requests |
| Maintenance | actively maintained — 75 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 622,563/month — #5,710 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: nocodb_simple_client-1.3.6-py3-none-any.whl
Keywords: api, client, database, low-code, no-code, nocodb, rest
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
salesforce-apiWraps Salesforce's REST and SOAP APIs to…
permissive · top 15,000 on PyPI
airtableProvides a Python wrapper around Airtable's…
permissive · top 5,000 on PyPI
CouchDBA Python client library for interacting with…
permissive · top 15,000 on PyPI
postgrestAn async Python client library that provides an…
permissive · top 1,000 on PyPI
tinydbTinyDB is a lightweight, pure-Python document…
permissive · top 5,000 on PyPI
pysnowpysnow is a Python HTTP client library for…
permissive · top 15,000 on PyPI
pysncPySnc provides a Python interface to…
permissive · top 15,000 on PyPI
airtable-python-wrapperWraps the Airtable API to let you read, insert,…
permissive · top 15,000 on PyPI
recordsRecords provides a lightweight SQL query…
permissive · top 15,000 on PyPI
notionUnofficial Python client for Notion.so API v3…
permissive · top 5,000 on PyPI