#coding=utf-8
import hackhttp
from bs4 import BeautifulSoup
url = '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']