using User.objects.get_or_create() gives invalid p

2019-04-10 14:29发布

python manage.py shell

>>> from django.contrib.auth.models import User
>>> u=User.objects.get_or_create(username="testuser2",password="123")
>>> u
(<User: testuser2>, True)

seems it created the User properly. but when I logged into admin at http://127.0.0.1:8000/admin/auth/user/3/, I see this message for password Invalid password format or unknown hashing algorithm.

Screenshot is attached too. why is it this way and how to create User objects from shell. I am actually writing a populating script that create mulitple users for my project?

enter image description here

3条回答
Ridiculous、
2楼-- · 2019-04-10 14:38

As mentioned in the documentation.

The most direct way to create users is to use the included create_user() helper function.

from django.contrib.auth.models import User user = User.objects.create_user(username="testuser2",password="123")

查看更多
对你真心纯属浪费
3楼-- · 2019-04-10 14:47

Almost correct except we don't want to set password of existing users

from django.contrib.auth.models import User
user, created = User.objects.get_or_create(username="testuser2")
if created:
          # user was created
          # set the password here
          user.set_password('123')
          user.save()
       else:
          # user was retrieved
查看更多
Viruses.
4楼-- · 2019-04-10 14:55

You need to use the User.set_password method to set a raw password.

E.g.,

from django.contrib.auth.models import User
user, created = User.objects.get_or_create(username="testuser2")
user.set_password('123')
user.save()
查看更多
登录 后发表回答