Skip to content

Instantly share code, notes, and snippets.

@yccheok
Created August 29, 2018 10:31
Show Gist options
  • Select an option

  • Save yccheok/673b14af3d8bde75d656a2e2d17dc164 to your computer and use it in GitHub Desktop.

Select an option

Save yccheok/673b14af3d8bde75d656a2e2d17dc164 to your computer and use it in GitHub Desktop.
>>> d = datetime.datetime.utcfromtimestamp(1535500800)
>>> time.mktime(d.timetuple())
1535500800.0
>>> kl_tz = timezone('Asia/Kuala_Lumpur')
>>> dd = d.astimezone(kl_tz)
>>> time.mktime(dd.timetuple())
1535529600.0
>>> dd.hour
8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment