On Thu, Aug 4, 2011 at 2:19 PM, diafygi <diaf...@gmail.com> wrote:
> Is there a built in way to get:
>>>Model.objects.all().something_pk_values()
> {1 : {'vin':189554}, 2 : {'vin':189555}}


built in to Python:

dict ((o.pk, o) for o in Model.objecs.all())



-- 
Javier

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to