Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With inspectdb I was able to get a "interval" field from postgres into django. In Django, it was a TextField. The object that I retrieved was indeed a timedelta object!

Now I want to put this timedelta object in a new model. What's the best way to do this? Because putting a timedelta in a TextField results in the str version of the object...

share|improve this question

5 Answers

up vote 15 down vote accepted

You can trivially normalize a timedelta to a single floating-point number in days or seconds.

Here's the "Normalize to Days" version.

timedelta.days+timedelta.seconds/86400

You can trivially turn a floating-point number into a timedelta.

>>> datetime.timedelta(2.5)
datetime.timedelta(2, 43200)

So, store your timedelta as a float.

Here's the "Normalize to Seconds" version.

timedelta.days*86400+timedelta.seconds

Here's the reverse (using seconds)

datetime.timedelta( someSeconds/86400 )
share|improve this answer
1  
off course you mean float(timedelta.days) + float(timedelta.seconds)/float(86400) ... but it works! – Jack Ha Apr 29 '09 at 11:52
@Jack Ha: Thanks for spotting the problem. – S.Lott Apr 29 '09 at 12:08
timedelta.days+timedelta.seconds/86400.0 – aehlke Jan 7 '10 at 2:19
Excellent, thanks for the help! – Matt Caldwell Dec 31 '10 at 5:12
Since python 2.7 you can normalize to seconds using the timedelta.total_seconds method. – Lauritz V. Thaulow Jan 17 at 13:25

For PostgreSQL, use django-pgsql-interval-field here: http://code.google.com/p/django-pgsql-interval-field/

share|improve this answer

https://bitbucket.org/schinckel/django-timedelta-field/src

share|improve this answer
In a repository: check. Works: check. Thanks for sharing. – kobejohn Oct 4 '11 at 23:34

This link may be helpfull: Timedelta Snippets

share|improve this answer

First, define your model:

class TimeModel(models.Model):
    time = models.FloatField()

To store a timedelta object:

# td is a timedelta object
TimeModel.objects.create(time=td.total_seconds())

To get the timedelta object out of the database:

# Assume the previously created TimeModel object has an id of 1
td = timedelta(seconds=TimeModel.objects.get(id=1).time)

Note: I'm using Python 2.7 for this example.

share|improve this answer
1  
on python with version lower than 2.7 can be used formula: total_seconds = (td.microseconds + (td.seconds + td.days * 24 * 3600) * 10**6) / 10**6 – Pol Jun 21 '12 at 14:40

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.