twilio关键字响应python搜索传入的身体

时间:2017-07-21 10:56:05

标签: python twilio

有人可以帮助查看出现了什么问题或建议改进代码来搜索传入的短信机构以发送不同的响应吗?

from twilio.twiml import TwiML

    @app.route("/sms", methods=['GET', 'post'])
    class MessagingResponse(TwiML):
        def __init__(self):
            super(MessagingResponse, self).__init__()
            self.name = 'Response'
        def sms_reply():
        for letter in message:
            if letter  == 'hello':
                Response("Hi!")
                break
        elif letter == 'bye':
            Response("Goodbye")
            print(res)

    if __name__ == "__main__":
        app.run(debug=True)

0 个答案:

没有答案