ripme icon indicating copy to clipboard operation
ripme copied to clipboard

DribbbleRipper not working - site changed

Open metaprime opened this issue 8 months ago • 1 comments

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.

metaprime avatar Apr 20 '25 05:04 metaprime

Hi! I’m interested in resolving this issue and would like to get started. Could you please assign it to me? Thank you!

umer2001m avatar May 26 '25 21:05 umer2001m

Hi, I am new to open source and looking for good-first-issues. Can you assign me this issue ?

arushi778 avatar Jun 27 '25 13:06 arushi778

#2129 did not resolve this issue.

metaprime avatar Sep 20 '25 09:09 metaprime