PubSubHubbub support for Django.
- Author: Bruno Renié and contributors
- Licence: BSD
The documentation is available on ReadTheDocs.
Links to the PubSubHubbub specs: 0.4, 0.3.
The project is on github: https://github.com/brutasse/django-push
To setup a development environment, run:
mkvirtualenv django-push pip install -r requirements-dev.txt Django
Then run the tests:
python setup.py test
Use tox
to run the tests across all supported Python / Django version
combinations:
pip install tox tox
To get code coverage stats:
pip install coverage coverage run runtests.py coverage html open htmlcov/index.html