Since your program has a GUI then it's great to show it in your Readme. Don't worry about how you think it looks. Others will like it. Making ANY kind of GUI is a non-trivial task in Python, as you've likely found... until you found PySimpleGUI :-)
I like what you've written!!
I made this change at the top of the program. It's 1 import and one call into PySimpleGUI.
import PySimpleGUI as sg
from datetime import datetime, timedelta
from random import choice
sg.ChangeLookAndFeel(choice(sg.list_of_look_and_feel_values()))
This will set the color of the window to a random choice from the list of options.
Since your program has a GUI then it's great to show it in your Readme. Don't worry about how you think it looks. Others will like it. Making ANY kind of GUI is a non-trivial task in Python, as you've likely found... until you found PySimpleGUI :-)
I like what you've written!!
I made this change at the top of the program. It's 1 import and one call into PySimpleGUI.
This will set the color of the window to a random choice from the list of options.