How do I turn a unix date (like seconds since sometime in the past I think) to something human readable?
the date string is like 1088527745
and i /have/ read man date
>python Python 2.3.3 (#2, Feb 17 2004, 11:45:40) [GCC 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import time >>> time.ctime(1088527745) 'Wed Jun 30 04:49:05 2004' >>>
Cheers, Carl
