ripme
ripme copied to clipboard
DribbbleRipper not working - site changed
https://dribbble.com/typogriff
Implementation is:
public List<String> getURLsFromPage(Document doc) {
List<String> imageURLs = new ArrayList<>();
for (Element thumb : doc.select("a.dribbble-link > picture > source")) {
// nl skips thumbnails
if ( thumb.attr("srcset").contains("teaser")) continue;
String image = thumb.attr("srcset").replace("_1x", "");
imageURLs.add(image);
}
return imageURLs;
}
Checking on the page:
Array.from(document.querySelectorAll("a.dribbble-link > picture > source"))
returns an empty list.
The site layout and pattern of the original image URL have changed. Needs work.
Hi! I’m interested in resolving this issue and would like to get started. Could you please assign it to me? Thank you!
Hi, I am new to open source and looking for good-first-issues. Can you assign me this issue ?
#2129 did not resolve this issue.