Answers for "app.run(host='0.0.0.0' port=5000 debug=true)"

2

display flask across network

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.
Posted by: Guest on July-21-2020
0

app.run(host='0.0.0.0' port=5000 debug=true)

host='0.0.0.0', port=5000
Posted by: Guest on March-12-2021

Browse Popular Code Answers by Language