Minimal Starlette-powered app framework with pages, APIs, and a DX-first CLI.
Project description
Z8ter.py
Z8ter is a lightweight, Laravel-inspired full-stack Python web framework built on [Starlette], designed for rapid development with tight integration between backend logic and frontend templates—plus small client-side “islands” where they make sense.
✨ Features (Current)
1) File-Based Views (SSR)
- Files under
views/become routes automatically. - Each view pairs Python logic with a Jinja template in
templates/. - A stable
page_id(derived fromviews/path) is injected into templates and used by the frontend loader to hydrate per-page JS.
2) Jinja2 Templating
- Template inheritance with
{% extends %}/{% block %}. - Templates live in
templates/(default extension:.jinja).
3) Small CSR “Islands”
- A tiny client router lazy-loads
/static/js/pages/<page_id>.jsand runs its default export. - Great for interactive bits (theme toggles, pings, clipboard, etc.) without going full SPA.
4) Decorator-Driven APIs
- Classes under
api/subclassAPIand register endpoints with a decorator. - Each class mounts under
/api/<id>(derived from module path).
Example shape (conceptual):
api/hello.py → /api/hello views/about.py → /about templates/about.jinja + static/js/pages/about.js (island)
🚀 Getting Started
Prerequisites
- Python 3.11+ and
pip - Node 18+ and
npm
Install & Run (dev)
# 1) Python deps (in a venv)
python -m venv .venv
source .venv/bin/activate # Windows: .\.venv\Scripts\Activate.ps1
pip install -r requirements.txt # or: pip install -e .
# 2) Frontend deps
npm install
# 3) Dev server(s)
npm run dev
npm run devruns the dev workflow (backend + assets). Check the terminal for the local URL.
📁 Project Structure
.
├─ api/ # API classes (@API.endpoint)
│ └─ hello.py
├─ views/ # File-based pages (SSR)
│ └─ index.py
├─ templates/ # Jinja templates
│ ├─ base.jinja
│ └─ index.jinja
├─ static/
│ └─ js/
│ └─ pages/ # Per-page islands: about.js, app/home.js, ...
│ └─ common.js
├─ z8ter/ # Framework core (Page, API, router)
└─ main.py # App entrypoint
🧩 Usage Examples
View + Template (SSR)
{# templates/index.jinja #}
{% extends "base.jinja" %}
{% block content %}
<h1>{{ title }}</h1>
<div id="api-response"></div>
{% endblock %}
Client Island (runs when page_id matches)
// static/js/pages/common.ts (or a specific page module)
export default async function init() {
// hydrate interactive bits, fetch data, etc.
}
Minimal API Class
# api/hello.py
from z8ter.api import API
class Hello(API):
@API.endpoint("GET", "/hello")
async def hello(self, request):
return {"ok": True, "message": "Hello from Z8ter"}
🛣️ Planned
- CLI scaffolding:
z8 new,z8 dev,z8 create_page <name> - Auth scaffolding: login/register/logout + session helpers
- Stripe integration: pricing page, checkout routes, webhooks
- DB adapters: SQLite default, Postgres option
- HTMX + Tailwind/DaisyUI polish out of the box
🧠 Philosophy
- Conventions over configuration
- SSR-first with tiny CSR islands
- Small surface area; sharp, pragmatic tools
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
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
File details
Details for the file z8ter-0.1.1.tar.gz.
File metadata
- Download URL: z8ter-0.1.1.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b94422aaafa26565633ebd48a487619980483918de07083fe2fa6978971e5ddd
|
|
| MD5 |
b99a521a3c6945283832e53cf4eb6892
|
|
| BLAKE2b-256 |
05345893faaaf319c657f5adc904438812fc991344bc202e1247b3c5d883c40a
|
File details
Details for the file z8ter-0.1.1-py3-none-any.whl.
File metadata
- Download URL: z8ter-0.1.1-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30c6d927c5d2b8a4a651792c9a9c035214ca648cbd26ef4cce320497bbf963f0
|
|
| MD5 |
13ea9e42760f1b9711c0168ae475eacf
|
|
| BLAKE2b-256 |
a6c61925af11487a815ac83302c0c4c4f866b472555105710c9fb365f7df2f1e
|