6 lines
80 B
Python
6 lines
80 B
Python
import calendar
|
|
|
|
|
|
def unix_time(dt):
|
|
return calendar.timegm(dt.timetuple())
|