pcorpet/airtable.py

ModuleNotFoundError

ladakgit opened this issue · 4 comments

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)
in
----> 1 from airtable import airtable

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