python flask web服务实现更换默认端口和IP的方法
flaskweb后台启动后会发现默认是localhost127.0.0.1:5000
如果需要修改,方便调试发布
可以采用以下方式运行
fromflaskimportFlask
fromflaskimportrequest
app=Flask(__name__)
@app.route('/')
defindex():
user_agent=request.headers.get('User_Agent')
return'user_agentis%s'%user_agent
if__name__=='__main__':
app.run(
host='0.0.0.0',
port=5000,
debug=True
)
结果如下
ServingFlaskapp“start”(lazyloading) Environment:production WARNING:Donotusethedevelopmentserverinaproductionenvironment. UseaproductionWSGIserverinstead. Debugmode:on Runningonhttp://0.0.0.0:5000/(PressCTRL+Ctoquit) Restartingwithstat Debuggerisactive! DebuggerPIN:807-167-541
以上这篇pythonflaskweb服务实现更换默认端口和IP的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。