python datetime %Y %d code example
Example 1: datetime python
from datetime import datetime as d
date = d.now()
print(date.strftime("%Y-%m-%d %H:%M:%S"))
Example 2: python datetime from timestamp utc
dt_object = datetime.fromtimestamp(timestamp)