Update table of contents

This commit is contained in:
Tom Christie 2018-08-27 15:42:05 +01:00
parent 99fd15e380
commit 78fae57bc3
1 changed files with 10 additions and 3 deletions

View File

@ -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">&mdash; ⭐️ &mdash;</p> <p align="center">&mdash; ⭐️ &mdash;</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