Skip to content

Instantly share code, notes, and snippets.

@aslamanver
Created August 24, 2019 05:45
Show Gist options
  • Save aslamanver/cda8f9b3e52c21c5368724f3f5aae6a2 to your computer and use it in GitHub Desktop.
Save aslamanver/cda8f9b3e52c21c5368724f3f5aae6a2 to your computer and use it in GitHub Desktop.
Simple Flask Server - Python
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