Metadata-Version: 2.3
Name: py-sse
Version: 0.1.0
Summary: Minimal Async implementation for sse_[granian refactor]
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

wip

`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
```