Minor Updates
Pre-release
Pre-release
- Fixed Issue 13 - Airtable class now takes 2 new kwargs:
raise_for_status: which will raise anAirbaseExceptionfor any API call not in 200s. See usage below:
async with Airtable(raise_for_status=True):
verbosewhich 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
fieldskey - Added overall Record validation to all REST methods