Answers for "how to change super user in django"

24

django admin create superuser

$ python manage.py createsuperuser
Posted by: Guest on May-28-2020
1

djanog shell change password

from django.contrib.auth.models import User

usr = User.objects.get(username='your username')
usr.is_superuser=True
usr.is_staff=True
usr.set_password('raw password')
usr.save()
Posted by: Guest on January-03-2021
3

create super user in django

python3 manage.py createsuperuser
Posted by: Guest on April-27-2020
0

django create superuser from script

from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User

class Command(BaseCommand):

    def handle(self, *args, **options):

        # The magic line
        User.objects.create_user(username= 'rmx',
                                email='[email protected]',
                                password='rmx55',
                                is_staff=True,
                                is_active=True,
                                is_superuser=True
        )
Posted by: Guest on March-13-2021
-2

how to get the user argent in django

request.META['HTTP_USER_AGENT']
Posted by: Guest on June-30-2020

Code answers related to "how to change super user in django"

Python Answers by Framework

Browse Popular Code Answers by Language