AirBnB_clone_v2 icon indicating copy to clipboard operation
AirBnB_clone_v2 copied to clipboard

Storage get count

Open PreciousEzeigbo opened this issue 6 months ago • 0 comments

A method to retrieve one object:

Prototype: def get(self, cls, id):
    cls: class
    id: string representing the object ID
Returns the object based on the class and its ID, or None if not found

A method to count the number of objects in storage:

Prototype: def count(self, cls=None):
    cls: class (optional)
Returns the number of objects in storage matching the given class. If no class is passed, returns the count of all objects in storage.

PreciousEzeigbo avatar Aug 04 '24 21:08 PreciousEzeigbo