AirBnB_clone_v2 icon indicating copy to clipboard operation
AirBnB_clone_v2 copied to clipboard

Results 400 AirBnB_clone_v2 issues
Sort by recently updated
recently updated
newest added

Update DBStorage and FileStorage, adding two new methods. All changes should be done in the branch storage_get_count: A method to retrieve one object: Prototype: def get(self, cls, id): cls: class...

Update DBStorage and FileStorage, adding two new methods

# Summary of Changes: ## 1. User Authentication: ### Password Encryption: Implemented password encryption for enhanced security using hashlib. ### New Routes: Created routes for user registration and authentication, including...

The added methods 'get' and 'count' aims to improve the code. The 'get' method does this by returning the object based on the class and its ID, or None if...

Update DBStorage and FileStorage, adding two new methods. All changes should be done in the branch storage_get_count: A method to retrieve one object: Prototype: def get(self, cls, id): cls: class...

I added a count method and a get method to both filestorage and DB storage

Added .get and .count methods to storage engine