I'm using Django with Python 3.7 and PostGres 9.5. I use the following to get all my objects and iterate over them ...
article_set = Article.objects.all()
for article in article_set:
Is there a way to modify my existing query or possibly the loop so that the objects are returned in a random order each time? I would prefer not to make a second query if at all possible.