I installed the airtable-python-wrapper package using pip install command. After installation, I created a simple Python script to test the functionality:
from airtable import Airtable
api_key = 'your_api_key_here'
base_id = 'your_base_id'
table_id = 'TableName'
client = Airtable(base_id, table_id, api_key)
print(client)
When I execute this code, I encounter the following error message:
ImportError: cannot import name 'Airtable' from 'airtable' (unknown location)
I followed the package documentation exactly but still getting this import error. The installation seemed to complete successfully without any warnings. Has anyone experienced this issue before? What could be causing Python to not recognize the Airtable class even though the package appears to be installed correctly?