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

In my code I ask the user for a date in the format dd/mm/yyyy.

currentdate = raw_input("Please enter todays date in the format dd/mm/yyyy: ")
day,month,year = currentdate.split('/')
today = datetime.date(int(year),int(month),int(day))

This returns the error

TypeError: descriptor 'date' requires a 'datetime.datetime' object but received a 'int'

if I remove the int() then I end up with the same error only it says it received a 'str'

What am I doing wrong?

share|improve this question

4 Answers

It seems that you have imported datetime.datetime module instead of datetime. This should work though:

import datetime
currentdate = raw_input("Please enter todays date in the format dd/mm/yyyy: ")
day,month,year = currentdate.split('/')
today = datetime.date(int(year),int(month),int(day))

..or this:

from datetime import date
currentdate = raw_input("Please enter todays date in the format dd/mm/yyyy: ")
day,month,year = currentdate.split('/')
today = date(int(year),int(month),int(day))
share|improve this answer
thanks a lot this worked – John mcnamara Apr 11 '11 at 10:53

Do you import like this?

from datetime import datetime

Then you must change it to look like this:

import datetime

Explanation: In the first case you are effectively calling datetime.datetime.date(), a method on the object datetime in the module datetime. In the later case you create a new date() object with the constructor datetime.date().

Alternatively, you can change the import to:

from datetime import datetime, date

and then construct with date(y,m,d) (without the datetime. prefix).

share|improve this answer

I can reproduce the error if I do

from datetime import *

It goes away when I do

import datetime

So check your imports.

share|improve this answer

I suspect that the datetime reference the object and not the module. You probably did have the following code (probably more complex):

from datetime import datetime
currentdate = raw_input("Please enter todays date in the format dd/mm/yyyy: ")
day,month,year = currentdate.split('/')
today = datetime.date(int(year),int(month),int(day))

You are thus calling the date method of the datetime class instead of calling the date function of the datetime module.

You can print the datetime object to see if this is really the case:

>>> import datetime
>>> print datetime
<module 'datetime' (built-in)>
>>> print datetime.date(1, 1, 1)
0001-01-01
>>> datetime = datetime.datetime
>>> print datetime
<type 'datetime.datetime'>
>>> print datetime.date(1, 1, 1)

Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    print datetime.date(1, 1, 1)
TypeError: descriptor 'date' requires a 'datetime.datetime' object but received a 'int'
share|improve this answer

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.