Skip to content

Instantly share code, notes, and snippets.

@WillianFuks
Last active June 29, 2021 20:51
Show Gist options
  • Select an option

  • Save WillianFuks/1fae714f798759cfd4147627ec210082 to your computer and use it in GitHub Desktop.

Select an option

Save WillianFuks/1fae714f798759cfd4147627ec210082 to your computer and use it in GitHub Desktop.
from django.contrib.auth import get_user_model
User = get_user_model()
user = User.objects.create_user('alice', '[email protected]', 'pass')
user.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment