add ASGI Servers

This commit is contained in:
Vinta Chen 2019-12-15 23:53:51 +08:00
parent fb65585b05
commit 2703043899
1 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
- [Awesome Python](#awesome-python)
- [Admin Panels](#admin-panels)
- [Algorithms and Design Patterns](#algorithms-and-design-patterns)
- [ASGI Servers](#asgi-servers)
- [Asynchronous Programming](#asynchronous-programming)
- [Audio](#audio)
- [Authentication](#authentication)
@ -122,6 +123,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
* [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python.
* [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types.
## ASGI Servers
*ASGI-compatible web servers.*
* [uvicorn](https://github.com/encode/uvicorn) - Uvicorn is a lightning-fast ASGI server implementation, using uvloop and httptools.
## Asynchronous Programming
* [asyncio](https://docs.python.org/3/library/asyncio.html) - (Python standard library) Asynchronous I/O, event loop, coroutines and tasks.