Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ayush2917/Birthday
ayush2917
/
BirthdayM
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4a19de9
BirthdayM
/
backend
/
countdown.py
ayush2917
Create countdown.py
ec752d3
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
Wrap lines
207 Bytes
from
datetime
import
datetime
def
get_countdown
():
birthday = datetime(
2025
,
4
,
19
)
today = datetime.now()
days_left = (birthday - today).days
return
max
(
0
, days_left)
# Ensure non-negative