Metadata-Version: 2.3
Name: py-sse
Version: 0.1.1
Summary: Minimal application wrapper for granian
Author: Deufel
Author-email: Deufel <MDeufel13@gmail.com>
Requires-Dist: brotli>=1.2.0
Requires-Dist: granian>=2.7.2
Requires-Dist: html-tags>=0.0.18
Requires-Dist: requests>=2.32.5
Requires-Python: >=3.12
Description-Content-Type: text/markdown

![PyPI version](https://img.shields.io/pypi/v/py-sse)

> [!WARNING]
> Under active development — May 2026


`app.py`
```py
app = create_app()

@app.get("/")
async def index(req):
    return "<h1>Hello</h1>"

if __name__ == "__main__":
    serve(app)
```

```bash
python app.py
```