Answers for "how to authenticate user in django shell"

0

import user in django

>>> from django.contrib.auth.models import User
>>> user = User.objects.create_user('john', '[email protected]', 'johnpassword')

# At this point, user is a User object that has already been saved
# to the database. You can continue to change its attributes
# if you want to change other fields.
>>> user.last_name = 'Lennon'
>>> user.save()
Posted by: Guest on July-07-2021
0

create django user command line

user@hostname$ python3 -m django shell
>>> import django.contrib.auth
>>> User = django.contrib.auth.get_user_model()
>>> user = User.objects.create_user('username', password='userpassword')
>>> user.is_superuser = False
>>> user.is_staff = False
>>> user.save()
Posted by: Guest on February-20-2021

Code answers related to "how to authenticate user in django shell"

Python Answers by Framework

Browse Popular Code Answers by Language