urllib2.urlopen我只获得了网页的一部分

时间:2018-03-22 07:40:55

标签: python python-2.7 urllib2 urlopen

因为raptr迟早会关闭,所以我想保存所有播放数据。我可以访问第一个标签,但就是这样。 如何从第2个,第3个等获取数据(它位于屏幕底部)?

enter image description here

我的代码:

import urllib2
page = urllib2.urlopen('http://raptr.com/john/games')
data = []
for line in page:
    if "game\/" in line:
        data.append(line)

sorter = []

for i in data:
    sorter.append(i.split("game\/"))

games = []

for lst in sorter:
    for part in lst:
        if "game-title" in part:
            games.append(part)

for game in games:
    print(game)

P.S。我知道file但是这个文件没有我上传到网页的所有信息

0 个答案:

没有答案