https://github.com/mayasmess/gui-scripter
⚡️ Simple GUI for Python Scripts
https://github.com/mayasmess/gui-scripter
Last synced: 12 months ago
JSON representation
⚡️ Simple GUI for Python Scripts
- Host: GitHub
- URL: https://github.com/mayasmess/gui-scripter
- Owner: MayasMess
- License: mit
- Created: 2021-05-09T21:11:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-17T14:13:31.000Z (about 2 years ago)
- Last Synced: 2024-03-17T15:28:07.259Z (about 2 years ago)
- Language: Python
- Homepage:
- Size: 649 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Simple GUI for scripts 🤖 !
-

Installation:
-
```shell script
pip install gui-scripter
```
Example:
-
```python
from gui_scripter import Gui, entry, drop_box
```
```python
class MyFirstApplication(Gui):
inputs = [
entry('name'),
entry('age'),
]
title = 'My First Application'
def script(self):
for x in range(1, 51):
self.set_progress_bar(x*2)
print(f"Yo, my name is {self.get('name')} and I'm {self.get('age')} years old")
```