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
from instaui_tdesign import td
td.use(locale="en_US")
@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
from instaui_tdesign import td
td.use(locale="en_US")
@ui.page('/')
def home():
num1 = ui.state(0)
num2 = ui.state(0)
# When num1 or num2 changes, result will be automatically recalculated
@ui.computed
def result(num1 = num1, num2 = num2):
return num1 + num2
# When result changes, text_color will be automatically updated
@ui.computed
def text_color(result = result):
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
from instaui_tdesign import td
td.use(locale="en_US")
@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
from instaui_tdesign import td
td.use(locale="en_US")
@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
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 instaui-0.8.16.tar.gz.
File metadata
- Download URL: instaui-0.8.16.tar.gz
- Upload date:
- Size: 381.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39ef22bb55b82458cf4d5ab240897221f314ecd96ee5e211ea18610d171728f7
|
|
| MD5 |
120226abfce399e665fd94603c1389a7
|
|
| BLAKE2b-256 |
af7b3f643342c5d12637bf964001860cbf9d9782d4f37d01c74b34460c40058b
|
File details
Details for the file instaui-0.8.16-py3-none-any.whl.
File metadata
- Download URL: instaui-0.8.16-py3-none-any.whl
- Upload date:
- Size: 507.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52b8debcdc56e9ad431959bb5891f42af9bd5a579b1f3dc64c373629785034de
|
|
| MD5 |
c8a9a6c1c4df2a9aeb9feb838fb5e7e7
|
|
| BLAKE2b-256 |
4d3d4e01e1709fc0d0196af144836fc408b7dacbf298c01ebfeb8773147d6351
|