Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donno2048/py-gui
This started as a demo for pygame but turned out to be really nice
https://github.com/donno2048/py-gui
demo pygame pygame-gui
Last synced: 9 days ago
JSON representation
This started as a demo for pygame but turned out to be really nice
- Host: GitHub
- URL: https://github.com/donno2048/py-gui
- Owner: donno2048
- License: mit
- Created: 2021-02-18T12:03:02.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-15T16:07:24.000Z (10 months ago)
- Last Synced: 2024-10-12T07:06:24.213Z (about 1 month ago)
- Topics: demo, pygame, pygame-gui
- Language: Python
- Homepage: https://pypi.org/project/PY-GUI/
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PY-GUI
Create a pygame session for specific functions
## install
From PyPI:
`pip3 install PY_GUI`
From GitHub:
`pip3 install git+https://github.com/donno2048/PY-GUI`
## Usage
You can use the demo one by running:
```bat
python3 -m PY_GUI
```Or just `PY-GUI` in the cmd
Or you can run a custom one from within Python, for example:
```py
from PY_GUI import Main
def parse(text: str) -> str:
return text
Main(parse, name = "Cat program")
```