0

在启动和运行 Web 应用程序时遇到一些问题。你可以在yx8dxjwh.apps.lair.io上看到这个项目在线运行,但是当我将它导入 pyCharm 时,我会看到 api 的一个关键错误。请看下面:

python manage.py runserver

Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x04678078>
Traceback (most recent call last):
  File "C:\Program Files (x86)\Python36-32\lib\site-packages\airtable\auth.py", line 37, in __init__
    self.api_key = api_key or os.environ['AIRTABLE_API_KEY']
  File "C:\Program Files (x86)\Python36-32\lib\os.py", line 669, in __getitem__
    raise KeyError(key) from None
KeyError: 'AIRTABLE_API_KEY'

还有很多其他错误,但我觉得这是主要错误,可能会解决其余错误。

任何帮助,将不胜感激。

4

1 回答 1

0

您没有为AIRTABLE_API_KEY.您使用的 SDK 设置环境变量,默认情况下会利用该环境变量。您可以在以下位置阅读更多信息:https ://airtable-python-wrapper.readthedocs.io/en/master/authentication.html

如果您没有 Airtable API 密钥,则此链接可以帮助您找到它: https: //support.airtable.com/hc/en-us/articles/219046777-How-do-I-get-my- API-密钥-

于 2018-11-22T16:53:28.430 回答