Silly question, but is there a built-in method for converting a date to a datetime in Python, ie. getting the datetime for the midnight of the date? The opposite conversion is easy - datetime has a .date() method. Do I really have to manually call datetime(d.year, d.month, d.day) ?

Edit: and the winner is:

datetime.combine(d, time())
link|improve this question

56% accept rate
feedback

4 Answers

up vote 68 down vote accepted

You can use datetime.combine(date, time); for the time you create a datetime.time object initialized to midnight.

link|improve this answer
3  
Thanks. Combined with the fact that time() returns (0,0) I think this comes out the cleanest: datetime.combine(d, time()) – EMP Dec 21 '09 at 0:38
4  
Just be careful not to let your code get datetime.time() confused with time.time(). Qualified names FTW! – Dustin Dec 21 '09 at 1:19
2  
Yes, good point. Fortunately, combine() raises an exception if you pass in a time.time or anything else other than a datetime.time. – EMP Dec 21 '09 at 8:36
3  
For midnight, there's a python constant at either datetime.time.min (2.7.1+) or datetime.min.time() (older python) – larham1 Jun 4 '11 at 23:05
supercool! it saved my from writing (sloppy) code :) – Tommaso Barbugli Jun 30 '11 at 21:32
feedback

yeah, you pretty much do. you can use the timetuple() method and varargs though:

datetime.datetime(*(d.timetuple()[:6]))
link|improve this answer
1  
-1 as being non obvious. – gahooa Dec 21 '09 at 0:36
Despite being clever, by the way. – gahooa Dec 21 '09 at 0:37
This is useful for my situation. I don't know if it's a date or a datetime I'm being passed, and it's not very pythonic to check which class it is. This method looks like it will work for both datetime and date objects. – Gattster Oct 14 '10 at 20:51
I used to use this before discovering datetime.combine via @kiamlaluno's answer. I think it's fairly pythonic, especially given constructing a datetime.time object is likely to look something like datetime.time(*map(int,"H:M:S".split(":"))) anyway... – Tom Jan 29 '11 at 1:45
feedback

There are several ways, although I do believe the one you mention (and dislike) is the most readable one.

>>> t=datetime.date.today()
>>> datetime.datetime.fromordinal(t.toordinal())
datetime.datetime(2009, 12, 20, 0, 0)
>>> datetime.datetime(t.year, t.month, t.day)
datetime.datetime(2009, 12, 20, 0, 0)
>>> datetime.datetime(*t.timetuple()[:-4])
datetime.datetime(2009, 12, 20, 0, 0)

and so forth -- but basically they all hinge on appropriately extracting info from the date object and ploughing it back into the suitable ctor or classfunction for datetime.

link|improve this answer
feedback

If you need something quick:

datetime_object.date()

Gives you a date of a datetime object.

link|improve this answer
1  
the op wants the opposite, to go from date to datetime. – Tom Jan 29 '11 at 1:46
1  
It is not the answer but looking for this answer I found this post. Thanks Bassdread :) – Natim Jul 7 '11 at 20:21
feedback

Your Answer

 
or
required, but never shown

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