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...
12e79cf
BirthdayM
/
countdown.py
ayush2917
Create countdown.py
d652fc4
verified
23 days ago
raw
Copy download link
history
blame
Safe
Wrap lines
184 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)