ivysochyn / apartment-parser

Apache License 2.0
0 stars 0 forks source link

Fix featured offers #10

Closed ivysochyn closed 1 year ago

ivysochyn commented 1 year ago

In the current implementation featured offers aren't filtered out, which should be fixed.

The block indicating whether the offer is featured is the next one:

<div class="css-1jh69qu" data-testid="adCard-featured">

We can parse the div and check if data-testid is set to adCard-featured and filter it out by returning an empty structure.

Also, the image parsing should be removed since it is usable only for first x offers, and later images aren't loaded.

ivysochyn commented 1 year ago

Changes were merged.