https://github.com/stestagg/guizero
https://github.com/stestagg/guizero
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/stestagg/guizero
- Owner: stestagg
- Created: 2016-09-16T15:18:59.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-16T15:45:14.000Z (almost 10 years ago)
- Last Synced: 2025-03-25T05:54:33.154Z (over 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes from the discussions
1. GUIs are just too complex to switch to easily
a. going from raw_input() to event loop is a big perspective shift
b. State management in guis is hard
c. Just too complex (layout etc)
2. About gui designers
a. Seems like a good idea
b. Hard to do
c. Very hard to do well
d. Possibly not needed to make guis in python possible
e. A stage-2 thing
3. Underlying GUI libraries:
a. Kivy - good all-rounder, cross-platform, needs installation
b. Tkinter - always available, but harder to manage under-the-hood
c. Web - familiar tech, cross-platform, harder to do layouts and events
---
Take a simple color problem: http://codereview.stackexchange.com/questions/120535/python-colour-game
What would the python code for this look like? [see files in repo]