Skip to content

Instantly share code, notes, and snippets.

View serge-eric-kalaga's full-sized avatar
🎯
Focusing

KALAGA Serge Eric serge-eric-kalaga

🎯
Focusing
View GitHub Profile
from datetime import datetime, timedelta
def seconds_until_midnight():
now = datetime.now()
# Calculer l'heure de minuit (00:00:00 du lendemain)
midnight = (now + timedelta(days=1)).replace(
hour=0, minute=0, second=0, microsecond=0
)
# Calculer le temps restant en secondes