Metadata-Version: 2.1
Name: zzgui
Version: 0.1.2a0
Summary: Python GUI toolkit
License: Apache 2.0
Author: Andrei Puchko
Author-email: andrei.puchko@gmx.de
Requires-Python: >=3.6.2,<4
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: PyQt5 (>=5.15.6,<6.0.0)
Requires-Dist: QScintilla (>=2.13.1,<3.0.0)
Requires-Dist: zzdb (>=0.1.4,<0.2.0)
Description-Content-Type: text/markdown

# The light Python GUI builder (currently based on PyQt5)

# How start with pypi packege:
```bash
poetry new project_01 && cd project_01 && poetry shell
poetry add zzgui
```
# How to run:
```bash
git clone https://github.com/AndreiPuchko/zzgui.git
cd zzgui
pip3 install poetry
poetry shell
poetry install
python3 demo/demo.py
python3 demo/demo_01.py
python3 demo/demo_02.py
python3 demo/demo_03.py
python3 demo/demo_04.py
```

# demo/demo_03.py screenshot
![Alt text](https://andreipuchko.github.io/zzgui/screenshot.png)
# Build standalone executable 
(The resulting executable file will appear in the folder  dist/)
## One file
```bash
pyinstaller -F demo/demo.py
```

## One directory
```bash
pyinstaller -D demo/demo.py
```

