vote up 0 vote down star

Hi!

I am trying to filter a DateTimeField comparing with a date. I mean:

MyObject.objects.filter(datetime_attr=datetime.date(2009,8,22))

I get an empty queryset list as an answer because (i think) i am not considering time, but i want "any time".

Is there an easy way in Django for doing this?

* i have the time in the datetime setted, it is not 00:00

flag

25% accept rate

3 Answers

vote up 0 vote down

E.

Model.objects.filter(datetime__year=date.year, datetime__month=date.month, datetime__day=date.day)

prove it to yourself with today() method:

    >>>Model.objects.filter(datetime__year=datetime.date.today().year).filter(datetime__month=datetime.date.today().month).filter(datetime__day=datetime.date.today().day)
link|flag
this might actually give you all of the say Thurdays .. ? – skyl Sep 13 at 16:24
vote up 0 vote down

See the article Django Documentation

Its very similar to the JZ answer

ur_data_model.objects.filter(ur_date_field=datetime(2005, 7, 27)
link|flag
1  
in the django documentation it works because the datetimefiled has time 00:00 – Xidobix Aug 23 at 4:19
vote up 2 vote down
YourModel.objects.filter(datetime_published__year='2008', 
                         datetime_published__month='03', 
                         datetime_published__day='27')

// edit after comments

YourModel.objects.filter(datetime_published=datetime(2008, 03, 27))

doest not work because it creates a datetime object with time values set to 0, so the time in database doesn't match.

link|flag
This is the correct way. Django documentation ref? – hughdbrown Aug 23 at 4:10
thx for the answer! the first alternative doesn't work with datetimefields. The second alternative works ;). If someone knows another method please answer – Xidobix Aug 23 at 4:14
docs.python.org/library/… using datetime() from datetime module hrs,mins,secs is optional. the second is from a working project with vars replaced, you can look in the docs it's correct – zalew Aug 23 at 4:19
i know it is optional, the problem is that my datetimefield has the time setted, it is not 00:00 – Xidobix Aug 23 at 4:22
"the first alternative doesn't work with datetimefields." it'd be quite surprising, as datetime.datetime() returns a datetime object djangoproject.com/documentation/0.96/… check the model definition and examples: pub_date = models.DateTimeField() pub_date=datetime(2005, 7, 30) – zalew Aug 23 at 4:25
show 1 more comment

Your Answer

Get an OpenID
or

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