vote up 4 vote down star
1

Hey,

I am using the datetime module. I am looking to calculate the date 6 months from the current date. Could someone give me a little help doing this?

Edit: The reason I am wanting to generate a date 6 months from the current date is to produce a Review Date. If the user enters data into the system it will have a review date of 6 months from the date they entered the data. Does this help?

Cheers

Eef

flag

You will have to be more specific : when is six months from march 31th? And from august 30th? – kmkaplan Feb 13 at 15:21
Yes the edit helps: it means you can aproximate 6 months to 183 days with no ill effect. So adding 183 days to today will do the trick. – kmkaplan Feb 13 at 16:42

8 Answers

vote up 3 vote down check
import datetime
print (datetime.date.today() + datetime.timedelta(6*365/12)).isoformat()
link|flag
vote up 6 vote down

Well, that depends what you mean by 6 months from the current date.

1) natural months,

   (day,month,year) = (day,(month+6)%12,year+(month+6)/12)

2) bankers definition, 6*30

   date += datetime.timedelta(6*30)
link|flag
Could you throw in the half-year definition (183 days) plus the 26 weeks definition, too? It helps to have them all in one place. – S.Lott Feb 13 at 18:02
vote up 4 vote down

Dateutil package has implementation of such functionality. But be aware, that this will be naive, as others pointed already.

link|flag
dateutil is awesome. It can be installed with easy_install too. – Soviut Feb 13 at 15:42
vote up 3 vote down

Use the python datetime module to add a timedelta of six months to datetime.today() .

http://docs.python.org/library/datetime.html

You will of course have to solve the issue raised by Johannes Weiß-- what do you mean by 6 months?

link|flag
timedelta doesn't support months and so sidesteps the possible answers to the question "how many days in 6-month?" Eef's code will set a review date so I would suggest one could consider setting the timedelta using days (6*30). If the period represents clients' access to a product/service then a business definition may be required/preferred. – Carl Sep 21 at 15:46
vote up 2 vote down

There's no direct way to do it with Python's datetime.

Check out the relativedelta type at python-dateutil. It allows you to specify a time delta in months.

link|flag
vote up 1 vote down

Just use the timetuple method to extract the months, add your months and build a new dateobject. If there is a already existing method for this I do not know it.

import datetime

def in_the_future(months=1):
    year, month, day = datetime.date.today().timetuple()[:3]
    new_month = month + months
    return datetime.date(year + (new_month / 12), new_month % 12, day)

The API is a bit clumsy, but works as an example. Will also obviously not work on corner-cases like 2008-01-31 + 1 month. :)

link|flag
vote up 1 vote down

What do you mean by '6 months'. Is 2009-02-13 + 6 months == 2009-08-13 or is it 2009-02-13 + 6*30 days?

import mx.DateTime as dt

#6 Months
dt.now()+dt.RelativeDateTime(months=6)
#result is '2009-08-13 16:28:00.84'

#6*30 days
dt.now()+dt.RelativeDateTime(days=30*6)
#result is '2009-08-12 16:30:03.35'

More info about mx.DateTime

link|flag
vote up 0 vote down

The QDate class of PyQt4 has an addmonths function.

>>>from PyQt4.QtCore import QDate  
>>>dt = QDate(2009,12,31)  
>>>required = dt.addMonths(6) 

>>>required
PyQt4.QtCore.QDate(2010, 6, 30)

>>>required.toPyDate()
datetime.date(2010, 6, 30)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.