2018-08-28 13:58:03 +00:00
< p align = "center" >
2024-09-01 15:06:20 +00:00
< img width = "400px" src = "/img/starlette.svg#only-light" alt = "starlette" / >
< img width = "400px" src = "/img/starlette_dark.svg#only-dark" alt = "starlette" / >
2018-08-28 13:58:03 +00:00
< / p >
< p align = "center" >
2018-09-05 10:39:38 +00:00
< em > ✨ The little ASGI framework that shines. ✨< / em >
2018-08-28 13:58:03 +00:00
< / p >
< p align = "center" >
2020-04-23 15:09:14 +00:00
< a href = "https://github.com/encode/starlette/actions" >
< img src = "https://github.com/encode/starlette/workflows/Test%20Suite/badge.svg" alt = "Build Status" >
2018-08-28 13:58:03 +00:00
< / a >
< a href = "https://pypi.org/project/starlette/" >
< img src = "https://badge.fury.io/py/starlette.svg" alt = "Package version" >
< / a >
2024-09-01 15:06:20 +00:00
< a href = "https://pypi.org/project/starlette" target = "_blank" >
< img src = "https://img.shields.io/pypi/pyversions/starlette.svg?color=%2334D058" alt = "Supported Python versions" >
< / a >
2018-08-28 13:58:03 +00:00
< / p >
---
2024-09-01 15:06:20 +00:00
**Documentation**: < a href = "https://www.starlette.io/" target = "_blank" > https://www.starlette.io< / a >
**Source Code**: < a href = "https://github.com/encode/starlette" target = "_blank" > https://github.com/encode/starlette< / a >
---
2018-08-28 13:58:03 +00:00
# Introduction
2022-02-08 10:42:04 +00:00
Starlette is a lightweight [ASGI][asgi] framework/toolkit,
which is ideal for building async web services in Python.
2018-08-28 13:58:03 +00:00
2018-10-16 15:10:24 +00:00
It is production-ready, and gives you the following:
2022-02-08 10:42:04 +00:00
* A lightweight, low-complexity HTTP web framework.
2018-10-16 15:10:24 +00:00
* WebSocket support.
* In-process background tasks.
* Startup and shutdown events.
2022-09-06 05:43:32 +00:00
* Test client built on `httpx` .
2018-10-16 15:10:24 +00:00
* CORS, GZip, Static Files, Streaming responses.
2018-10-29 16:49:13 +00:00
* Session and Cookie support.
2018-10-16 15:10:24 +00:00
* 100% test coverage.
* 100% type annotated codebase.
2021-06-18 14:48:43 +00:00
* Few hard dependencies.
2022-02-08 10:42:04 +00:00
* Compatible with `asyncio` and `trio` backends.
2022-05-25 17:15:47 +00:00
* Great overall performance [against independent benchmarks][techempower].
2018-08-28 13:58:03 +00:00
## Installation
```shell
2024-10-31 07:05:06 +00:00
pip install starlette
2018-08-28 13:58:03 +00:00
```
2024-08-10 07:17:25 +00:00
You'll also want to install an ASGI server, such as [uvicorn ](https://www.uvicorn.org/ ), [daphne ](https://github.com/django/daphne/ ), or [hypercorn ](https://hypercorn.readthedocs.io/en/latest/ ).
2018-09-05 10:39:38 +00:00
```shell
2024-10-31 07:05:06 +00:00
pip install uvicorn
2018-09-05 10:39:38 +00:00
```
2018-08-28 13:58:03 +00:00
## Example
2024-10-31 07:05:06 +00:00
```python title="main.py"
2018-09-05 10:39:38 +00:00
from starlette.applications import Starlette
from starlette.responses import JSONResponse
2019-11-13 12:25:18 +00:00
from starlette.routing import Route
2018-09-05 10:39:38 +00:00
2018-10-16 15:10:24 +00:00
async def homepage(request):
2018-09-05 10:39:38 +00:00
return JSONResponse({'hello': 'world'})
2019-11-13 12:25:18 +00:00
app = Starlette(debug=True, routes=[
Route('/', homepage),
])
```
Then run the application...
```shell
2024-10-31 07:05:06 +00:00
uvicorn main:app
2018-09-05 10:39:38 +00:00
```
## Dependencies
2021-06-18 14:48:43 +00:00
Starlette only requires `anyio` , and the following dependencies are optional:
2018-09-05 10:39:38 +00:00
2022-09-06 05:43:32 +00:00
* [`httpx`][httpx] - Required if you want to use the `TestClient` .
2019-02-18 13:38:04 +00:00
* [`jinja2`][jinja2] - Required if you want to use `Jinja2Templates` .
2018-10-31 09:42:07 +00:00
* [`python-multipart`][python-multipart] - Required if you want to support form parsing, with `request.form()` .
2018-11-01 12:52:03 +00:00
* [`itsdangerous`][itsdangerous] - Required for `SessionMiddleware` support.
* [`pyyaml`][pyyaml] - Required for `SchemaGenerator` support.
2018-09-05 10:39:38 +00:00
2024-09-01 15:06:20 +00:00
You can install all of these with `pip install starlette[full]` .
2018-09-05 10:39:38 +00:00
## Framework or Toolkit
Starlette is designed to be used either as a complete framework, or as
an ASGI toolkit. You can use any of its components independently.
2024-10-31 07:05:06 +00:00
```python title="main.py"
2018-09-05 10:39:38 +00:00
from starlette.responses import PlainTextResponse
2018-08-28 13:58:03 +00:00
2019-06-14 10:53:17 +00:00
async def app(scope, receive, send):
assert scope['type'] == 'http'
response = PlainTextResponse('Hello, world!')
await response(scope, receive, send)
2018-08-28 13:58:03 +00:00
```
2024-10-31 07:05:06 +00:00
Run the `app` application in `main.py` :
2018-08-29 10:17:09 +00:00
```shell
2024-10-31 07:05:06 +00:00
$ uvicorn main:app
2018-08-29 10:17:09 +00:00
INFO: Started server process [11509]
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
```
2019-03-11 14:35:30 +00:00
Run uvicorn with `--reload` to enable auto-reloading on code changes.
2018-09-05 10:39:38 +00:00
## Modularity
The modularity that Starlette is designed on promotes building re-usable
components that can be shared between any ASGI framework. This should enable
an ecosystem of shared middleware and mountable applications.
The clean API separation also means it's easier to understand each component
in isolation.
2022-02-08 10:42:04 +00:00
---
2018-11-01 14:41:55 +00:00
2022-02-08 10:42:04 +00:00
< p align = "center" > < i > Starlette is < a href = "https://github.com/encode/starlette/blob/master/LICENSE.md" > BSD licensed< / a > code.< br / > Designed & crafted with care.< / i > < / br > — ⭐️ — < / p >
2018-10-31 09:39:10 +00:00
2022-02-08 10:42:04 +00:00
[asgi]: https://asgi.readthedocs.io/en/latest/
2022-09-06 05:43:32 +00:00
[httpx]: https://www.python-httpx.org/
2023-02-20 11:14:47 +00:00
[jinja2]: https://jinja.palletsprojects.com/
2024-12-04 05:33:59 +00:00
[python-multipart]: https://multipart.fastapiexpert.com/
2023-11-23 02:01:17 +00:00
[itsdangerous]: https://itsdangerous.palletsprojects.com/
2018-12-07 13:07:12 +00:00
[sqlalchemy]: https://www.sqlalchemy.org
2018-11-01 12:52:03 +00:00
[pyyaml]: https://pyyaml.org/wiki/PyYAMLDocumentation
2022-02-08 10:42:04 +00:00
[techempower]: https://www.techempower.com/benchmarks/#hw=ph& test=fortune& l=zijzen-sf