Skip to main content

insta-ui is a Python-based UI library for rapidly building user interfaces.

Project description

insta-ui

English| 简体中文

📖 Introduction

insta-ui is a Python-based UI library for quickly building user interfaces.

⚙️ Features

Three modes:

  • web mode: generates a stateless web application.
  • Web View mode: generates a web view application, which can be packaged as a local app (no need to start a web service).
  • Zero mode: generates a pure HTML file that can run directly in a browser without installing any dependencies.

📦 Installation

Zero mode:

pip install instaui -U
uv add instaui

web mode

pip install instaui[web] -U
uv add instaui[web]

Web View mode

pip install instaui[webview] -U
uv add instaui[webview]

🖥️ Quick Start

Install the TDesign UI library:

uv add instaui-tdesign[web]
# main.py
from instaui import ui
import instaui_tdesign as td

@ui.page('/')
def home():
    ui.text("Hello, world!")

ui.server(debug=True).run()

📚 Getting Started

Below is a simple example of summing two numbers. The text color of the result changes dynamically based on whether the result is even or odd.

from instaui import ui
import instaui_tdesign as td

@ui.page('/')
def home():
    num1 = ui.state(0)
    num2 = ui.state(0)

    # When num1 or num2 changes, result will be automatically recalculated
    @ui.computed(inputs=[num1, num2])
    def result(num1: int, num2: int):
        return num1 + num2

    # When result changes, text_color will be automatically updated
    @ui.computed(inputs=[result])
    def text_color(result: int):
        return "red" if result % 2 == 0 else "blue"

    # UI
    td.input_number(num1, theme="column")
    ui.text("+")
    td.input_number(num2, theme="column")
    ui.text("=")
    ui.text(result).style({"color": text_color})

# When deploying a web app, remove debug=True
ui.server(debug=True).run()

Replace ui.server().run() with ui.webview().run() to run in web view mode:

...

# ui.server(debug=True).run()
ui.webview().run()

Methods bound with ui.computed are executed on the server side. If you want to run calculations on the client side, use ui.js_computed.

from instaui import ui
import instaui_tdesign as td

@ui.page('/')
def home():
    num1 = ui.state(0)
    num2 = ui.state(0)

    result = ui.js_computed(inputs=[num1, num2], code="(num1, num2) => num1 + num2")
    text_color = ui.js_computed(inputs=[result], code="(result) => result % 2 === 0? 'red' : 'blue'")

    # UI
    ...

...

In this case, all interactions are executed in the browser (client side). With zero mode, you can generate a pure HTML file that works without installing any dependencies:

from instaui import ui, zero
import instaui_tdesign as td

@ui.page('/')
def home():
    ...

zero().to_html(home, file='index.html')

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

instaui-0.7.3.tar.gz (385.1 kB view details)

Uploaded Source

Built Distribution

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

instaui-0.7.3-py3-none-any.whl (462.5 kB view details)

Uploaded Python 3

File details

Details for the file instaui-0.7.3.tar.gz.

File metadata

  • Download URL: instaui-0.7.3.tar.gz
  • Upload date:
  • Size: 385.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.2

File hashes

Hashes for instaui-0.7.3.tar.gz
Algorithm Hash digest
SHA256 bbf8028bec1b0465af767e5796dcf36ddd0800cc2012e06a6357b772a065e575
MD5 71760785f2192bc97df2450e247934dc
BLAKE2b-256 7b87041ea0b88cfe8065750243ff22c841fa0149eff83a08aa3cf2e3f4d1bb9c

See more details on using hashes here.

File details

Details for the file instaui-0.7.3-py3-none-any.whl.

File metadata

  • Download URL: instaui-0.7.3-py3-none-any.whl
  • Upload date:
  • Size: 462.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.2

File hashes

Hashes for instaui-0.7.3-py3-none-any.whl
Algorithm Hash digest
SHA256 56e9355b579a0a3a116633b9031e0d7348db622a5d0b3dd0335e97d4377d1a9c
MD5 d6cc6831a79285943e8a9c0b1b2608e6
BLAKE2b-256 55098f7c800d1ca7fd82161335336c1478c4e25fa8892a2899941e36c78aff36

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