如何运行twilio程序?

2024-04-26 03:18:04 发布

您现在位置:Python中文网/ 问答频道 /正文

我运行的代码出现错误:

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

Tags: infrompyimportrestmessage错误line
1条回答
网友
1楼 · 发布于 2024-04-26 03:18:04
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)

相关问题 更多 >