How can I convert a Django QuerySet into a list of dicts? I haven\'t found an answer to this so I\'m wondering if I\'m missing some sort of common helper function that every
Simply put list(yourQuerySet).
list(yourQuerySet)