1. 首页
  2. 数据库
  3. 其它
  4. flask gevent tutorial:如何将Flask与gevent一起使用(uWSGI和Gunicorn版本) 源码

flask gevent tutorial:如何将Flask与gevent一起使用(uWSGI和Gunicorn版本) 源码

上传者: 2021-03-28 21:39:06上传 ZIP文件 13.04KB 热度 13次
如何将Flask与gevent一起使用(uWSGI和Gunicorn版本) 创建简单的Flask应用程序 首先,我们需要模拟一个慢速的第三方API: # slow_api/api.py import os import asyncio from aiohttp import web async def handle ( request ): delay = float ( request . query . get ( 'delay' ) or 1 ) await asyncio . sleep ( delay ) return web . Response ( te
用户评论