A bayeux client for python. Built on gevent and requests.
As of version 1.0.0, code using this library must do
from gevent import monkey
monkey.patch_all()
or some other choice of patch_* functions to prepare gevent before importing this library.
Python 3 is officially supported.
To run tests, install py.test and pytest-cov in your virtualenv and
$ py.test -rw -rs --cov=src/python_bayeux/ --cov-report html:coverage
View test coverage results at ./coverage
.