Telegraphy - Real Time Events For Django.
Project description
Telegraphy
Telegraphy provides real time events for WSGI Python applications with additional features such as event filtering, subscription persistence and authorization/authentication.
It’s initially intended for Django but you can extend it to any WSGI framework.
WebSocket pub/sub and RPC is based on AutobahnPython implementation of WAMP protocol
Getting It
You can get Telegraphy by using pip:
$ pip install telegraphy
You will need to have pip installed on your system. On linux install the python-pip package, on windows follow this. Also, if you are on linux and not working with a virtualenv, remember to use sudo for both commands (sudo pip install telegraphy).
If you want to install it from source, grab the git repository from GitHub and run setup.py:
$ git clone git://github.com/machinalis/telegraphy/telegraphy.git $ cd telegraphy $ python setup.py install
Installing the Django app
Telegraphy’s Django app is installed with the standard procedure: in your projects settings.py file add telegraphy.contrib.django_telegraphy to the INSTALLED_APPS:
INSTALLED_APPS = ( ... 'telegraphy.contrib.django_telegraphy', ... )
Using It
The django_telegraphy app allows you to easily extend your models so that they generate events on creation, update or delete. Those events will reach your front end in real time.
Simply install the django_telegraphy app in your Django project. Then run the following command in parallel to your web-server:
$ python manage.py run_telegraph
Extend your models so that they automatically generate events: create an events.py file next to your models.py
from models import MyModel
from telegraphy.contrib.django_telegraphy.events import BaseEventModel
class MyEventsModel(BaseEventModel):
model = MyModel
And that’s it! Every time you create, update or delete an instance of your model, an event will reach the frontend.
You can find more examples in the documentation.
More detailed documentation
You can read the docs online here. Or for offline access, you can clone the project code repository and read them from the docs folder.
Help and discussion
For help, suggestions and discussions please refer to http://groups.google.com/group/telegraphy
To guide the development efforts, or if you find any bugs, please use GitHub’s issue tracker.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file telegraphy-0.1.2.7.tar.gz
.
File metadata
- Download URL: telegraphy-0.1.2.7.tar.gz
- Upload date:
- Size: 52.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed68b2dfc82facb6806519645364ad6f66ff21814f6332e620010985648e1b41 |
|
MD5 | 9f1d67a2b8824702ac85dee539914574 |
|
BLAKE2b-256 | 83a730aac16c6180a1e04aeec348f49bc88cdc58cf50afd3a35fb9c8bf54e1c5 |