Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBala Selvam
Python Development Techdegree Student 30,590 PointsNot sure what is wrong with my code here. Any help?
Bummer: Didn't get back a properly hashed password; User.hash_password
should be a static method
import datetime
from peewee import *
from argon2 import PasswordHasher
DATABASE = SqliteDatabase('recipes.db')
HASHER = PasswordHasher()
class User(Model):
username = CharField(unique=True)
password = CharField()
class Meta:
database = DATABASE
@classmethod
def create_user(cls, username, password):
try:
cls.get(cls.username**username)
except cls.DoesNotExist:
user = cls(username=username)
user.password = cls.hash_password(password) #Here the class instance is calling the static method we just made
user.save()
return user
else:
raise Exception("User already exists")
@staticmethod
def hash_password(password): #function takes in user password and hashes it
return HASHER.hash(password)
class Recipe(Model):
name = CharField()
created_at = DateTimeField(default=datetime.datetime.now)
class Meta:
database = DATABASE
class Ingredient(Model):
name = CharField()
description = CharField()
quantity = DecimalField()
measurement_type = CharField()
recipe = ForeignKeyField(Recipe)
class Meta:
database = DATABASE
def initialize():
DATABASE.connect()
DATABASE.create_tables([User, Recipe, Ingredient], safe=True)
DATABASE.close()
1 Answer
Josh Keenan
20,315 PointsYou are close:
user = cls(username=username, password=password)
user.password = user.hash_password(password)
Here's my solution, passing the password into the instance creation in the first line and then taking the password from that and hashing it. If you have any questions feel free to ask