I\'m creating a bot that posts every 60 minutes covid numbers, I have it finished but idk how to make it repeat. Any idea? It\'s a little project that I have in mind and it\'s t
You can simply add this statement at the end of the code
sleep(3600)
If you want it to run endlessly, you can do it like this:
while True: insert your main code here sleep(3600)