Skip to main content

Project to build easy user interfaces, agnostic for http frameworks

Project description

routelit

Release Build status codecov Commit activity License

Routelit

routelit is a Python framework for building interactive web user interfaces that are framework-agnostic and easy to use. It allows you to create dynamic web applications with a simple, declarative API similar to Streamlit, but designed to work with any HTTP framework (Flask, FastAPI, Django, etc.).

✨ Features

  • Framework Agnostic: Works with any Python web framework (Flask, FastAPI, Django, etc.)
  • Declarative UI: Build interfaces using simple Python functions
  • Interactive Components: Buttons, forms, inputs, selects, checkboxes, and more
  • State Management: Built-in session state management
  • Reactive Updates: Automatic UI updates based on user interactions
  • Fragment Support: Partial page updates for better performance
  • Flexible Layouts: Containers, columns, flex layouts, and expandable sections
  • Rich Content: Support for markdown, images, and custom styling

🚀 Installation

Install routelit using pip:

pip install routelit

📖 Quick Start

Here's a simple example of how to use routelit:

from routelit import RouteLit, RouteLitBuilder

# Create a RouteLit instance
rl = RouteLit()

def my_app(builder: RouteLitBuilder):
    builder.title("Welcome to RouteLit!")

    name = builder.text_input("Enter your name:", value="World")

    if builder.button("Say Hello"):
        builder.text(f"Hello, {name}!")

    builder.markdown("This is a **markdown** text with *emphasis*.")

# Use with your preferred web framework
# Example with Flask:
from flask import Flask, request

app = Flask(__name__)

flask_adapter = ... # TODO: publish package for this

@app.route("/", methods=["GET", "POST"])
def index():

    # Return HTML response
    return flask_adapter.response(my_app)

🏗️ Core Concepts

Builder Pattern

RouteLit uses a builder pattern where you define your UI using a RouteLitBuilder instance:

def my_view(builder: RouteLitBuilder):
    builder.header("My Application")

    with builder.container():
        builder.text("This is inside a container")

        col1, col2 = builder.columns(2)
        with col1:
            builder.text("Left column")
        with col2:
            builder.text("Right column")

State Management

RouteLit automatically manages state between requests:

def counter_app(builder: RouteLitBuilder):
    # Get current count from session state
    count = builder.session_state.get("count", 0)

    builder.text(f"Count: {count}")

    if builder.button("Increment"):
        builder.session_state["count"] = count + 1
        builder.rerun()  # Trigger a re-render

Interactive Components

Build rich forms and interactive elements:

def form_example(builder: RouteLitBuilder):
    with builder.form("my_form"):
        name = builder.text_input("Name")
        age = builder.text_input("Age", type="number")

        options = ["Option 1", "Option 2", "Option 3"]
        choice = builder.select("Choose an option", options)

        newsletter = builder.checkbox("Subscribe to newsletter")

        if builder.button("Submit", event_name="submit"):
            builder.text(f"Hello {name}, you are {age} years old!")
            if newsletter:
                builder.text("Thanks for subscribing!")

🔧 Framework Integration

RouteLit is designed to work with any Python web framework. TODO: Add framework integration examples.

📚 Documentation

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments

RouteLit is inspired by Streamlit but designed to be framework-agnostic and more flexible for web development use cases.


Repository initiated with fpgmaas/cookiecutter-uv.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

routelit-0.3.1.tar.gz (12.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

routelit-0.3.1-py3-none-any.whl (186.4 kB view details)

Uploaded Python 3

File details

Details for the file routelit-0.3.1.tar.gz.

File metadata

  • Download URL: routelit-0.3.1.tar.gz
  • Upload date:
  • Size: 12.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.2

File hashes

Hashes for routelit-0.3.1.tar.gz
Algorithm Hash digest
SHA256 6b71a0c8dcf95ec52135ed480203f6af771961aef1987eaaad17e328dcddbcb8
MD5 abf7bd3a6c5e1fd7290b4536f7d8ca85
BLAKE2b-256 e780ebbffb3078118e717f9484fb69286c3fc2c75c431691a57d0558493547e9

See more details on using hashes here.

File details

Details for the file routelit-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: routelit-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 186.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.2

File hashes

Hashes for routelit-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 35f13b00d403d2354f6b8c4ca996af38a003b8094fb69ef491c123fefea94d9a
MD5 20f66a5bd5d6ce12ebe46bdcd0b73e0f
BLAKE2b-256 208ed3d07a2cf2eb1b408a8b99bbd603db3afa08fb3aad74bb113b3b93207952

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page