How would you store that into the database, what type of field on the
model I mean? should I store the number of seconds + number of days in
seconds? or the datetime.timedelta() object?

Thanks

> Stop calling int on the return value
>
> >>> import datetime
> >>> time_start = datetime.datetime.now()
> >>> time_end = datetime.datetime.now()
> >>> time_diff = time_end - time_start
> >>> time_diff
>
> datetime.timedelta(0, 9, 126708)>>> print time_diff
>
> 0:00:09.126708
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to