8 lines
171 B
Python
8 lines
171 B
Python
#!/usr/bin/env python3
|
|
|
|
from datetime import datetime
|
|
|
|
|
|
def timestamp_to_date(timestamp: int) -> str:
|
|
return datetime.utcfromtimestamp(timestamp).strftime("%Y-%m-%d")
|