ASGI implemented as a Twisted resource
Project description
txasgiresource is ASGI implemented as a Twisted Web Resource, very similar to WSGIResource.
This is inspired by Daphne but somewhat implemented from specs.
It can also run as a daemon.
The code is available on GitHub
Usage
As Twisted Resource
from twisted.web import server
from yourdjangoproject.routing import application
resource = ASGIResource(application)
site = server.Site(resource)
# If we are done with the resource, make sure to stop it.
yield resource.stop()
As ASGI Protocol server
twistd -n txasgi -a yourdjangoproject.routing:application
As ASGI Protocol server on a different port and ip
twistd -n txasgi -a yourdjangoproject.asgi:channel_layer -d tcp:5566:interface=0.0.0.0
Supported specifications
Specification |
Supported |
---|---|
asgi2 |
Yes, through compatibility handler |
asgi3 |
Yes |
HTTP |
Yes, v2.0 |
Websocket |
Yes, v2.0 |
Lifespan |
No |
Status
Master branch
Develop branch
License
MIT, see LICENSE
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file txasgiresource-2.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: txasgiresource-2.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97a3749799811537ab020b81373c02aeb06540fea75dc80248a437fa0c561f41 |
|
MD5 | b5f563a17f1c167dd3f252db33a67b72 |
|
BLAKE2b-256 | e79dc70c6a46726f7810c54e956fc18475dd46b7ac880f07531dd469212685a4 |