1 2 3 4 5 6 7 8 9 10 | def convertDatetimeToString(o):
DATE_FORMAT = "%Y-%m-%d"
TIME_FORMAT = "%H:%M:%S"
if isinstance(o, datetime.date):
return o.strftime(DATE_FORMAT)
elif isinstance(o, datetime.time):
return o.strftime(TIME_FORMAT)
elif isinstance(o, datetime.datetime):
return o.strftime("%s %s" % (DATE_FORMAT, TIME_FORMAT))
|
More like this
- parse date template tag by robhudson 3 years, 7 months ago
- UTC DateTime field by ludo 5 years, 9 months ago
- Natural language date/time form fields by jdriscoll 5 years, 11 months ago
- Parse TemplateTag Variables Safely by evan_schulz 4 years, 10 months ago
- datetime.time/datetime.datetime to Unix Epoch (with microsecond support) by sleepycal 3 years ago
Comments
Hello,
I am using the function, but I do not know why isinstance(o, datetime.time) is returning false, when it should be true. My model has a DateTimeField attribute:
-----------------------------------------------------
class Measure (models.Model):
----------------------------------------------------
On the shell:
2011-11-01 01:18:27
2011-11-01
#
You put
.daterather than.datetimeafter the field which converts the datetime.datetime object (a DateTimeField in your db) into a datetime.date object. Adateobject doesn't contain time information and it doesn't inherit the datetime class, so the isinstance doesn't match datetime.datetime. Try doing type(obj) whenever you want to know what type an object is.#