Metadata-Version: 2.4
Name: boask
Version: 1.1.5
Summary: Pure Python website engine. Zero dependencies. Real JSX templates.
Author: OXOP
Author-email: minbartek41@gmail.com
License: MIT
Keywords: web,minimal,jsx,python,no-dependencies
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# 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()
```

### Comparison to Flask

1. Lightweight.
2. No external dependecies.
3. Unlike flask, it uses built in python libaries only! It uses built-in libs, and some python file libs that are using only built in functions!
4. No "{{ url_for('static', filename='css/main.css') }}" (example), we use /static/css/main.css for example!

#### Info

1. Do not install a earlier version than 1.0.4, you can 1.0.0 but that one is not supported! You can't import them! Also, do not install 1.1.4! It had a bug in strict slashes and it did 500 always! I don't know how the 1.1.4 issue happened! Do not install 1.1.5a2 also! It has import error instead of import .error

##### Changelog

What is new in 1.1.5?
We got:
Middleware with:
Logging (example: from boask.middleware.logging import logging_middleware
use(logging_middleware))
CORS (Enable with

```python
from boask.middleware.cors import cors
use(cors())
```

)
Rate Limiting (Enable with

```python
from boask.middleware.rate_limit import rate_limit
use(rate_limit(60, 60))
```

)

Auth (aka. Authetication enable with

```python
from boask.middleware.auth import auth_middleware
use(auth_middleware(token="YOUR-TOKEN-HERE-KEEP-IT-SECRET-AND-DO-NOT-REPEAT-PASSOWRDS"))
```

)
Basic auth (aka. Basic authetication, enable with

```python
use(basic_auth("admin", "1234"))
```

)
Also... :
Usage (per-route auth 🔐)

```python
from boask.middleware.auth import auth_middleware
from boask.core import protect

protect(
    "/admin",
    methods=["GET"],
    middleware=auth_middleware("YOUR-TOKEN-HERE-KEEP-IT-SECRET-AND-DO-NOT-REPEAT-PASSOWRDS")
)
```
