我正在运行此错误代码:
from twilio.rest import TwilioRestClient
account_sid="AC9d3b9e6da765********************"
auth_token="5c6ff9b2e2dc********************"
client= TwilioRestClient(account_sid , auth_token)
message = client.sms.message.create(
body="This is Deadshot",
to="+919582******",
from_="+91987*******")
print message.sid
运行它时会出现以下错误:
Traceback (most recent call last):
File "C:\Python27\myFiles\twilio_demo.py", line 4, in <module>
from twilio.rest import TwilioRestClient
File "C:\Python27\lib\site-packages\twilio-6.3.0-py2.7.egg\twilio\rest\__init__.py", line 12, in <module>
from twilio.base.exceptions import TwilioException
File "C:\Python27\lib\site-packages\twilio-6.3.0-py2.7.egg\twilio\base\exceptions.py", line 4, in <module>
from six import u
ImportError: No module named six
答案 0 :(得分:2)
pip install six
pip install requests
pip install pytz
然后运行代码
尝试将twillio升级到最新版本并使用以下代码
from twilio.rest import Client
account_sid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
auth_token = "your_auth_token"
client = Client(account_sid, auth_token)
message = client.messages.create(
to="",
from_="",
body="Hello from Python!")
print(message.sid)