Making Django REST Framework reactive
Project description
This package enables regular Django REST Framework views to become reactive, that is so that client-side applications may get notified of changes to the underlying data as soon as they happen, without the need to poll the API again. While the initial request is done as a regular HTTP request, all the update notifications come through WebSockets.
Install
Prerequisites
The reactive extensions for Django REST Framework require the use of Django Channels for push notifications via WebSockets.
From PyPI
pip install djangorestframework-reactive
From source
pip install https://github.com/genialis/django-rest-framework-reactive/archive/<git-tree-ish>.tar.gz
where <git-tree-ish> can represent any commit SHA, branch name, tag name, etc. in DRF Reactive’s GitHub repository. For example, to install the latest version from the master branch, use:
pip install https://github.com/genialis/django-rest-framework-reactive/archive/master.tar.gz
Configure
First, add rest_framework_reactive to INSTALLED_APPS.
Configure your Django Channels routing.py to include the required paths:
from django.urls import path
from channels.routing import ChannelNameRouter, ProtocolTypeRouter, URLRouter
from rest_framework_reactive.consumers import ClientConsumer, MainConsumer, WorkerConsumer
from rest_framework_reactive.protocol import CHANNEL_MAIN, CHANNEL_WORKER
application = ProtocolTypeRouter({
# Client-facing consumers.
'websocket': URLRouter([
# To change the prefix, you can import ClientConsumer in your custom
# Channels routing definitions instead of using these defaults.
path('ws/<slug:subscriber_id>', ClientConsumer),
]),
# Background worker consumers.
'channel': ChannelNameRouter({
CHANNEL_MAIN: MainConsumer,
CHANNEL_WORKER: WorkerConsumer,
})
})
Also, urls.py need to be updated to include some additional paths:
urlpatterns = [
# ...
url(r'^api/queryobserver/', include('rest_framework_reactive.api_urls')),
# ...
]
Run
In addition to running a Django application server instance, you need to also run a separate observer worker process (or multiple of them). You may start it by running:
python manage.py runworker rest_framework_reactive.main rest_framework_reactive.worker
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
Built Distribution
File details
Details for the file djangorestframework-reactive-7.0.0.tar.gz
.
File metadata
- Download URL: djangorestframework-reactive-7.0.0.tar.gz
- Upload date:
- Size: 35.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee171512ba91546d9ccb05b0b992e2cbe123f033bb926accaedc0bd71c1328d8 |
|
MD5 | d1a93bc5ab7462f8b7f9c513999fd282 |
|
BLAKE2b-256 | 8224552c902f16fad67d6f2b9ea16429e8bd63507c014f2dab9bd694eb82324e |
File details
Details for the file djangorestframework_reactive-7.0.0-py3-none-any.whl
.
File metadata
- Download URL: djangorestframework_reactive-7.0.0-py3-none-any.whl
- Upload date:
- Size: 26.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2d31938d5abc3cdbba8d55651a161331ab79251af1b4176d72006e3ba16666f |
|
MD5 | 3b348674e06425d30f8593ba118e5318 |
|
BLAKE2b-256 | 8119d0745b2540f530361869ac8eca991451d9be8fad83740e9415c8386ad861 |