Skip to content

Instantly share code, notes, and snippets.

@shiumachi
Created January 8, 2014 16:48
Show Gist options
  • Save shiumachi/8319962 to your computer and use it in GitHub Desktop.
Save shiumachi/8319962 to your computer and use it in GitHub Desktop.
datetime型をunixタイムスタンプに変換する
def convert_to_timestamp(dt):
""" input: DateTime object
output: unix timestamp
reference: http://stackoverflow.com/questions/2775864/python-datetime-to-unix-timestamp
"""
import calendar, datetime
return calendar.timegm(dt.utctimetuple())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment