📜  跨网络显示烧瓶 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:25.007000             🧑  作者: Mango

代码示例1
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.