#coding=utf-8import hackhttpfrom bs4 import BeautifulSoupurl = 'http://jandan.net/ooxx'hh = hackhttp.hackhttp()code, head, html, redirect_url, log = hh.http(url)soup = BeautifulSoup(html, "lxml");content = soup.find_all('a',class_="view_img_link" );print content;for i in range(len(content)):print content[i]['href']
