2

所以我想从visual.ly中抓取可视化,但是现在我不明白“显示更多”按钮是如何工作的。截至目前,我的代码将获取图片链接、图片旁边的文本以及页面的链接。我想知道“显示更多”按钮是如何工作的,因为我将尝试使用页数进行循环。到目前为止,我不知道如何单独循环遍历每个。关于我如何循环并继续获得比最初显示给您的更多图像的任何想法????

from BeautifulSoup import BeautifulSoup
import urllib2  
import HTMLParser
import urllib, re

counter = 1
columnno = 1
parser = HTMLParser.HTMLParser()

soup = BeautifulSoup(urllib2.urlopen('http://visual.ly/?view=explore&   type=static#v2_filter').read())

image = soup.findAll("div", attrs = {'class': 'view-mode-wrapper'})

if columnno < 4:
    column = image[0].findAll("div", attrs = {'class': 'v2_grid_column'})
    columnno += 1
else:
    column = image[0].findAll("div", attrs = {'class': 'v2_grid_column last'})

visualizations = column[0].findAll("div", attrs = {'class': '0 v2_grid_item viewmode-item'})

getImage = visualizations[0].find("a")

print counter

print getImage['href']

soup1 = BeautifulSoup(urllib2.urlopen(getImage['href']).read())

theImage = soup1.findAll("div", attrs = {'class': 'ig-graphic-wrapper'})

text = soup1.findAll("div", attrs = {'class': 'ig-content-right'})

getText = text[0].findAll("div", attrs = {'class': 'ig-description right-section first'})

imageLink = theImage[0].find("a")

print imageLink['href']

print getText

for row in image:
    theImage = image[0].find("a")

    actually_download = False
    if actually_download:
        filename = link.split('/')[-1]
        urllib.urlretrieve(link, filename)

counter += 1
4

1 回答 1

1

您不能在此处使用 urllib-parser 组合,因为它使用 javascript 加载更多内容。为此,您需要一个完整的浏览器模拟器(支持 javascript)。我以前从未使用过Selenium,但我听说它可以做到这一点,并且有一个python 绑定

但是,我发现它使用了一种非常可预测的形式

http://visual.ly/?page=<page_number>

对于它的 GET 请求。也许更简单的方法是

<div class="view-mode-wrapper">...</div>

解析数据(使用上述 url 格式)。毕竟,ajax 请求必须去一个位置。

然后你可以做

for i in xrange(<whatever>):
    url = r'http://visual.ly/?page={pagenum}'.format(pagenum=i)
    #do whatever you want from here
于 2012-08-03T18:32:53.730 回答