diff --git a/docs/source/index.rst b/docs/source/index.rst index 277a1d415..97a7a2c35 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -36,5 +36,6 @@ Contents low-level api testimonials + related release-process release-notes diff --git a/docs/source/related.rst b/docs/source/related.rst new file mode 100644 index 000000000..73413b763 --- /dev/null +++ b/docs/source/related.rst @@ -0,0 +1,42 @@ +Related Projects +================ +Projects using the hyper library. + +Hypercorn +--------- +Hypercorn is an ASGI web server based on the sans-io hyper, h11, h2, and +wsproto libraries and inspired by Gunicorn. Hypercorn supports HTTP/1, HTTP/2, +WebSockets (over HTTP/1 and HTTP/2), ASGI/2, and ASGI/3 specifications. +Hypercorn can utilise asyncio, uvloop, or trio worker types. + +Hypercorn can optionally serve the current draft of the HTTP/3 specification +using the aioquic library. + +.. image:: https://badgen.net/gitlab/stars/pgjones/hypercorn +.. image:: https://badgen.net/gitlab/last-commit/pgjones/hypercorn + +- **repo:** https://gitlab.com/pgjones/hypercorn +- **first release:** 2018-06-02 + +Daphne +------ +Daphne is a HTTP, HTTP2 and WebSocket protocol server for ASGI and ASGI-HTTP, +developed to power Django Channels. + +.. image:: https://img.shields.io/github/stars/django/daphne +.. image:: https://img.shields.io/github/last-commit/django/daphne + +- **repo:** https://github.com/django/daphne +- **first release:** 2016-02-21 + +HTTPX +----- +HTTPX is a fully featured HTTP client for Python 3, which provides sync and +async APIs, and support for both HTTP/1.1 and HTTP/2. + +.. image:: https://img.shields.io/github/stars/encode/httpx +.. image:: https://img.shields.io/github/last-commit/encode/httpx + +- **repo:** https://github.com/encode/httpx +- **first release:**: 2019-06-21 +