Idris01 / AirBnB_clone

0 stars 1 forks source link

8. First User #13

Open Idris01 opened 1 year ago

Idris01 commented 1 year ago

Task 8 Write a class User that inherits from BaseModel:

models/user.py Public class attributes: email: string - empty string password: string - empty string first_name: string - empty string last_name: string - empty string Update FileStorage to manage correctly serialization and deserialization of User.

Update your command interpreter (console.py) to allow show, create, destroy, update and all used with User.