I am trying to set the specific time and display as second like time.time() does. Let's say I want to display exact time 2019/1/1 12:00 AM.
The code would be
datetime.datetime(2019, 1, 1, 0, 0).timestamp()
But, if I wanted to make sure it is in specific time zone (like AST, EST). How can I do that?