Planifiez la tâche à Midnight Python
import schedule
def foo():
print("Fooing around")
schedule.every().day.at("00:00").do(foo)
Tomer Mantzuri
import schedule
def foo():
print("Fooing around")
schedule.every().day.at("00:00").do(foo)