Skip to content

Minor Updates

Pre-release
Pre-release

Choose a tag to compare

@lfparis lfparis released this 08 Sep 14:45
· 12 commits to master since this release
  • Fixed Issue 13 - Airtable class now takes 2 new kwargs:
    • raise_for_status: which will raise an AirbaseException for any API call not in 200s. See usage below:
     async with Airtable(raise_for_status=True):
    • verbose which logs the stack trace for any API call not in 200s:
    async with Airtable(verbose=True)
  • Fixed Issue 14 - Delete Records accepts records without a fields key
  • Added overall Record validation to all REST methods