Websocket backend for GraphQL (Graphene) subscriptions, does not require Django Channels
Project description
Graphene Luna
Graphene Luna is a websocket backend for GraphQL subscriptions in Django with Graphene. It does not require Django Channels. Luna implements the graphql-ws protocol.
Why Luna
Most of the Django Graphene websocket subscription implementations are broke with newer versions of Django or require Django Channels. While Django Channels is great, it is complex and requires extra infrastructure such as Redis. With new versions of Django, the included asynchronous features allow websockets to be created more "natively" with less infrastructure and code overhead.
Graphene Luna is the new modern and easy way to do GraphQL subscriptions in Django.
django-ws
Graphene Luna relies on django-ws. If you wish to customize your experience, refer to django-ws for things like middleware and customizing websocket methods.
Installation
pip install graphene-luna
Adding Luna to Your Django Project
See the Luna Starter Project for a fully setup Django project with Graphene and Luna installed.
Step 1: Update Your asgi.py
- Remove line:
from django.core.asgi import get_asgi_application
- Remove line:
application = get_asgi_application()
Add to the end:
from django_ws import get_websocket_application
application = get_websocket_application()
Step 2: Connect the GraphQL Websocket in ws_urls.py
Next to your root urls.py
create a ws_urls.py
like the example below that uses your websocket.
from django.urls import path
import luna_ws
urlpatterns = [
path('graphql', luna_ws.GraphQLSubscriptionHandler),
]
Step 3: Verify Your Schema is Setup
You should have Graphene setup with a schema. If not see the Graphene installation steps.
In your Graphene settings verify you have a schema:
GRAPHENE = {
'SCHEMA': 'myproject.schema.schema'
}
Step 3: Add Your First Subscription
Add a subscription to your schema. A simple schema to test subscriptions work is shown below.
myproject/schema.py
import asyncio
import graphene
from graphql import GraphQLError
class Subscription(graphene.ObjectType):
count_seconds = graphene.Int(up_to=graphene.Int())
async def subscribe_count_seconds(root, info, up_to):
if up_to > 30:
raise GraphQLError('Count too high, must be <= 30')
for i in range(up_to):
print('TestSubs: ', i)
yield i
await asyncio.sleep(1)
schema = graphene.Schema(
query=Query,
mutation=Mutation,
subscription=Subscription,
)
Step 4: Run Your Django Project Asynchronously
You will need to pick a way to run Django asynchronously.
Running with Gunicorn looks something like:
gunicorn myproject.asgi:application -k uvicorn.workers.UvicornWorker
Step 5: Test Out Your Subscription
Navigate to your GraphiQL Explorer and to test out the subscription above, use a query like:
subscription {
countSeconds(upTo: 30)
}
If you're subscription test was successful, then you can proceed to writing more advanced subscriptions.
Compatibility Notes
Currently Luna works with Django Graphene 3.1+ only. Also, Luna implements the newer GraphQL subscription protocol graphql-ws.
Going Further
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 graphene-luna-1.0.0.tar.gz
.
File metadata
- Download URL: graphene-luna-1.0.0.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.10.3 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71c5c323cb282dec51373a227ab0155c07f0c858114a54d2c6c11bb3ed060bef |
|
MD5 | 2d647f436f91d0b646fd3f454d25780c |
|
BLAKE2b-256 | 37664d89d6b75355df12492d9798ed227832ca9f0cdc9235bad26cb7bda29211 |
File details
Details for the file graphene_luna-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: graphene_luna-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.10.3 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 015e3d5ddfdeb67aef4a10b835be0c66c1354107fd15cb3ec57d70a6b779aaab |
|
MD5 | 1283160059649adc3b7783a57a1aca4f |
|
BLAKE2b-256 | 54cc4ea6f8f375fb66f0969dece91f6a9ab9b70c5dc572e27a7d364f0ad37f36 |