Airtable Python Wrapper
Python Client for Airtable Api
A light-weight python client library for the Airtable Api
Links
Usage
from airtable import Airtable
table = Airtable('basekey', 'table_name')
# Get
table.get_all()
# [{id:'rec123asa23', fields': {'Column': 'Value'}, ...}]
# Search
airtable.search('ColumnA', 'SearchValue')
# [{id:'rec123asa23', fields': {'Column': 'Value'}, ...}]