datagen.api.catalog.masks#

class datagen.api.catalog.masks#

This class gives you access to the catalog of masks assets. When you get a 3D asset from this catalog, it comes in the form of a datagen.api.assets.Mask object.

You can query the masks catalog using these functions:

get(self, id: str = None, limit: int = None, **attributes) Union[Masks, List[Masks]]:#

Gets masks assets from the asset catalog.

Parameters:
Returns:

The masks asset or assets that match your search query

Return type:

count(self, **attributes) int:#

Queries the catalog for the number of masks assets matching a request

Parameters:

attributes (Any) – Optional. A dictionary of attributes matching one or more of the properties in datagen.api.catalog.attributes.MaskAttributes.

Returns:

The number of masks assets in the catalog matching your query.

Return type:

int