自己閑來無事,用mechanize做了一個可以下載校內相冊照片的代碼。
寫的有些簡陋。。。。主要是根據相冊的地址來分析用戶ID和相冊ID,然后模擬請求相冊頁面,并提取所有照片,然后下載到本地的一個文件夾中。
ruby版本:ruby1.8.7 or ruby1.9.2
操作系統:windows 7
Linux下沒有試過~不過應該也可以的:
代碼如下:
#encoding: utf-8
require 'rubygems'
require 'mechanize'
class Renren
def initialize(e,p)
@agent = Mechanize.new
@page = @agent.get('http://3g.renren.com/')
@page = @page.form_with(:method => 'POST') do |r|
r.email = e
r.password = p
end.submit
end
def fetch_other_photo(album_link,foldername)
photo_urls = []
puts Iconv.conv("gb2312", "utf-8", "開始分析相冊地址.....")
begin
user_id,album_id = parse_album_uri(album_link)
rescue
puts Iconv.conv("gb2312", "utf-8", "您的相冊地址不正確,請重新輸入!")
return
end
page = @agent.get("http://3g.renren.com/album/wgetalbum.do?id=#{user_id}&owner=#{album_id}")
puts Iconv.conv("gb2312", "utf-8", "正在獲取所有照片地址.....")
loop do
page.links_with(:href => /http:////3g/.renren/.com//album//wgetphoto/.do?/).each do |link|
photo = link.click
photo_urls << photo.link_with(:text => "下載該圖").href
end
break if page.link_with(:text => "下一頁").nil?
page = page.link_with(:text => "下一頁").click
end
if photo_urls.length > 0
puts Iconv.conv("gb2312", "utf-8", "開始下載相冊.....")
unless File.directory?("#{foldername}")
Dir.mkdir("#{foldername}")
end
Dir.chdir("#{foldername}") do |path|
photo_urls.each do |photo_url|
@agent.get(photo_url) do |photo|
puts Iconv.conv("gb2312","utf-8","正在保存文件#{photo.filename}……已經下載#{((photo_urls.index(photo_url)+1).to_f/photo_urls.length*100).to_i}%")
新聞熱點
疑難解答