PawUI
轻量、直接运行的 Python 声明式 UI 层。HTML 风格,Qt/PySide6 渲染(原生抗锯齿、QSS 圆角/悬停/聚焦、IME 组字正常),无构建。
安装
pip install pawui # 依赖 PySide6>=6.5,自动安装
python -m pip install --upgrade pawui
运行
pawui app.paw
也可以传统方式启动:
import pawui
pawui.run("app.paw")
语法(HTML 风格)
<Window title="你好" width="460" height="840" theme="dark">
<Column padding="24" spacing="12">
<Text size="24" bold>欢迎使用 PawUI 👋</Text>
<Text size="13" color="subtext">副标题</Text>
<Text>{$greeting}</Text>
<Row spacing="8">
<Button on_click="increment">点我 +1</Button>
<Button on_click="reset">清空</Button>
</Row>
<Input placeholder="输入你的名字..." on_change="on_name"/>
<Text>你好,{$name}</Text>
<Card label="点击量" value="{$count}"/>
</Column>
</Window>
<!-- 自定义组件 -->
<Component name="Card">
<Column padding="12" bg="surface">
<Text color="subtext">{$label}</Text>
<Text size="22" bold>{$value}</Text>
</Column>
</Component>
<script>
def increment():
state.count = int(state.get("count", 0)) + 1
</script>
要点
- 状态绑定:
{$count}/{count}/$count,在<script>里改state.count = ...界面自动刷新。 - 事件:字符串引用
<script>/main.py里的函数:on_click="函数名"。 - 组件:
<Component name="X">...</Component>定义,直接<X .../>使用。 - 主题:
theme="dark" | "light",颜色可直接引用:color="subtext"、bg="surface"。 - 布局:
Column纵排、Row横排,spacing/padding调节。
内置组件
Window Column Row Text Button Input Checkbox(开关) Divider Spacer If(条件渲染) For(列表循环)
<For each="item" in="{$items}">
<If condition="{$item.done}">
<Text>{$item.name}</Text>
</If>
</For>
CLI
pawui run app.paw # 运行(或直接 pawui app.paw)
pawui check app.paw # 仅语法检查
pawui schema # 输出组件 JSON Schema
pawui render app.paw # 离屏渲染自检
pawui help # 列出内置文档主题
pawui help theming # 查看某篇文档
pawui --version
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pawui-0.1.0.1.tar.gz
(38.8 kB
view details)
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
pawui-0.1.0.1-py3-none-any.whl
(37.3 kB
view details)
File details
Details for the file pawui-0.1.0.1.tar.gz.
File metadata
- Download URL: pawui-0.1.0.1.tar.gz
- Upload date:
- Size: 38.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dedd33085907e1ca52f692be98d02476798396c56bc07d3ee1f7d2289af86ba1
|
|
| MD5 |
b01e4c127cddf99da425dbef8c392c63
|
|
| BLAKE2b-256 |
981c81cbaca0a57079d83705348d24ab58f9237a88b75ddce9d7e8173874ccb3
|
File details
Details for the file pawui-0.1.0.1-py3-none-any.whl.
File metadata
- Download URL: pawui-0.1.0.1-py3-none-any.whl
- Upload date:
- Size: 37.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
233fc04efc007306aede2d766f4bbaa5590612c60812a2fcc916991ab70d69f9
|
|
| MD5 |
38cb359619d001de92ecdc297c44c6d2
|
|
| BLAKE2b-256 |
53a189560c8d3635ca1880fda76f629581b2938d81a321f01e095375adc9c309
|