Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 842 Bytes

File metadata and controls

35 lines (22 loc) · 842 Bytes

python-bayeux

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.

Tests

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.

Credits