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
  • 23,141
  • 55
  • 131
  • 179

1 Answers1

0

This should help:

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

Stephen Walker
  • 574
  • 3
  • 10