Metadata-Version: 2.4
Name: boask
Version: 1.0.0
Summary: Pure Python website engine. Zero dependencies. Real JSX templates.
Project-URL: Homepage, https://github.com/OXOPSoftware/boask
Project-URL: Repository, https://github.com/OXOPSoftware/boask
Project-URL: Issues, https://github.com/OXOPSoftware/boask/issues
Author-email: Your Name <you@example.com>
License-Expression: MIT
Keywords: framework,jsx,minimal,no-dependencies,python,web
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
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()
```

