source:
phonelux_scrappers/classes/phone.py
Last change on this file was 895cd87, checked in by , 2 years ago | |
---|---|
|
|
File size: 287 bytes |
Line | |
---|---|
1 | class Phone: |
2 | |
3 | def __init__(self, id, brand, model, image_url, total_offers, lowest_price): |
4 | self.id = id |
5 | self.brand = brand |
6 | self.model = model |
7 | self.image_url = image_url |
8 | self.total_offers = total_offers |
9 | self.lowest_price = lowest_price |
Note:
See TracBrowser
for help on using the repository browser.