mirror of https://github.com/encode/starlette.git
Update table of contents
This commit is contained in:
parent
99fd15e380
commit
78fae57bc3
13
README.md
13
README.md
|
@ -20,8 +20,8 @@
|
||||||
|
|
||||||
Starlette is a small library for working with [ASGI](https://asgi.readthedocs.io/en/latest/).
|
Starlette is a small library for working with [ASGI](https://asgi.readthedocs.io/en/latest/).
|
||||||
|
|
||||||
It gives you `Request` and `Response` classes, request routing, static files support,
|
It gives you `Request` and `Response` classes, request routing, websocket support,
|
||||||
a test client, and a decorator for writing super-minimal applications.
|
static files support, and a test client.
|
||||||
|
|
||||||
**Requirements:**
|
**Requirements:**
|
||||||
|
|
||||||
|
@ -52,11 +52,16 @@ You can run the application with any ASGI server, including [uvicorn](http://www
|
||||||
|
|
||||||
<p align="center">— ⭐️ —</p>
|
<p align="center">— ⭐️ —</p>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Contents
|
||||||
|
|
||||||
* [Responses](#responses)
|
* [Responses](#responses)
|
||||||
* [Response](#response)
|
* [Response](#response)
|
||||||
* [HTMLResponse](#htmlresponse)
|
* [HTMLResponse](#htmlresponse)
|
||||||
* [PlainTextResponse](#plaintextresponse)
|
* [PlainTextResponse](#plaintextresponse)
|
||||||
* [JSONResponse](#jsonresponse)
|
* [JSONResponse](#jsonresponse)
|
||||||
|
* [RedirectResponse](#redirectresponse)
|
||||||
* [StreamingResponse](#streamingresponse)
|
* [StreamingResponse](#streamingresponse)
|
||||||
* [FileResponse](#fileresponse)
|
* [FileResponse](#fileresponse)
|
||||||
* [Requests](#requests)
|
* [Requests](#requests)
|
||||||
|
@ -67,7 +72,9 @@ You can run the application with any ASGI server, including [uvicorn](http://www
|
||||||
* [Static Files](#static-files)
|
* [Static Files](#static-files)
|
||||||
* [Test Client](#test-client)
|
* [Test Client](#test-client)
|
||||||
* [Debugging](#debugging)
|
* [Debugging](#debugging)
|
||||||
* [Decorators](#decorators)
|
|
||||||
|
---
|
||||||
|
|
||||||
## Responses
|
## Responses
|
||||||
|
|
||||||
Starlette includes a few response classes that handle sending back the
|
Starlette includes a few response classes that handle sending back the
|
||||||
|
|
Loading…
Reference in New Issue