I'm using Python 3 & Anaconda, running on AWS
I have a function, let's call it my_task
, which I want to run every day at 11am
and 11pm
.
def my_task():
print("Hey, task is running!");
How can I do this?
I've tried this and this but neither of them is for Anaconda.