New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pastegevent

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pastegevent

Run WSGI applications with PasteDeploy and gevent.

pipPyPI
Version
0.1
Maintainers
1

PasteGevent

With pastegevent package you can run your WSGI applications on top of gevent's high performace HTTP server.

Configuration

Just use egg:pastegevent#gevent as use directive value of your server configuration section:

::

[server:main]
use = egg:pastegevent#gevent

If you need to pastegevent to monkey patch stdlib modules for you, use egg:pastegevent#gevent_patched. This will monkey patch all, except DNS subsystem:

::

[server:main]
use = egg:pastegevent#gevent_patched

But no DNS patching is performed due to inability to reinitialize libevent's DNS subsystem after forking.

Using of asynchronous DNS resolving with evdns

If your application relies heavy on asyncronous DNS resolving, you probably still need to patch stdlib to use evdns to resolve domain names. Fortunately there are few steps to workaround issue with evdns initialization.

First thing to do is to be sure not not make any network interactions before server startup, so libevent (and its DNS subsystem in particular) will be not be initialized before daemonization. That means no network code in WSGI application factory.

Then you should configure server to use non-patched version of gevent server factory:

::

[server:main]
use = egg:pastegevent#gevent

and patch DNS yourself in application factory:

::

def app(global_config, **settings):
    from gevent.monkey import patch_all
    patch_all()
    return wsgi_app

Now your application can take the advantages of asyncronous DNS resolving.

Keywords

paste wsgi gevent

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts