Product
Product(self, description, url, image_path, brand)
Represents a product by a given brand.
Attributes
description |
str |
The description of the product. |
url |
str |
The URL of the product. |
image_path |
str |
The path to the image of the product. |
brand |
Brand |
The brand of the product. |
textVibes |
list |
A list of text vibes associated with the product. |
imageVibes |
list |
A list of image vibes associated with the product. |
Parameters
description |
str |
The description of the product. |
required |
url |
str |
The URL of the product. |
required |
image_path |
str |
The path to the image of the product. |
required |
brand |
Brand |
The brand of the product. |
required |
Raises
NoEmbeddableContent |
If the description is missing. |