ProductInfo.py 512 B

123456789101112
  1. class ProductInfo:
  2. def __init__(self, record):
  3. self.id = record.get("_id", "null")
  4. self.title = record.get("title", "null")
  5. self.sizes = record.get("sizes", "null")
  6. self.colors = record.get("colors", "null")
  7. self.url = record.get("url", "null")
  8. self.images = record.get("image", [])
  9. self.price = record.get("price", "null")
  10. self.shopTitle = record.get("shopTitle", "null")
  11. self.platFormName = record.get("platFormName", "null")