Skip to content

Instantly share code, notes, and snippets.

@EdwardIII
Created December 11, 2012 19:11
Show Gist options
  • Save EdwardIII/4261164 to your computer and use it in GitHub Desktop.
Save EdwardIII/4261164 to your computer and use it in GitHub Desktop.
>>> from people.models import Basket, Person
>>> bs = Basket.objects.all()
>>> for b in bs: print b.person_set.all()
...
[<Person: Suckka MC>]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment