Files
amazon-telegram/bot/amazon_product.py
2023-09-09 19:22:40 +02:00

9 lines
248 B
Python

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}"