diff --git a/bot/amazon_product.py b/bot/amazon_product.py new file mode 100644 index 0000000..939815f --- /dev/null +++ b/bot/amazon_product.py @@ -0,0 +1,9 @@ +class AmazonProduct: + + def __init__(self, title, price, image): + self.title = title + self.price = price + self.image = image + + def __str__(self): + return f"Title={self.title}, price={self.price}, image={self.image}" \ No newline at end of file