Skip to content

Instantly share code, notes, and snippets.

@hieunguyentrung
Created December 1, 2019 14:35
Show Gist options
  • Save hieunguyentrung/ad403e0d1d715df7b5a6ecd440a83f48 to your computer and use it in GitHub Desktop.
Save hieunguyentrung/ad403e0d1d715df7b5a6ecd440a83f48 to your computer and use it in GitHub Desktop.
Download images
```
x = a.scan(/https\:\/\/i.pinimg\.com[\/\d\w]*\.jpg\s2x/)
require 'open-uri'
def download_image(url, dest)
open(url) do |u|
File.open(dest, 'wb') { |f| f.write(u.read) }
end
end
x.each_with_index do |url, index|
download_image(url.split(' ').first, "quotes/#{index}.jpg")
end
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment