airtable.py
airtable.py copied to clipboard
ModuleNotFoundError
Hi, I am using Windows where pip install requests was completed successfully. On the first line of my code as below I get the error.
from airtable import airtable
ModuleNotFoundError Traceback (most recent call last)
ModuleNotFoundError: No module named 'airtable'
I had this same error. Try this:
from airtable.airtable import Airtable
You just have to import airtable
. No need for from airtable import airtable
or from airtable.airtable import Airtable
Try to import pyairtable, it worked for me
somewhat like
pip install pyairtable