0

Possible Duplicate:
Convert Date String to DateTime Object in Python

I have a date string:

Mon Oct 15 15:05:00 UTC 2012

How to converte this string to timestamp ?

Community
  • 1
  • 1
Bdfy
  • 21,109
  • 53
  • 126
  • 178

1 Answers1

0

This should help:

http://docs.python.org/library/time.html#time.strptime

Stephen Walker
  • 574
  • 3
  • 10