Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 python klout API 中遇到了一个奇怪的错误。我已经使用 pip install 安装了 klout 模块。我创建了一个 api 密钥并使用以下代码:
from klout import * k = Klout('key')
我的代码运行正常,直到 5 分钟前我收到:
k = Klout('key') NameError: name 'Klout' is not defined
关于这个错误的任何想法?每小时有通话限制吗?
您可能在某处的路径中添加了一个文件klout.py,掩盖了您实际想要导入的库。
klout.py
__file__您可以通过在 Cuckoo 模块上打印属性来诊断是什么文件:
__file__
import klout print(klout.__file__)
重命名该文件;你不想掩盖你的图书馆。