如何通过 python 使用 smartystreets

How to use smartystreets with python

我已经安装了 smartystreets:

pip install smartystreets.py

在文档页面 https://pypi.python.org/pypi/smartystreets.py/0.2.1

他们有这个:

使用您的密钥创建客户端实例:

client = SmartyStreets(AUTH_ID, AUTH_TOKEN)

但我收到此错误:

name 'SmartyStreets' is not defined

如果我尝试:

import SmartyStreets

我得到:

No module named SmartyStreets

看起来像 https://pypi.python.org/pypi/smartystreets.py isn't as current as the documentation at https://github.com/bennylope/smartystreets.py 上的文档。试试这个:

from smartystreets import Client
client = Client(AUTH_ID, AUTH_TOKEN)