starlette/docs/applications.md

62 lines
1.5 KiB
Markdown
Raw Normal View History

2018-09-05 12:45:39 +00:00
Starlette includes an application class `Starlette` that nicely ties together all of
2018-08-28 14:11:53 +00:00
its other functionality.
```python
from starlette.applications import Starlette
from starlette.responses import PlainTextResponse
from starlette.routing import Route, Mount, WebSocketRoute
2018-08-28 14:11:53 +00:00
from starlette.staticfiles import StaticFiles
def homepage(request):
return PlainTextResponse('Hello, world!')
def user_me(request):
username = "John Doe"
return PlainTextResponse('Hello, %s!' % username)
2018-08-28 14:11:53 +00:00
def user(request):
username = request.path_params['username']
2018-08-28 14:11:53 +00:00
return PlainTextResponse('Hello, %s!' % username)
async def websocket_endpoint(websocket):
await websocket.accept()
await websocket.send_text('Hello, websocket!')
await websocket.close()
def startup():
print('Ready to go')
2018-08-28 14:11:53 +00:00
routes = [
Route('/', homepage),
Route('/user/me', user_me),
Route('/user/{username}', user),
WebSocketRoute('/ws', websocket_endpoint),
Mount('/static', StaticFiles(directory="static")),
]
app = Starlette(debug=True, routes=routes, on_startup=[startup])
```
### Instantiating the application
::: starlette.applications.Starlette
:docstring:
2019-08-27 08:41:04 +00:00
### Storing state on the app instance
You can store arbitrary extra state on the application instance, using the
generic `app.state` attribute.
2019-08-27 08:41:04 +00:00
For example:
```python
app.state.ADMIN_EMAIL = 'admin@example.org'
```
### Accessing the app instance
Where a `request` is available (i.e. endpoints and middleware), the app is available on `request.app`.