LazyFast = FastAPI + HTMX + Component-based approach + State management
Project description
LazyFast
LazyFast is a lightweight Python library designed for building modern web interfaces using a component-based approach. It enables writing page logic on the server side in Python, integrating seamlessly with FastAPI. With LazyFast, interactive elements like inputs, buttons, and selects trigger component reloads that occur on the server, updating the component's state dynamically.
What problems does LazyFast solve?
If you're a Python developer familiar with the basics of HTML, CSS, and JavaScript, but don’t want to dive into modern JavaScript frameworks, LazyFast lets you build web applications that meet modern standards—without needing to learn complex frontend frameworks.
When is LazyFast a good fit?
- Low to Medium Traffic Projects: LazyFast is ideal for projects with low to moderate traffic. Server-side rendering offloads work from the client’s machine, which can improve performance for users. However, for projects with high traffic volumes, server costs may increase due to the heavier backend load.
- Prototyping: LazyFast was created to address the challenges I faced in my own work. Building prototypes and demos often needs to be fast and efficient, but involving frontend developers can slow things down and increase costs. I’ve worked extensively with Streamlit, but while it's quick, it has significant limitations and tends to produce applications that all look the same.
Key Features
- Component-Based Server Rendering: Build web interfaces using lazy loaded components that encapsulate logic, state, and presentation.
- Server-Side Logic: Handle interactions and state management on the server, reducing client-side complexity.
- FastAPI Integration: Each component or page is a FastAPI endpoint, allowing for dependency injection and other FastAPI features.
- Lightweight: The only dependencies are FastAPI for Python and HTMX for JavaScript, which can be included via CDN.
- State Management: Utilize a state manager that can trigger component reloads, ensuring a reactive user experience.
Installation
To install LazyFast, use pip:
pip install lazyfast
or
poetry add lazyfast
Quick Start
Here's an example application to demonstrate how LazyFast works:
from fastapi import FastAPI, Request
from lazyfast import LazyFastRouter, Component, tags
# LazyFastRouter inherits from FastAPI's APIRouter
router = LazyFastRouter()
# Define a lazy-loaded HTML component powered by HTMX
@router.component()
class MyComponent(Component):
title: str
async def view(self, request: Request) -> None:
tags.h1(self.title, class_="my-class")
with tags.div(style="border: 1px solid black"):
tags.span(request.headers)
# Initialize the page dependencies for component rendering
# The page endpoint is also a FastAPI endpoint
@router.page("/{name}")
def root(name: str):
with tags.div(class_="container mt-6"):
MyComponent(title=f"Hello, World from {name}")
# Embed the router in a FastAPI app
app = FastAPI()
app.include_router(router)
If you use uvicorn
instead as a server and want to reload on changes, use the following command:
uvicorn app:app --reload --timeout-graceful-shutdown 1
Documentation
Documentation can be found here.
Examples
You can find examples in examples.
License
LazyFast is licensed under the MIT License.
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
File details
Details for the file lazyfast-0.1.28.tar.gz
.
File metadata
- Download URL: lazyfast-0.1.28.tar.gz
- Upload date:
- Size: 18.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 078bfb68f199033bcb8f4e857cd2816b46b23bc2993f748693c4c6a9fb064c73 |
|
MD5 | 469eab05cba4a0964f1c2d2ea600c712 |
|
BLAKE2b-256 | 43985271be46e373a092c794bde7681782aaa659d4ae28ae2e6f25a17bb6957c |
File details
Details for the file lazyfast-0.1.28-py3-none-any.whl
.
File metadata
- Download URL: lazyfast-0.1.28-py3-none-any.whl
- Upload date:
- Size: 19.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68b0301c4d4cd3e3b0c5cebe7215da3a0819e5376e8fee3a11bb83de81081bac |
|
MD5 | 24fec0e1492bbc2e0c5f22d27c47752a |
|
BLAKE2b-256 | 22109f98ea4a64f9611a7a25bd8070cfeebdd8471405102fd86d3d0eed11715d |