Checks the type of the field (date / time / date-time) and returns corresponding value as a string.
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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months 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
.date
rather than.datetime
after the field which converts the datetime.datetime object (a DateTimeField in your db) into a datetime.date object. Adate
object 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.#
Please login first before commenting.