当前位置: 首页 > 工具软件 > Falcon > 使用案例 >

【python】falcon部署

许丁雷
2023-12-01

1,falcon介绍
    falcon是一个可靠的、高性能的Python web框架,用于构建大规模的应用程序后端和微服务。它鼓励REST架构风格,并且在保持高效的同时尽量少做事情。

2,安装

pip install falcon
# pip install cython
# pip install -v --no-binary :all: falcon
# pip install gunicorn uwsgi # linux
# pip install waitress # windows

3,应用

4,相关链接
https://www.osgeo.cn/falcon/user/install.html

 类似资料: