gpt4 book ai didi

python - 在 Google 应用引擎上运行基本的 twilio api

转载 作者:太空宇宙 更新时间:2023-11-03 18:18:21 25 4
gpt4 key购买 nike

我尝试在谷歌应用程序引擎中实现以下代码。虽然我已经通过 pip(version:2.7) 安装了 twilio(version: 3.6),但我收到一条错误消息,指出模块 twilio 丢失了?为什么会这样呢?我该如何克服这个问题?

import webapp2
from twilio import twiml
from twilio.rest import TwilioRestClient



class SendSMS(webapp2.RequestHandler):
def get(self):
account_sid = "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx6bc"
auth_token = "xxxxx24f327xxxxxxxxxxxxxxxxxxxxx"
client = TwilioRestClient(account_sid, auth_token)
rv = client.sms.messages.create(to="91xxxxxxxxx",
from_="+1xxxxxxxxxxx",
body="Hello Monkey!")
self.response.write(str(rv))

app = webapp2.WSGIApplication([('/send_sms', SendSMS)],
debug=True)

我遇到的错误:

 File "C:\Program Files (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 84, in LoadObject

obj = __import__(path[0])

File "C:\Users\TOSHIBA pc\Documents\apps\main\main.py", line 2, in <module>

from twilio import twiml

ImportError: No module named twilio

INFO 2014-07-08 14:40:35,552 module.py:639] default: "GET / HTTP/1.1" 500 -

最佳答案

通过 Google 应用引擎运行 Twillio 有点棘手。实现细节可以在这里找到:https://twilio-python.readthedocs.org/en/latest/appengine.html

关于python - 在 Google 应用引擎上运行基本的 twilio api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24627845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com