python date forom timestamp code example
Example 1: timestamp to date python
from datetime import datetime
timestamp = 1586507536367
dt_object = datetime.fromtimestamp(timestamp)
Example 2: python datetime from timestamp utc
dt_object = datetime.fromtimestamp(timestamp)