Pure Python website engine. Zero dependencies. Real JSX templates.
Project description
Boask
Pure Python website engine.
Zero external dependencies.
pip install boask
Quick Start
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
- Lightweight.
- No external dependecies.
- 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!
- No "{{ url_for('static', filename='css/main.css') }}" (example), we use /static/css/main.css for example!
Info
- 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
Right now
New! "app" yeah, like Flask
To use
from boask import Boask
app = Boask()
And to do it with route (yeah, i added app.route()) this example is for HTML templates
from boask import Boask, route, use, run_server, html_templates
app = Boask()
def home(handler):
return html_templates.render("home.html")
Note: Replace home.html with your file name (e.g index.html)
New in authentication! Banning!
Usage:
from auth.ban import Ban
# 'handler' is your HTTP request handler instance (e.g., from BaseHTTPRequestHandler)
response = Ban.ban_user(handler)
Arlight. This is the last version before 1.1.6, 1.1.6a5 Just some things to add, and ready to go!
Secret Message
shhhhh the tsx templates are a lie they are jsx templates but who cares bruh.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
boask-1.1.6a5.tar.gz
(9.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
boask-1.1.6a5-py3-none-any.whl
(11.7 kB
view details)
File details
Details for the file boask-1.1.6a5.tar.gz.
File metadata
- Download URL: boask-1.1.6a5.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
402008fc09b81d4a0ac22397ece422629694c00bac7d6240de01970e15b9a995
|
|
| MD5 |
0751eaff622f3b57e813dede54bcb108
|
|
| BLAKE2b-256 |
737779ab179702a2e19667b1888045803ef9e3d166c6c79954714e865058873b
|
File details
Details for the file boask-1.1.6a5-py3-none-any.whl.
File metadata
- Download URL: boask-1.1.6a5-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a16ebfe6903c2ec9abb68257bf2b24cff44e042cc8bf834da958e99ef6f3844d
|
|
| MD5 |
2daca56d0ce21ba4122ebb941f8dbf1f
|
|
| BLAKE2b-256 |
7c1fd024be2057e5b97bc130615d097f2fad021b2847824aa002c5b43dccfd93
|