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
It would be great to be able to download content from a page for which there are no direct links.
For example, at a given webpage (e.g. www.paper.com) there are some links to low resolution images:
www.paper.com
<img src="/foo/carousel/bar/image1.jpg" class="figure"></img> <img src="/foo/carousel/bar/image2.jpg" class="figure"></img> <img src="/foo/carousel/bar/image3.jpg" class="figure"></img>
I want to get the high resolution version, and I know their location:
www.paper.com/foo/images/bar/image1.jpg www.paper.com/foo/images/bar/image2.jpg www.paper.com/foo/images/bar/image3.jpg
I would like to be able to replace carousel by images (with XPath replace() for example) and then just follow the link to download the image:
carousel
images
replace()
"figure": { "selector": "replace(//img[@class='figure'], 'carousel', 'images')", "download": true }
The text was updated successfully, but these errors were encountered:
I think this is a sub-issue of #16.
Sorry, something went wrong.
No branches or pull requests
It would be great to be able to download content from a page for which there are no direct links.
For example, at a given webpage (e.g.
www.paper.com
) there are some links to low resolution images:I want to get the high resolution version, and I know their location:
I would like to be able to replace
carousel
byimages
(with XPathreplace()
for example) and then just follow the link to download the image:The text was updated successfully, but these errors were encountered: