Skip to content

Instantly share code, notes, and snippets.

@karnzx
Created January 25, 2022 12:34
Show Gist options
  • Save karnzx/b418a8664d662100521cc7f04db4030c to your computer and use it in GitHub Desktop.
Save karnzx/b418a8664d662100521cc7f04db4030c to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "Hello world!"
if __name__ == '__main__':
app.debug = True
app.run(host="0.0.0.0") #host="0.0.0.0" will make the page accessable
#by going to http://[ip]:5000/ on any computer in
#the network.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment