1 2 3 4 5 6 7 8 9 | import dateutil.parser
def decode_datetime(obj):
if 'datetime' not in obj:
return obj
dt = dateutil.parser.parse(obj['datetime'])
obj['datetime'] = dt
return obj
|
More like this
- JSON encode ISO UTC datetime by japerk 3 years, 1 month ago
- isoutc template filter by japerk 3 years, 1 month ago
- timeto template filter by japerk 3 years, 1 month ago
- Custom model field to store dict object in database by rudyryk 2 years, 1 month ago
- Extend simplejson to understand closures, functors, generators and iterators by ElfSternberg 3 years ago
Comments
If you have datetime objects as "%Y-%m-%d %H:%M:%S", then you don't need to convert them. Django will allow for using these in queries, and saving to the database.
Same with date ("%Y-%m-%d") and time ("%H:%M:%S") objects.
#