Metadata-Version: 2.4
Name: all-night
Version: 0.1.0
Summary: A tiny, single-file Flask-like ASGI web framework
Author: 22552
License: MIT
Project-URL: Homepage, https://github.com/22552/all-night
Project-URL: Documentation, https://github.com/22552/all-night/tree/main/docs
Project-URL: Repository, https://github.com/22552/all-night
Keywords: asgi,web,framework,night
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: AsyncIO
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# All-Night

A tiny, single-file Flask-like ASGI web framework.

```bash
pip install all-night
```

```python
from night import Night

app = Night()

@app.get("/")
def index():
    return {"hello": "night"}
```

Run with `uvicorn app:app --reload` or `night run app.py`.

See the [documentation](docs/README.md) for guides and the API reference.

