Metadata-Version: 2.1
Name: app-page
Version: 0.0.15
Summary: PySide6 page application framework
Home-page: https://github.com/xiaohuicat/python-app-page
Author: xiaohuicat
Author-email: 1258702350@qq.com
License: MIT
Description-Content-Type: text/markdown
Requires-Dist: app-page-core>=0.0.2
Requires-Dist: nanoid
Requires-Dist: PySide6
Requires-Dist: pywin32
Requires-Dist: numpy
Requires-Dist: openpyxl
Requires-Dist: paho-mqtt==1.6.1
Requires-Dist: pillow

# PySide6 app framework

# Installation
```shell
pip install app-page
```
# 模块说明
core        程序核心模块
animation   动画模块
plugins     插件模块

# Usage
使用案例
```python
from app_page import Page, createApp

# 根页面，运行createApp函数初始化完成后进行根页面的初始化。
class Root(Page):
    def setup(self):
        super().setup()
        # 显示主窗口
        self.store.get('main_win').show()

createApp({
    "Root": Root,
})
```
