starlette/docs/staticfiles.md

21 lines
590 B
Markdown
Raw Normal View History

2018-08-29 10:17:09 +00:00
Starlette also includes an `StaticFiles` class for serving a specific directory:
2018-08-29 10:17:09 +00:00
* `StaticFiles(directory)` - Serve any files in the given `directory`.
You can combine this ASGI application with Starlette's routing to provide
2018-08-29 10:17:09 +00:00
comprehensive static file serving.
```python
from starlette.routing import Router, Path, PathPrefix
from starlette.staticfiles import StaticFiles
2018-08-29 10:17:09 +00:00
app = Router(routes=[
PathPrefix('/static', app=StaticFiles(directory='static')),
])
```
2018-08-30 13:42:39 +00:00
Static files will respond with "404 Not found" or "405 Method not allowed"
2018-08-29 10:17:09 +00:00
responses for requests which do not match.