I'm totally new to Python.
I just wrote this simple script that prints a message on my desktop:
from plyer import notification
notification.notify(
title="HI MATTEO!",
message="Here's the notification to be sent every hour!",
timeout=10
)
Here's the screenshot of the notification
I'd like to know if there's a way to run this notification every hour (or at a given time)
Thanks so much
Matteo Fossati