
python-flask
独壹@无贰
李日祥的个人博客
展开
-
Celery入门教程
文章目录原理安装实例 Celery是Python开发的分布式任务调度模块 原理 安装 $ sudo pip install Celery #或者 $ sudo easy_install Celery 也可从官方直接下载安装包:https://pypi.python.org/pypi/celery/ tar xvfz celery-0.0.0.tar.gz cd celery-0.0.0 pyt...原创 2020-03-24 16:49:24 · 716 阅读 · 1 评论 -
gunicorn
文章目录安装常用命令详解 安装 pip install gunicorn 常用命令 gunicorn -w 4 -b 127.0.0.1:8080 -D --access-logfile=/var/log/gunicorn.log 项目名.wsgi:application 详解 server socket bind 监听地址和端口。 backlog 服务器中在pending状态的最大连接数,即c...原创 2020-03-11 21:32:11 · 565 阅读 · 0 评论 -
如何让蓝图变得可嵌套
原创 2020-03-11 11:01:21 · 286 阅读 · 0 评论 -
flask连接mysql-pycharm版
文章目录原创 2020-03-11 09:39:36 · 1325 阅读 · 0 评论