Skip to content

Instantly share code, notes, and snippets.

@ZENEZ-ORG
Created June 24, 2018 21:24
Show Gist options
  • Save ZENEZ-ORG/08696add3fa42cd9cc458f7c326c2749 to your computer and use it in GitHub Desktop.
Save ZENEZ-ORG/08696add3fa42cd9cc458f7c326c2749 to your computer and use it in GitHub Desktop.
flask hello_world
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return "<span style='color:red'>I am app 1</span>"
if __name__ == '__main__':
app.run(host='127.0.0.1',port=8000,debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment