Short and simple. I've got a huge list of date-times like this as strings:

Jun 1 2005  1:33PM
Aug 28 1999 12:00AM

I'm going to be shoving these back into proper datetime fields in a database so I need to magic them into real datetime objects.

Any help (even if it's just a kick in the right direction) would be appreciated.

Edit: This is going through Django's ORM so I can't use SQL to do the conversion on insert.

link|improve this question

70% accept rate
1  
Added tag for Django, since that appears to be a constraint. :-) – Ben Blank Jan 21 '09 at 18:10
feedback

5 Answers

up vote 47 down vote accepted

Check out strptime in the time module. It is the inverse of strftime.

link|improve this answer
15  
For the provided examples, the format string would be time.strptime(stamp, '%b %d %Y %I:%M%p'). – Ben Blank Jan 21 '09 at 18:15
I'm not sure why this got buried but it's the one that works. – Oli Jan 21 '09 at 18:19
From what I understand, this answer only outputs time objects, not datetime objects -- which is why the answer would be buried compared to Patrick's answer. – Seth Alexander Bird Sep 7 '10 at 13:08
the answer below (by Patrick Harrington) is more correct, because time.strptime only outputs time, not datetime – Anatoly G Jun 19 '11 at 19:56
feedback
from datetime import datetime

date_object = datetime.strptime('Jun 1 2005  1:33PM', '%b %d %Y %I:%M%p')

Link to the Python documentation for strptime

and a link for the strftime format mask

link|improve this answer
4  
The datetime module itself doesn't have the strptime function, but the datetime-class within the datetime module does :-) from datetime import datetime date_object = datetime.strptime(...) – Horst Gutmann Jan 21 '09 at 18:22
+1: this is more compatible with Django. – S.Lott Jan 21 '09 at 18:59
3  
+1: this is more complete than the currently-accepted answer (which references strptime but doesn't show how to use it) – Carl Meyer Jan 21 '09 at 19:25
1  
This answer saved me at the 11th hour – Sevenearths Oct 27 '11 at 12:49
+1 for the link for the strftime format mask :-P – semente Apr 13 at 19:09
show 1 more comment
feedback

Use the third party dateutil library:

from dateutil import parser
dt = parser.parse("Aug 28 1999 12:00AM")

It can handle most date formats, including the one you need to parse. It's more convenient than strptime as it can guess the correct format most of the time.

link|improve this answer
Doh, I didn't see this answer before posting a duplicate. Upvoting... – drozzy May 13 '09 at 19:36
1  
Be aware that for large data amounts this might not be the most optimal way to approach the problem. Guessing the format every single time may be horribly slow. – Reef Jul 3 '11 at 0:08
This is nice but it would be nice to have a solution that is built-in rather than having to go to a third party. – brian buck Oct 12 '11 at 20:33
feedback

run this in query analyser/SSMS

select convert(datetime,'Aug 28 1999 12:00AM')
select convert(datetime,'Jun 1 2005  1:33PM')
link|improve this answer
In the what? This is actually all going through Django's ORM so I don't have (or really want) direct query access. Surely there's a pure-python method... – Oli Jan 21 '09 at 18:05
>>In the what? This is actually all going through Django's ORM Next time say so, you mentioned SQL and nothing else – SQLMenace Jan 21 '09 at 18:16
feedback

Something that isn't mentioned here and is useful: adding a suffix to the day. I decoupled the suffix logic so you can use it for any number you like, not just dates.

import time

def num_suffix(n):
    '''
    Returns the suffix for any given int
    '''
    suf = ('th','st', 'nd', 'rd')
    n = abs(n) # wise guy
    tens = int(str(n)[-2:])
    units = n % 10
    if tens > 10 and tens < 20:
        return suf[0] # teens with 'th'
    elif units <= 3:
        return suf[units]
    else:
        return suf[0] # 'th'

def day_suffix(t):
    '''
    Returns the suffix of the given struct_time day
    '''
    return num_suffix(t.tm_mday)

# Examples
print num_suffix(123)
print num_suffix(3431)
print num_suffix(1234)
print ''
print day_suffix(time.strptime("1 Dec 00", "%d %b %y"))
print day_suffix(time.strptime("2 Nov 01", "%d %b %y"))
print day_suffix(time.strptime("3 Oct 02", "%d %b %y"))
print day_suffix(time.strptime("4 Sep 03", "%d %b %y"))
print day_suffix(time.strptime("13 Nov 90", "%d %b %y"))
print day_suffix(time.strptime("14 Oct 10", "%d %b %y"))​​​​​​​
link|improve this answer
feedback

protected by casperOne Apr 26 at 12:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.