我已经安装了smartystreets:
pip install smartystreets.py
在文档页面中 https://pypi.python.org/pypi/smartystreets.py/0.2.1
Thaey有这个:
使用您的密钥创建客户端实例:
client = SmartyStreets(AUTH_ID, AUTH_TOKEN)
但是我收到了这个错误:
name 'SmartyStreets' is not defined
如果我尝试:
import SmartyStreets
我明白了:
No module named SmartyStreets
答案 0 :(得分:1)
看起来https://pypi.python.org/pypi/smartystreets.py上的文档与https://github.com/bennylope/smartystreets.py上的文档不一样。试试这个:
from smartystreets import Client
client = Client(AUTH_ID, AUTH_TOKEN)