Django model operating on a queryset

Posted by jmoz on Stack Overflow See other posts from Stack Overflow or by jmoz
Published on 2013-11-01T15:42:37Z Indexed on 2013/11/01 15:53 UTC
Read the original article Hit count: 429

I'm new to Django and somewhat to Python as well. I'm trying to find the idiomatic way to loop over a queryset and set a variable on each model. Basically my model depends on a value from an api, and a model method must multiply one of it's attribs by this api value to get an up-to-date correct value.

At the moment I am doing it in the view and it works, but I'm not sure it's the correct way to achieve what I want. I have to replicate this looping elsewhere.

Is there a way I can encapsulate the looping logic into a queryset method so it can be used in multiple places?

I have this atm (I am using django-rest-framework):

class FooViewSet(viewsets.ModelViewSet):
    model = Foo
    serializer_class = FooSerializer

    bar = # some call to an api

    def get_queryset(self):
        # Dynamically set the bar variable on each instance!
        foos = Foo.objects.filter(baz__pk=1).order_by('date')
        for item in foos:
            item.needs_bar = self.bar

        return items

I would think something like so would be better:

def get_queryset(self):
    bar = # some call to an api
    # Dynamically set the bar variable on each instance!
    return Foo.objects.filter(baz__pk=1).order_by('date').set_bar(bar)

I'm thinking the api hit should be in the controller and then injected to instances of the model, but I'm not sure how you do this. I've been looking around querysets and managers but still can't figure it out nor decided if it's the best method to achieve what I want.

Can anyone suggest the correct way to model this with django?

Thanks.

© Stack Overflow or respective owner

Related posts about python

Related posts about django