Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a method like datetime.datetime.strptime(), that accepts a string like '16:00' and returns a datetime.time(16,0) object (i.e., an object that holds only time, not date)?

Edit: I could use datetime.datetime.strptime(), but it would return a datetime.datetime, and I want only time, not a date.

share|improve this question

2 Answers

up vote 3 down vote accepted
import datetime
import time
def datetimestrptime(time_string,time_fmt):
     t = time.strptime(time_string,time_fmt)
     return datetime.time(hour=t.tm_hour,minute=t.tm_min,second=t.tm_sec)
print datetimestrptime("16:00","%H:%M")
16:00:00
share|improve this answer
import time
time.strptime("16:00", "%H:%M")
share|improve this answer
Simple yet effective! – Abhinav Sarkar Sep 23 '12 at 18:24
it creates a time.struct_time(tm_year=1900, tm_mon=1, tm_mday=1, tm_hour=16, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=1, tm_isdst=-1), not a datetime.time. – Yariv Sep 23 '12 at 18:26
you can then use datetime.datetime.fromtimestamp(time.strptime(...)) – Joran Beasley Sep 23 '12 at 18:33
@Joran, that would create a datetime.datetime object, and I need an object without a date. – Yariv Sep 23 '12 at 18:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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