Metadata-Version: 2.4
Name: boask
Version: 1.0.1
Summary: Pure Python website engine. Zero dependencies. Real JSX templates.
Project-URL: Homepage, https://github.com/OXOPSoftware/boask
Author-email: OXOP <SHUTUP@SHUPUP.COM>
License-Expression: MIT
Keywords: jsx,minimal,no-dependencies,python,web
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Boask

Pure Python website engine.  
Zero external dependencies.  
Real JSX-style templates without React.

```bash
pip install boask
```

## Quick Start

```python
from boask import route, use, run_server, html_templates

@route("/")
def home(handler):
    return html_templates.render("home.html", title="Boask")

if __name__ == "__main__":
    run_server()
```

