We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://www.sankakucomplex.com/2019/06/11/darling-ol-goddess-shows-off-her-plump-lower-area/
Some article have video attached and some have embed, so can it using youtube-dl to download these vids ? ty
The text was updated successfully, but these errors were encountered:
def images(self, extr): num = 0 imgs = [] urls = set() orig = re.compile(r"-\d+x\d+\.") extr('<div class="entry-content">', '') while True: url = extr('type="video/mp4" src="', '"') if not url: return imgs if url in urls: continue if url[0] == "/": url = text.urljoin(self.root, url) url = orig.sub(".", url) num += 1 imgs.append(text.nameext_from_url(url, { "url" : url, "num" : num, })) urls.add(url)
this will capture video but i dont know how to make it get all pics,gif,.... too
Sorry, something went wrong.
98a4d86
No branches or pull requests
https://www.sankakucomplex.com/2019/06/11/darling-ol-goddess-shows-off-her-plump-lower-area/
Some article have video attached and some have embed, so can it using youtube-dl to download these vids ? ty
The text was updated successfully, but these errors were encountered: