├── calculator.py ├── converter.py ├── graph.py ├── image_editor.py ├── music ├── Great Boss.ogg ├── music.py ├── pause.png └── play.png ├── notepad.py ├── oneline.py ├── opencv ├── haarcascade_frontalface_default.xml └── opencv_gui.py ├── snake.py ├── stopwatch ├── cross.png └── stopwatch.py ├── weather ├── symbols │ ├── cloud.png │ ├── fog.png │ ├── part sun.png │ ├── rain.png │ ├── snow.png │ ├── sun.png │ └── thunder.png └── weather.py └── youtube.py /calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/calculator.py -------------------------------------------------------------------------------- /converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/converter.py -------------------------------------------------------------------------------- /graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/graph.py -------------------------------------------------------------------------------- /image_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/image_editor.py -------------------------------------------------------------------------------- /music/Great Boss.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/music/Great Boss.ogg -------------------------------------------------------------------------------- /music/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/music/music.py -------------------------------------------------------------------------------- /music/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/music/pause.png -------------------------------------------------------------------------------- /music/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/music/play.png -------------------------------------------------------------------------------- /notepad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/notepad.py -------------------------------------------------------------------------------- /oneline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/oneline.py -------------------------------------------------------------------------------- /opencv/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/opencv/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /opencv/opencv_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/opencv/opencv_gui.py -------------------------------------------------------------------------------- /snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/snake.py -------------------------------------------------------------------------------- /stopwatch/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/stopwatch/cross.png -------------------------------------------------------------------------------- /stopwatch/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/stopwatch/stopwatch.py -------------------------------------------------------------------------------- /weather/symbols/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/weather/symbols/cloud.png -------------------------------------------------------------------------------- /weather/symbols/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/weather/symbols/fog.png -------------------------------------------------------------------------------- /weather/symbols/part sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/weather/symbols/part sun.png -------------------------------------------------------------------------------- /weather/symbols/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/weather/symbols/rain.png -------------------------------------------------------------------------------- /weather/symbols/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/weather/symbols/snow.png -------------------------------------------------------------------------------- /weather/symbols/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/weather/symbols/sun.png -------------------------------------------------------------------------------- /weather/symbols/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/weather/symbols/thunder.png -------------------------------------------------------------------------------- /weather/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/weather/weather.py -------------------------------------------------------------------------------- /youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PySimpleGuiUltimate/HEAD/youtube.py --------------------------------------------------------------------------------