Tagged Questions
6
votes
3answers
523 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
362 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 = ...
3
votes
2answers
267 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
2answers
98 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 ...
1
vote
1answer
74 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
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
230 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
1answer
152 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
253 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
4answers
654 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
784 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
3answers
122 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
0answers
6 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, and I do get a RawQuerySet in return. Hence, the call is OK.
However, my problem is ...
0
votes
2answers
39 views
Django: filter foreign keys
I have the following code:
query = Entry.objects.all()
print 'authors ' + repr([x.id for x in authors])
print 'query ' + repr(query)
print 'query ids ' + ...
0
votes
1answer
252 views
Convert mongoengine queryset to a json file
How do I dump the data in a queryset of Mongo documents to a .json file using python?
I've tried to use django serializer, but didn't work as the fields are not accessed in django the same way as ...
0
votes
1answer
32 views
Django filter against Multiple Item QuerySets
I have two Model's which are related with a ForeignKey field.
Let's call these objects Event and EventRegistration.
I can easily, for example, do this:
...
0
votes
2answers
114 views
How to do a django select sql or statement?
I'm not asking on how to do a raw sql. I'm thinking more in terms of the django queryset api. If I want to execute a sql like
select * from table where id="1" or id="2" or id="3";
how would I do ...
0
votes
0answers
96 views
Django template incorrectly believes iterator is empty
I've got a django database which is used to generate reports on a web server. It receives data from a "views" module which the template thinks contains empty lists even though when I print the same ...
0
votes
2answers
246 views
Using list comprehension instead of for loop when working with Django QuerySets
I'm trying to tweak an application that is suffering in speed department. Because of that, I've started converting all the for-loop statements to list comprehensions when possible.
Currently, I'm ...
0
votes
3answers
59 views
Reordering Modified QuerySet
My database is set up with a list of cases with an ID from our ticketing system, a location, an assigned person and a short description taken from the ticket:
Case
ID
Location
Assigned Person
Short ...
0
votes
2answers
191 views
django queryset include more columns in select statement
I been trying to create a backward relation using queryset and the joining is working fine, accept that its not including the other joined table in the selected columns. Below is my models, queryset ...
0
votes
1answer
74 views
Filter a ValuesQuerySet by a string?
I'm trying to achieve something like this by dynamically specifying the fields:
my_model.objects.values('id', 'name')
So I tried,
my_string = 'id', 'name'
my_model.objects.values(my_string)
but ...
0
votes
1answer
426 views
django sum for a queryset
I need to do an aggregation on a django queryset for sets of data.
I have a model that looks something like this:
class Model1(models.Model):
... some fields here ...
class ...
0
votes
2answers
205 views
Django: Django QuerySet with Date SELECT working erratically
Up until a couple days ago I have been using the following query succesfully. The following query has always returned the data it was supposed to return:
try:
totals = ...
0
votes
1answer
119 views
In Django, correctly making a queryset with multiple categories, multiple tags and search?
I have a list of data. This data model has many-to-many fields to both a categories model and a keywords model. The data model itself has a name and description. The data can have multiple categories ...
-1
votes
2answers
49 views
Checking a list of objects against another list of objects
I have a user profile that contains a manytomany field which points to a set of favorite objects.
I have a queryset that returns an set of those types of objects, independent of the favorites ...