Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

django get superuser password

python3 manage.py changepassword <username>
Comment

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='superuser@super.com',
                                password='rmx55',
                                is_staff=True,
                                is_active=True,
                                is_superuser=True
        )
Comment

PREVIOUS NEXT
Code Example
Python :: sort a dataframe by a column valuepython 
Python :: discord.py add reaction to message 
Python :: tensorflow turn off gpu 
Python :: python pip install from script 
Python :: python first day of last month 
Python :: exclude columns pandas 
Python :: python choose random sample from list 
Python :: remove None pandas 
Python :: making spark session 
Python :: python random string 
Python :: matplotlib legend out of plot 
Python :: how to increase height of entry in tkinter 
Python :: installing django celery beat pip 
Python :: python for get index and value 
Python :: round to two decimal places python 
Python :: python clipboard to image 
Python :: isinstance numpy array 
Python :: python iterate columns 
Python :: pandas remove index column when saving to csv 
Python :: python reciprocal 
Python :: interpoltaion search formula python 
Python :: mouse in pygame 
Python :: how to get the angle of mouse from the center 
Python :: slugify python 
Python :: install auto-py-to-exe 
Python :: remove unicode from string python 
Python :: how to create a object in djago views model 
Python :: opening image in python 
Python :: df count missing values 
Python :: django secret key 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =