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
Could I download pdf with arx? Is there a user-friendly API to do it?
The text was updated successfully, but these errors were encountered:
Hi!
There isn't really an inbuilt feature like this, but you can do it quite easily by:
.pdf?
open-uri
.pdf_url
require 'open-uri' require 'arx' paper = Arx('1809.09415') if paper.pdf? File.open('paper.pdf', 'wb') do |f| f.write URI.open(paper.pdf_url).read end end
I'll look into adding this feature directly into the API at some point though, thanks for the suggestion!
Sorry, something went wrong.
Implemented in #90, you can now use Arx::Paper#save(path) to save the PDF for a paper object.
Arx::Paper#save(path)
No branches or pull requests
Could I download pdf with arx? Is there a user-friendly API to do it?
The text was updated successfully, but these errors were encountered: