Getting ImportError when trying to import Airtable class from airtable-python-wrapper

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?

yeah, I’ve run into that too. You might wanna check if there’s an older version or a different airtable package installed that might be causing this. Just run pip list | grep airtable and see what pops up. Hope that helps!