Created
August 24, 2019 05:45
-
-
Save aslamanver/cda8f9b3e52c21c5368724f3f5aae6a2 to your computer and use it in GitHub Desktop.
Simple Flask Server - Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask | |
app = Flask(__name__) | |
@app.route("/sms") | |
def hello(): | |
return "Hello World!" | |
if __name__ == "__main__": | |
app.run(debug=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment