Merge branch 'master' of https://github.com/fnp/wolnelektury
[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