├── .gitignore ├── GUIcoder ├── __init__.py ├── app.py ├── board.py ├── manager.py ├── myTkinter.py ├── palette.py ├── selector.py ├── settings.py └── writer.py ├── LICENSE.txt ├── README.md ├── README.txt ├── requirements.txt ├── setup.cfg.txt ├── setup.py └── simple_demonstration.mov /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/.gitignore -------------------------------------------------------------------------------- /GUIcoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/__init__.py -------------------------------------------------------------------------------- /GUIcoder/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/app.py -------------------------------------------------------------------------------- /GUIcoder/board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/board.py -------------------------------------------------------------------------------- /GUIcoder/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/manager.py -------------------------------------------------------------------------------- /GUIcoder/myTkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/myTkinter.py -------------------------------------------------------------------------------- /GUIcoder/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/palette.py -------------------------------------------------------------------------------- /GUIcoder/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/selector.py -------------------------------------------------------------------------------- /GUIcoder/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/settings.py -------------------------------------------------------------------------------- /GUIcoder/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/GUIcoder/writer.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/README.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyperclip>=1.7.0 2 | Pillow>=6.2.1 -------------------------------------------------------------------------------- /setup.cfg.txt: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/setup.py -------------------------------------------------------------------------------- /simple_demonstration.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-dotpy/GUIcoder/HEAD/simple_demonstration.mov --------------------------------------------------------------------------------