The Data getter is best setup to run on a schedule using cron tab
$> crontab -eadd the lines below; the collection tool will run every 15 minutes and then a daily collection tool once a day at 4am
*/15 * * * * python3 /home/pi/dashdisplay/eClockDataGetter.py
0 4 * * 1 python3 /home/pi/dashdisplay/eDailyDataGetter.pyThe Display can be setup to run automatically
sudo cp edisplay.service /lib/systemd/system/
sudo chmod 644 /lib/systemd/system/edisplay.service
chmod +x /home/pi/dashdisplay/eDisplay.py
sudo systemctl daemon-reload
sudo systemctl enable edisplay.service
sudo systemctl start edisplay.service