当前位置: 移动技术网 > IT编程>脚本编程>Ruby > ruby实现网页图片抓取

ruby实现网页图片抓取

2017年12月08日  | 移动技术网IT编程  | 我要评论
前段时间看到很多人写的下妹子脚本,自己也写一个 module commonhelper require 'nokogiri' require 'op

前段时间看到很多人写的下妹子脚本,自己也写一个

module commonhelper
 
 require 'nokogiri'
 require 'open-uri'
 
 def down_load_xmz
  site_url = "http://www.xxx.com"
 
  for index_page in 1..141
   doc_html = nokogiri::html(open(site_url+'/share/comment-page-'+index_page.to_s))
   doc_html.css("#comments p img").each do |item_img|
    puts item_img[:src]
    download_img(item_img[:src])
   end
  end
 end
 
 ########下载图片
 def download_img(img_url)
  begin
   img_file = open(img_url) { |f| f.read }
   file_name = img_url.split('/').last
   #puts file_name
   open("public/meizi/"+file_name, "wb") { |f| f.write(img_file) }
   return "/public/meizi/"+file_name
  rescue => err
   puts err
   return ''
  end
 end
 
end

以上所述就是本文的全部内容了,希望大家能够喜欢。

如您对本文有疑问或者有任何想说的,请 点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网