因此,我通过在我的项目文件夹中输入以下内容安装了在 github 页面https://github.com/gtalarico/airtable-python-wrapper/blob/master/README.md上找到的airtable-python-wrapper包:
pip install airtable-python-wrapper
后来我写了以下脚本:
from airtable import Airtable
from pprint import pprint
base_key = 'mykey'
table_name = 'MyBase'
myVar = Airtable(base_key, table_name)
print(myVar)
当我运行时,我得到了错误:
ImportError: cannot import name 'Airtable' from 'airtable' (unknown location)
有谁知道为什么会这样?为什么它不能识别类Airtable?我正在关注文档,所以我不明白问题是什么。提前致谢