1. 首页
  2. 考试认证
  3. 其它
  4. Minefield 适用于实验的高性能Python WSGI服务器分支

Minefield 适用于实验的高性能Python WSGI服务器分支

上传者: 2024-10-26 12:21:55上传 ZIP文件 375.14KB 热度 2次

Minefield 是一个从 Meinheld 派生的 高性能 Python WSGI Web 服务器。此分支去除了 Meinheld 的异步功能,并进行了多项实验性调整,使得 Minefield 成为一个符合 WSGI 标准的网络服务器(支持 PEP333 和 PEP3333)。Minefield 具有以下要求和特点:

  • 需要 Python 2.x >= 2.7 或 Python 3.x >= 3.3。

  • 支持 LinuxFreeBSDMac OS X

安装方法

PyPI 安装:


$ pip install -U minefield

从源安装:


$ python setup.py install

Minefield 还支持与 Gunicorn 搭配使用,安装方法如下:


$ pip install -U gunicorn

基本用法

示例:一个简单的 WSGI 应用程序


from minefield import server



def hello_world():

    return 'Hello, World!'



server.run(hello_world)

Minefield 适合需要高性能、简洁结构的 WSGI Web 应用,是 Web 开发人员的一个优选实验性工具。

用户评论