Closed marvin-richter closed 3 years ago
I can confirm this issue. It seems that ebay-kleinanzeigen change their html-markup on Sunday so that crawling now fails.
As a workaround you can comment the lines 71 - 74 and line 93 in flathunter/crawl_ebaykleinanzeigen.py as in the screenshot shown below. I don't need the image to be crawled because telegram already pick up the image when showing the the link.
I took a look in the html-markup. Could somebody confirm that changing line 66 of flathunt/crawl_ebaykleinanzeigen.py to
image element = expose_ids[idx].find("div", {"class": "galleryimage-element"})
works?
I took a look in the html-markup. Could somebody confirm that changing line 66 of flathunt/crawl_ebaykleinanzeigen.py to
image element = expose ids[idx].find("div", {"class": "galleryimage-element"})
works?
yes it works. thank you!
there are underscores missing in your answer, so it's
image_element = expose_ids[idx].find("div", {"class": "galleryimage-element"})
Yes you're right, I was missing the underscore. I do a merge request! Thanks for testing.
Hi! I get an error when crawling kleinanzeigen after days with no problem. Did they change something? Here is the error message:
that is my search-string:
Thanks for looking into it! Marvin