if you already have a table with some rows in it, writing a random function
would work just fine.

# as an example
from random import randint
def select_random_user():
    all_users = User.objects.all()
    selected = list(all_users)[randint(0, all_users.count())]
    return selected

On Tue, 20 Apr 2021 at 01:45, Mustafa Burhani <mustafaburhan...@gmail.com>
wrote:

> I want to Choose random user from databse is possible with django shell or
> need to create model ? for random function ?
>
>
> Thanks !
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/055d5a55-ad28-4a97-b1ec-1d16369cc2a2n%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/055d5a55-ad28-4a97-b1ec-1d16369cc2a2n%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ4Kmg6nF1%2B027oUJ-L6jWbM_XGy_3vj9n%2BvkZM42P3BBbLREA%40mail.gmail.com.

Reply via email to