Metadata-Version: 2.4
Name: airtable-client
Version: 0.1.4
Summary: A Python client for the Airtable API
Project-URL: Homepage, https://www.balancer.team/
Project-URL: Repository, https://github.com/balancer-team/airtable-client
Author-email: Alan Hettinger <alan@balancer.team>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: requests>=2.31.0
Description-Content-Type: text/markdown

# Airtable Python Client

A simple Python client for interacting with the Airtable API.

### Install

You can install the package via pip:

```bash
pip install airtable-client
```

### Usage

Here's a basic example of how to use the Airtable client:

```python
from airtable_client import AirtableClient
base = AirtableClient(api_key='your_api_key', base_id='your_base_id')
records = base.list_records('table_name_or_id')
print(records)
```
