pyairtable
pyairtable copied to clipboard
Python Api Client for Airtable
Is this already supported? If so, I have not been able to find it. If not, then it would be a welcome feature addition!
This branch introduces a `pyairtable` command line script (which is only usable if additional optional dependencies are installed) for performing basic requests against the Airtable API. It also introduces a...
Introduces enhancements requested in #378 to the `Model.save` method, allowing specific field updates to a record rather than the entire record. ```python contact = Contact( first_name="Benjamin", last_name="Perkins" ) # Specify...
This branch adds change tracking to the ORM Model and Field classes, so that we can avoid sending field values to the API if they haven't been modified. This is...
Is there a way to save specific fields of a Model and not the entire record while using the `Model.save` method? Indeed, I have a record that has a pretty...
### Bug Report #### Description I encountered a `TypeError` when trying to import the `pyairtable` API using `from pyairtable import Api`. The error traceback indicates a conflict with multiple base...