Guest User

Untitled

a guest
Apr 5th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class User(Model):
  2. username = CharField(null=False)
  3. password = FixedCharField(null=False, max_length=32)
  4.  
  5. user = User.create(username="whatever", password="whatever")
  6. user.password # returns '008c5926ca861023c1d2a36653fd88e2'
Add Comment
Please, Sign In to add comment