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 发送推文的脚本(例如这里),但是当我尝试调用时
import oauth2 as oauth
我只是得到这个错误:
ImportError:没有名为 oauth2 的模块
我从哪里可以得到这个模块?谢谢
确保您已安装 pip。然后在您的终端中输入以下命令:
$ pip install oauth2
https://github.com/simplegeo/python-oauth2