A simple Python client for interacting with the Airtable API.
You can install the package via pip:
pip install airtable-clientHere's a basic example of how to use the Airtable client:
from airtable_client import AirtableBase
base = AirtableBase(api_key='your_api_key', base_id='your_base_id')
records = base.list_records('table_name_or_id')
print(records)