--- id: airtable-python-wrapper version: "0.15.3" license: The MIT License (MIT) license_treatment: permissive maintenance: active --- # airtable-python-wrapper — Python API Wrapper for the Airtable API License: permissive · Maintenance: active · Downloads: 334.0K/mo ## 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 above — 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 pip install airtable-python-wrapper uv add airtable-python-wrapper poetry add airtable-python-wrapper ## Installing 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_current - Install friction: low - Maintenance: active - Downloads: 334.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags airtable api client python, airtable database wrapper, airtable crud operations, airtable python integration, airtable record management, airtable api wrapper, airtable data access, airtable-integration, crud-wrapper [View on SkillFed](https://skillfed.io/packages/airtable-python-wrapper) · [View on PyPI](https://pypi.org/project/airtable-python-wrapper/)