diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-13 19:56:39 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-13 19:56:39 -0600 |
commit | b919f2dcabc8dcba41f7e309b2d4eccd8cc0d87e (patch) | |
tree | bc3aa43c748e212f074bc82fa3621a7fbdec13a0 /transcribe_call.py | |
parent | 2c670084b3ea2628e9b4d874f3b858e7945ed737 (diff) |
ooga chaga
Diffstat (limited to 'transcribe_call.py')
-rw-r--r-- | transcribe_call.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/transcribe_call.py b/transcribe_call.py new file mode 100644 index 0000000..fb38171 --- /dev/null +++ b/transcribe_call.py @@ -0,0 +1,19 @@ +from dotenv import load_dotenv +from flask import Flask +from twilio.twiml.voice_response import VoiceResponse + +load_dotenv() + + + + +app = Flask(__name__) + +@app.route("/answer", methods=['GET', 'POST']) +def voice(): + response = VoiceResponse() + response.say('Hello world, and thank you for your call from the Flask application.') + return str(response) + +if __name__ == "__main__": + app.run(debug=True, port=6789, host="0.0.0.0") |