A simple Python Tkinter app to always know who is what time zone
You work with people across the world and YOU always forget what time zone they are
Just have a short list that shows their time zone and time difference versus yours.
The MyTimeZones.exe
needs a none-timezones.json
file next to it.
The first part of the name will provide the app theme.
'none-Timezones.json' will five you the default themes.
For some sampels go to Themes.
This file contains the information needed for the app to run:
{
"local": {
"description": "MyZone",
"zone": "Europe/Lisbon"
},
"others": [
{
"description": "CU Office",
"zone": "Asia/Tel_Aviv"
},
{
"description": "House",
"zone": "Europe/Lisbon"
},
{
"description": "yolo",
"zone": "America/Aruba"
},
{
"description": "yo",
"zone": "Asia/Calcutta"
}
]
}```