cover images; sorl>=10; hook sponsors off sorl
[wolnelektury.git] / apps / api / helpers.py
1 # -*- coding: utf-8 -*-
2
3 from time import mktime
4
5 def timestamp(dtime):
6     "converts a datetime.datetime object to a timestamp int"
7     return int(mktime(dtime.timetuple()))
8