Brings async, event-driven capabilities to Django.
Project description
rest_framework_channels
The enhanced modules for REST WebSockets using django channels.
Installation
pip install rest_framework_channels
After installing it, you should insert 'rest_framework_channels' in the INSTALLED_APPS.
INSTALLED_APPS = [
# Websocket
'daphne',
'channels',
'rest_framework_channels', # add
...
Introduction
rest_framework_channels is the enhanced modules for REST WebSockets using django channels.
You can use serializers
and queryset
in rest_framework in rest_framework_channels. Also, we are ready for similar permissions
and generics
too.
Example
We use the below model and serializer as example.
class TestModel(models.Model):
"""Simple model to test with."""
title = models.CharField(max_length=255)
content = models.CharField(max_length=1024)
class TestSerializer(ModelSerializer):
class Meta:
model = TestModel
fields = '__all__'
from rest_framework_channels import generics
from rest_framework_channels.consumers import AsyncAPIConsumer
from rest_framework_channels.permissions import IsAuthenticated
class ChildActionHandler(generics.RetrieveAPIActionHandler):
serializer_class = TestSerializer
queryset = TestModel.objects.all()
permission_classes = (IsAuthenticated,)
class ParentConsumer(AsyncAPIConsumer):
# You can define the routing inside the consumer similar with original django's urlpatterns
routepatterns = [
re_path(
r'test_child_route/(?P<pk>[-\w]+)/$',
ChildActionHandler.as_aaah(),
),
]
When you send the below json after establishing the connection,
{
'action': 'retrieve', # Similar with GET method of HTTP request
'route': 'test_child_route/1/',
}
you will get the below response. This mechanism is very similar with original rest_framework!
{
'errors': [],
'data': {
'id': 1,
'title': 'title',
'content': 'content'
},
'action': 'retrieve',
'route': 'test_child_route/1/',
'status': 200,
}
As you can see permission_classes
, you will be rejected when you send that json without login.
{
'errors': ['Some Error Messages']
'data': None,
'action': 'retrieve',
'route': 'test_child_route/1/',
'status': 403,
}
Details
For more details, see docs.
Development
code
pip install -e .
pip install twine
documentation
cd sphinx
sudo apt-get -y install plantuml
pip install -r requirements.txt
- generate rst files and html files
cd sphinx
bash build.sh
Reference
This project is VERY inspired by djangochannelsrestframework.
Project details
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 rest_framework_channels-0.0.5.tar.gz
.
File metadata
- Download URL: rest_framework_channels-0.0.5.tar.gz
- Upload date:
- Size: 22.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ac83fad5533e95f4230c77a6290cb2ee691d2fbf04eedf291152e18fb8940f7 |
|
MD5 | 22455513fd3bc4548e685ad1741c6f38 |
|
BLAKE2b-256 | 285813906b12748a2c5689a02d9d0197bfb77018ba0c01b602f6e231c17f873b |
File details
Details for the file rest_framework_channels-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: rest_framework_channels-0.0.5-py3-none-any.whl
- Upload date:
- Size: 33.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 64e329d859fe968da1f29d874d0a585503d3531a821dd92508f51af05f27a244 |
|
MD5 | e12528e1a64efce25d2e15e97f568027 |
|
BLAKE2b-256 | c1c2d8ecee9f990c29a5ebb48d85fd2cf90b3bebaa6eab147e7f4ee74986e568 |