AirBnB_clone_v2
AirBnB_clone_v2 copied to clipboard
Added get and count functions to both database and file storage
I implemented the get Method in both FileStorage and DBStorage classes which retrieve an object based on its class and ID and returns the object if found, otherwise returns None....
get_count_updated
# What? - Introduce `get` and `count` methods for both storage engines. - Fix date and time inconsistency issues. # Why? - Enhance database retrieval efficiency and enable quick object...
Added get Method: Implemented the get method in both FileStorage and DBStorage classes. The get method retrieves an object based on its class and ID. Returns the object if found,...
Updated the 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:...
**Description:** This PR introduces the get and count methods to the FileStorage class. These methods enhance the file storage functionality by allowing retrieval of specific objects by their class and...