In Django, how can I manually create users for my project? -
i process of users manually rather having automated registration process. have looked @ documentation , there command line facility creating super user. can create ordinary users command line or equivalent manual process?
you can create user in django create_user()
helper function comes django. can refer link more information available in django documentation.
another way can dumping user lists directly in database. let if use mysql database, can dump data csv format mysql database.
Comments
Post a Comment