Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wangtai/68945df51656edc13587 to your computer and use it in GitHub Desktop.
Save wangtai/68945df51656edc13587 to your computer and use it in GitHub Desktop.
def datetime_to_seconds(time_in):
epoch = datetime.datetime(1970, 1, 1, tzinfo=pytz.utc)
delta = time_in - epoch
return delta.total_seconds()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment