萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> ruby實現網頁圖片抓取

ruby實現網頁圖片抓取

   本文給大家分享的是個人使用ruby編寫的抓取網頁圖片的代碼,十分的簡單實用,有需要的小伙伴可以參考下。

  前段時間看到很多人寫的下妹子腳本,自己也寫一個

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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

  以上所述就是本文的全部內容了,希望大家能夠喜歡。

copyright © 萬盛學電腦網 all rights reserved