I'm trying to use airtable-python-wrapper but it's not accepting the API key when passed, as explained here: https://airtable-python-wrapper.readthedocs.io/en/master/authentication.html
Code below:
from airtable import Airtable
base_key = 'xxxxxxxxxxxx'
table_name = 'MyTable'
airtable = Airtable(base_key, table_name, api_key='xxxxxxxxxxx')
airtable.get_all()
Any help appreciated.