Python Flask-1分钟快速构造你的Web程序(python搭建web)
在技术横冲直撞、框架满天飞的这个时代,快速运行起一个Web应用已经是零门槛的事情,这篇文章主要记录一下用Python Flask框架来快速构造“HelloWorld”的经历;既然是基于Python的框架,那么首先默认你已经安装了Python;
笔者在学习的过程中就用了这个链接进行了对Flask的入门学习:http://www.pythondoc.com/flask/quickstart.html#id2,初学者不用太追求过于官方、过于面面俱到的文档,这么说也不是排斥去系统地学习钻研一门技术,而是想说明当新入门一个技术的时候,只有先让程序快速地跑起来,快速地看到效果,才能保证自己兴趣的浓厚度,如果一个框架或是一个开源项目,要花费你好几天的时间才能跑,那么可能的情况是你的兴趣已经被磨灭了一大半;
用Flask构造一个简单的程序如下:
1.pip安装flask包 :
pip install flask
2.你的第一个应用程序基本是这样的:
from flask import Flaskapp = Flask(__name__)@app.route('/')def hello_world(): return 'hello'if __name__ == '__main__': app.run()
好了,可以运行了,你会看到如下的输出:
* Running on http://127.0.0.1:5000/ (Press CTRL C to quit)* Restarting with stat* Debugger is active!* Debugger PIN: 517-355-210
就这样,已经在本地启动了一个web服务,监听的是5000端口,直接在浏览器访问http://127.0.0.1:5000/,你就能看到以下的页面:
到此为止,一个简单的web程序已经构造完成。
接下来再记录几个常见问题:
1.如果你要部署到服务器,怎么让网络上的其他人访问我的服务,并且注意你的服务器上的相关端口(如这里的5000)一定是对外开放的
app.run(host='0.0.0.0')
只要改成0.0.0.0,你的服务器监控的所有ip地址,即任何人都能访问你的服务啦
2.目前跑起来的这个应用是多线程跑的吗?
app.run(threaded=True)
我用的是python3.6,默认是多线程的,为了更加明显,我显式地加上threaded=True,反之如果threaded=False,则是单线程;我也进行了如下的测试:
场景一:Flask单线程模式代码
from flask import Flaskapp = Flask(__name__)import threadingcount = 1@app.route("/")def hello(): print(threading.current_thread().name) global count for i in range(0, 10000): count = count 1 count = count - 1 count = count 1 count = count - 1 count = count 1 count = count - 1 count = count 1 count = count - 1 count = count 1 count = count - 1 count = count 1 count = count - 1 print("hello:%dn" % count) return "hello"if __name__ == '__main__': app.run(threaded=False)
运行一下,然后用ab测试命令,去跑一个小的压测:
ab -c 10 -n 10 "http://127.0.0.1:5000/"
这里是10个进程并发发送10个请求,输出如下:
* Running on http://127.0.0.1:5000/ (Press CTRL C to quit)MainThread127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -hello:1MainThreadhello:1127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -MainThread127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -hello:1MainThreadhello:1MainThread127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -hello:1MainThread127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -hello:1MainThread127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -hello:1MainThreadhello:1MainThread127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -hello:1MainThread127.0.0.1 - - [09/Apr/2019 22:30:18] "GET / HTTP/1.0" 200 -hello:1
可以看到每次都是同一个线程,而每次输出的值也都是hello:1
场景二:Flask多线程模式代码
from flask import Flaskapp = Flask(__name__)import threadingcount = 1@app.route("/")def hello(): print(threading.current_thread().name) global count for i in range(0, 10000): count = count 1 count = count - 1 count = count 1 count = count - 1 count = count 1 count = count - 1 count = count 1 count = count - 1 count = count 1 count = count - 1 count = count 1 count = count - 1 print("hello:%dn" % count) return "hello"if __name__ == '__main__': app.run(threaded=True)
同样Run一下, 用相同ab测试命令去压测,可以看到如下输出:
* Running on http://127.0.0.1:5000 (Press CTRL C to quit)Thread-1hello:1127.0.0.1 - - [20/May/2022 23:00:29] "GET / HTTP/1.0" 200 -Thread-2hello:1127.0.0.1 - - [20/May/2022 23:00:29] "GET / HTTP/1.0" 200 -Thread-3Thread-4hello:1hello:0127.0.0.1 - - [20/May/2022 23:00:29] "GET / HTTP/1.0" 200 -127.0.0.1 - - [20/May/2022 23:00:29] "GET / HTTP/1.0" 200 -Thread-5Thread-6hello:0hello:0127.0.0.1 - - [20/May/2022 23:00:29] "GET / HTTP/1.0" 200 -127.0.0.1 - - [20/May/2022 23:00:29] "GET / HTTP/1.0" 200 -Thread-7Thread-8hello:0Thread-9Thread-10hello:0hello:0hello:0
可以看到每次的线程名都不一样,显然开启了多线程的模式;
上述两种场景的唯一区别就在于threaded这个参数的值,可以动手测试一下,一旦涉及到多线程,对于一个全局变量就会出现互相竞争的情况,也会涉及到加锁、线程上下文切换等行为, 所以这里打印出的hello后面的数值也不一样了,有时候等于1,有时候等于0。