)
Size: a a a
)
SD
)
)
)
🚲U
🚲U
🚲U
II
EI
SK
p
🚲U
p
p
def parse(self):
price_location = self.html.index("по цене от")
price_location = slice(price_location, price_location+100)
part_with_price = self.html[price_location]
part_with_price = part_with_price.split()
self.prices = [int(c) for c in part_with_price if c.isnumeric()]
def parse(self):
price_location = self.html.index("по цене от")
price_location = slice(price_location, price_location+100)
part_with_price = self.html[price_location].split()
self.prices = [int(c) for c in part_with_price if c.isnumeric()]
p
K
🚲U
SK
SK