Suppose you want get a random item from a QuerySet, It should be random but non repeating. In many posts I saw they use my_list = MyModel.objects.order_by(“?”) but it will produce repeating items. 1st Step: get a QuerySet my_qset =…
Linux, OpenSource, Programming And Hacks
Suppose you want get a random item from a QuerySet, It should be random but non repeating. In many posts I saw they use my_list = MyModel.objects.order_by(“?”) but it will produce repeating items. 1st Step: get a QuerySet my_qset =…