How do I view the contents of the auth_user model in Django?

For example, I have created a model Class called EmailList within my app. And to view the email QuerySet I can do:

>>> from app.models import EmailList
>>> EmailList.objects.all()

How would I do this same thing with the auth_user model, so I can view the users' emails, names, etc.? Thank you.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
from django.contrib.auth.models import User
User.objects.all()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.