I am using the Airtable Python API
With the following code I get a successful response, minus the API key I removed.
*from airtable import Airtable*
import os*
table_name = ‘PeachTree 903’;*
base_key = ‘app9F0yiPo2kvFBsA’;*
api_key = ‘’;*
airtable = Airtable(base_key, table_name, api_key)*
print(airtable)*
The response I get from the above is:
Which matches my table_name.
Now when I go to add this next line and run the script I get the following errors like nothing is returned which does not make any sense.
airtable.get_all()
Anyone solve this?