Python datetime / time conversions « SaltyCrane Blog
# timestamp to datetime object in local time timestamp = 1226527167.595983 dt_obj = datetime.fromtimestamp(timestamp) print repr(dt_obj)