https://github.com/mjs/gevent_openssl
pyopenssl gevent compat. lib
https://github.com/mjs/gevent_openssl
Last synced: 5 months ago
JSON representation
pyopenssl gevent compat. lib
- Host: GitHub
- URL: https://github.com/mjs/gevent_openssl
- Owner: mjs
- License: other
- Created: 2013-06-04T04:38:58.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2019-04-14T15:39:43.000Z (about 6 years ago)
- Last Synced: 2025-01-13T09:43:55.285Z (5 months ago)
- Language: Python
- Size: 235 KB
- Stars: 22
- Watchers: 4
- Forks: 18
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: COPYING
Awesome Lists containing this project
README
==============
gevent-openssl
==============
This library wraps pyOpenSSL to make it compatible with gevent. OpenSSL connection
operations that would normally block the current thread will only block the
current greenlet instead.Requirements
------------
* PyOpenSSL >= 0.11
* gevent (compatible with 1.0 pre-releases as well)Usage
-----
Instead of importing OpenSSL directly, do so in the following manner:..
import gevent_openssl as OpenSSL
or
..
import gevent_openssl; gevent_openssl.monkey_patch()
Any calls that would have blocked the current thread will now only block the
current green thread.About
-----
This compatibility is accomplished by yielding to the gevent scheduler
when pyOpenSSL is waiting to be able to read or write data.License
-------
New BSDHistory
-------
This project was originally created by Phus Lu ([email protected]) and
is now maintained by Menno Finlay-Smits ([email protected]).