Tagged Questions
The queryset tag has no wiki summary.
6
votes
3answers
524 views
Creating custom Field Lookups in Django
How do you create custom field lookups in Django?
When filtering querysets, django provides a set of lookups that you can use: __contains, __iexact, __in, and so forth. I want to be able to provide ...
5
votes
2answers
364 views
Django QuerySet Custom Ordering by ID
Given a list of ids/pks, I'd like to generate a QuerySet of objects ordered by the index in the list.
Normally I'd begin with:
pk_list = [5, 9, 2, 14]
queryset = ...
5
votes
1answer
2k views
How to limit queryset/the records to view in Django admin site?
By default Django admin site shows all records of a related model/table for viewing. How can I show only the records that meet certain criteria?
4
votes
2answers
121 views
Django filter queryset __in for *every* item in list
Let's say I have the following models
class Photo(models.Model):
tags = models.ManyToManyField(Tag)
class Tag(models.Model):
name = models.CharField(max_length=50)
In a view I have a list ...
4
votes
1answer
854 views
Get distinct values of Queryset by field
I've got this model:
class Visit(models.Model):
timestamp = models.DateTimeField(editable=False)
ip_address = models.IPAddressField(editable=False)
If a user visits multiple times in one ...
3
votes
3answers
110 views
django how to get the 0th item from a possibly empty list
I have a simple blog app with the model "Post". If I delete all the entries in the Post model I get an error when I try reference the first item in the post list ordered by date, which I did like ...
3
votes
3answers
161 views
'private' models, default query sets and chaining methods
I have a private boolean flag on my model, and a custom manager that overwrites the get_query_set method, with a filter, removing private=True:
class myManager(models.Manager):
def ...
3
votes
2answers
296 views
Django Model Field for Abstract Base Class
I've searched around stack overflow for an answer to this (probably simple) question, but most of the solutions I see seem overly complicated and hard to understand.
I have a model "Post" which is an ...
3
votes
1answer
493 views
Django admin pages: Can queryset extra fields be used for sorting specific columns
So, the extra field in a queryset can be used to add additional columns to your select query, which in turn can be set as the default ordering. I have so far been able to achieve this: created an ...
3
votes
3answers
310 views
Simple ranking of queryset in django template
I've got a model in a simple django app that records a score for people entering a competition. I've got two model objects, Entry and Person. Each Entry has a Person and a Person has multiple Entries.
...
3
votes
3answers
631 views
Django: Cannot update a query once a slice has been taken
I am trying to do this:
UserLog.objects.filter(user=user).filter(action='message').filter(timestamp__lt=now)[0:5].update(read=True)
but I am getting this error:
Cannot update a query once a slice ...
3
votes
2answers
268 views
Django: Update order attribute for objects in a queryset
I'm having a attribute on my model to allow the user to order the objects. I have to update the element's order depending on a list, that contains the object's ids in the new order; right now I'm ...
2
votes
1answer
28 views
Simple Djanqo Query generating confusing Queryset results
[Update: software versions Python 2.7.2, Django 1.3.1]
Can anyone explain this console code?
FinishingStep has a ForeignKey to a quote object, but that's not really relevant.
>>> fins = ...
2
votes
1answer
135 views
Django - How to annotate QuerySet using multiple field values?
I have a model called "Story" that has two integer fields called "views" and "votes". When I retrieve all the Story objects I would like to annotate the returned QuerySet with a "ranking" field that ...
2
votes
2answers
99 views
Django: Saving old QuerySet for future comparison
I'm new with django and I'm trying to make a unit test where I want to compare a QuerySet before and after a batch editing function call.
def test_batchEditing_9(self):
reset() #reset ...
2
votes
3answers
790 views
Django Queryset with filtering on reverse foreign key
I have the following Django model:
class Make:
name = models.CharField(max_length=200)
class MakeContent:
make = models.ForeignKey(Make)
published = models.BooleanField()
I'd like to know ...
2
votes
1answer
1k views
usage of iterator() on django queryset
I came across some strange behaviour recently, and need to check my understanding.
I'm using a simple filter in the model and then iterating over the results.
e.g.
allbooks = ...
2
votes
4answers
652 views
Django QuerySet access foreign key field directly, without forcing a join
Suppose you have a model Entry, with a field "author" pointing to another model Author. Suppose this field can be null.
If I run the following QuerySet:
Entry.objects.filter(author=X)
Where X is ...
2
votes
3answers
126 views
Django Querying Question
If I were to have two different QuerySets in Django, both representing a ManyToMany relation with the same model, how would I find the intersections?
2
votes
2answers
699 views
Django Admin: Getting a QuerySet filtered according to GET string, exactly as seen in the change list?
In the Django admin, the user can set filters which limit the rows displayed in the change list. How can I get a QuerySet instance with filters set as defined by the query string? For instance, if I ...
1
vote
1answer
107 views
Django: one-to-many queries
I got a lot of one-to-many relationships in my database structure. For example, you have a user, the user has many degrees, he has many emails, he has many contracts, etc.
I found out about this ...
1
vote
1answer
77 views
Django QuerySet - Memory usage / Laziness
I have a django model which has a load of relatively small fields and then one kinda huge one. Let's say something like this:
class MyModel(models.Model):
thing = models.ForeignKey('Thing')
egg = ...
1
vote
1answer
40 views
extract or return only the model instance of a foreign key or one to one field from a queryset in django
Does anyone know if it's possible to extract only the model instances of a foreign key or one to one field from a queryset in Django?
Hypothetically lets say I have two classes, a Post and a ...
1
vote
2answers
71 views
Django: What's the fastest way to order a QuerySet based on the count of a related field?
I've got an Item model in my Django app with a ManyToMany field that's handled through an intermediate Favorite model. Here are simplified versions of the models in question:
class ...
1
vote
3answers
140 views
In Django, what is the most efficient way to check for an empty query set?
I've heard suggestions to use the following:
if qs.exists():
...
if qs.count():
...
try:
qs[0]
except IndexError:
...
Copied from comment below: "I'm looking for a statement like ...
1
vote
1answer
110 views
Toggle boolean fields from a Queryset using F objects
I've tried these queries with these results:
queryset.update(done=not F('boolean'))
{'time': '0.001', 'sql': u'UPDATE "todo_item" SET "done" = True'}
queryset.update(done=(F('boolean')==False))
...
1
vote
1answer
219 views
Django Combine a Variable Number of QuerySets
Is there a way to concatenate a unknown number of querysets into a list?
Here are my models:
class Item(models.Model):
name = models.CharField(max_length=200)
brand = ...
1
vote
1answer
233 views
Django QuerySet order_by string evaluation
I'm trying to sort my QuerySet based on how the objects in the QuerySet are evaluated as Strings.
So my model looks something like this:
class System(models.Model):
operating_system = ...
1
vote
2answers
60 views
Is there any acceptable way to chop/recombine Django querysets without using the API?
I was to forced to use a models.CharField to store some additional flags in one of my models. So I'm abusing each letter of the field as a flag. As an example, 'MM5' would mean "man, married, age ...
1
vote
2answers
186 views
Django: List of valid field lookup operators
Does Django have an accessible list of all valid field lookup operators (those that are used by the QuerySet API, e.g. 'contains', 'in', 'lt', etc)?
Thanks
EDIT: For clarification, I mean an in-code ...
1
vote
1answer
328 views
Construct a django queryset that orders an inner join
I am trying to track page views in a django-based website. I have the following model
class PageView:
date = DateTimeField( auto_now=True )
user = ForeignKey( User )
page = ForeignKey( Page ...
1
vote
2answers
76 views
Django pagination is repeating results
I have this weird pagination bug in Django: using object_list as a return of a view, but passing a "paginate_by" argument to it, it's repeating some of the results; Otherwise, if I remove the argument ...
1
vote
1answer
153 views
Django: Filter for get_foo_display in a Queryset
I've been trying to filter a queryset on a simple model but with no luck so far.
Here is my model:
class Country(models.Model):
COUNTRY_CHOICES = (
('FR', _(u'France')),
('VE', ...
1
vote
1answer
254 views
django join-like expansion of queryset
I have a list of Persons each which have multiple fields that I usually filter what's upon, using the object_list generic view. Each person can have multiple Comments attached to them, each with a ...
1
vote
0answers
436 views
django ModelMultipleChoiceField queryset/filter for objects already associated
I have a Profile object with manytomany relationship to Category
class Profile(models.Model):
. . .
category = models.ManyToManyField(Category, blank=True)
In my form, I want to display a ...
1
vote
1answer
47 views
Django: preventing QuerySet deletions on a model?
I have a model whose delete() method I have overridden. Because this is not called on a bulk QuerySet delete, I would like to disable QuerySet deletion or somehow assert against it happening. Is ...
1
vote
1answer
45 views
Manager gives a queryset from files and not from a database
I would like to override the manager class in order to allow content data to be loaded from text files (here on of "/one directory/myPrefix_*") into content field instead of from a database table.
...
1
vote
1answer
47 views
Get QuerySets from Many2ManyField (include related fields)
Hay, i have a model which houses a board
class Board(models.Model):
parent_board = models.ForeignKey('self', blank=True, null=True)
Each board can belong to another board
So say
Linux
...
1
vote
1answer
52 views
Django, relational querysets
How do I express this SQL query in a Django Queryset?
SELECT * FROM Table1, Table2 WHERE Table1.id_table2 = Table2.id_table2;
Be aware that the structure of table1 implyes a id_table2 foreign ...
1
vote
2answers
141 views
Query and paginate three types of models at the same time in django
In django I have three models:
SimpleProduct
ConfigurableProduct Instead of showing several variations of SimpleProducts, the user will see one product with options like color.
GroupProduct - ...
1
vote
4answers
655 views
store a queryset in the session with django
I have problem storing a big queryset in the session. This queryset is from a search and I need to store it for paginate inside every result. This is the code in my view:
c = ...
1
vote
1answer
792 views
Django: Extending Querysets / Connect multiple filters with OR
I have to work with a queryset, that is already filtered, eg. qs = queryset.filter(language='de') but in some further operation i need to undo some of the already applied filtering, eg not to take ...
1
vote
2answers
617 views
Django ORM: Chaining aggregated querysets into one
Can I chain these two querysets into one?
qs1 = OrderTicket.objects.filter(date__gt=datetime.date(2009, 1, 1), date__lt=datetime.date(2009, 1, 30)).values('order_type').annotate(value_1 = ...
1
vote
3answers
123 views
How Do I Select all Objects via a Relationship Model
Given the Model:
class Profile(models.Model):
user = models.ForeignKey(User, unique=True)
class Thingie(models.Model):
children = models.ManyToManyField('self', blank=True, ...
0
votes
1answer
23 views
Django RawQuerySet.__repr__ : not enough arguments for format string
I'm using a RawQuerySet in Django, and I need to pass it a few parameters (5).
I'm able to call the constructor using MyModel.objects.raw(SQL, params). The SQL is pretty long and not that relevant, ...
0
votes
0answers
31 views
Storing large pandas Panels to disk.
I'm trying to use pandas to store a database of 20+ years of daily equity data, over thousands of equities. Now, I can't fit the entire data set in memory, so I've been trying to import the data in ...
0
votes
1answer
38 views
Django strange icontains behaviour in development
I have been getting some strange behaviour using icontains on my development server. I have a complex query which has been returning some strange results (not the expected number). I drilled down to ...
0
votes
1answer
38 views
GeoDjango's within and contains queryset filters differ to direct GEOS lookups
I've got two models, one which has areas and one which has points. I'm trying to do some simple lookups when the point-model is saved (sends a message to users in who's area the point appears).
The ...
0
votes
1answer
34 views
Django: list all obejcts with non unique field
If I have the following Model:
class Person(models.Model):
first_name = models.CharField(max_length=30)
last_name = models.CharField(max_length=30)
how do I list all objects that have a non ...
0
votes
1answer
48 views
Django complex query comparing 2 models
This may be a design question.
Question is "What is the best way to find offers that needs to have feedback sent by logged in user". In Feedbacks site there are 3 tabs: "Sent", "Received", "Send ...