airtable-python-wrapper
Python API Wrapper for the Airtable API
What it is and what it does
airtable-python-wrapper is a Python client library that abstracts away the HTTP details of talking to Airtable's REST API. It lets you perform standard database operations—fetching all records or specific ones, inserting new rows, searching by field value, updating records by criteria, and deleting records—without writing raw HTTP requests. The wrapper handles URL encoding, formula escaping, and error reporting, and supports filtering, sorting, and typecast options on most operations.
The library is straightforward to use: you instantiate an Airtable object with your base ID and table name, then call methods like get_all(), insert(), search(), update_by_field(), and delete_by_field(). It depends only on requests, making it lightweight to install. The package is in Beta status and supports Python 3.5 through 3.8, though the last release was in mid-2021 and the repo has not been updated since.
Use it for:
- Sync data between Airtable and a Python application or ETL pipeline
- Automate record creation, updates, or deletions in Airtable bases from scripts or scheduled tasks
- Query and filter Airtable records programmatically without manual API calls
- Build a Python backend that reads from or writes to Airtable as a lightweight database
- Search for records by field value and perform bulk updates on matching rows
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Wraps the Airtable API to let you read, insert, search, update, and delete records in Airtable bases from Python code.
Yes, if you need to interact with Airtable from Python and don't mind the 1844-day gap since the last release. The library is stable, has low install friction, and handles common CRUD operations cleanly. Check that it still works with your Airtable API version before relying on it in production; consider forking or seeking an actively maintained alternative if you need ongoing support.
Install
airtable-python-wrapper on PyPI
pip
pip install airtable-python-wrapperuv
uv add airtable-python-wrapperpoetry
poetry add airtable-python-wrapperInstalling airtable-python-wrapper
Before you install
Low install friction; depends only on requests. Actively maintained with recent commits; last release was 1844 days ago but repo remains active.
License in practice
MIT license permits free use, modification, and distribution with minimal restrictions—suitable for both open-source and commercial projects.
Quickstart
pip install airtable-python-wrapper
from airtable import Airtable
airtable = Airtable('base_id', 'table_name')
airtable.get_all(view='MyView', maxRecords=20)
airtable.insert({'Name': 'Brian'})
airtable.search('Name', 'Tom')
Requires a valid Airtable API key and base ID to authenticate and access tables.
Verify before relying
- Current compatibility with modern Airtable API versions and any breaking changes since 2021 release
- Whether batch operations scale well for large record sets
- Active maintenance status given 1844 days since last release despite recent commits
Package facts
| License | The MIT License (MIT) (permissive) |
| Python support | supports the current Python release (!=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — requests |
| Maintenance | actively maintained — 1,844 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 334,009/month — #7,496 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: airtable_python_wrapper-0.15.3-py2.py3-none-any.whl
Keywords: airtable, api
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
airtableProvides a Python wrapper around Airtable's…
permissive · top 5,000 on PyPI
pyairtablePython client library for interacting with the…
permissive · top 5,000 on PyPI
nocodb-simple-clientA Python client library for NocoDB that…
permissive · top 15,000 on PyPI
pgdbWraps PostgreSQL connections to return query…
permissive · top 15,000 on PyPI
slumberSlumber wraps the requests library to provide…
unclear · top 15,000 on PyPI
WooCommerceA Python wrapper for the WooCommerce REST API…
permissive · top 15,000 on PyPI
rocksetPython client library for the Rockset API,…
permissive · top 15,000 on PyPI
sqlalchemy-filtersAdds filtering, sorting, and pagination…
permissive · top 15,000 on PyPI
pysnowpysnow is a Python HTTP client library for…
permissive · top 15,000 on PyPI
py-consulPython client library for HashiCorp Consul that…
permissive · top 5,000 on PyPI