新手第一帖,勿喷。。。
# -*- coding:utf-8 -*-
import requests
from bs4 import BeautifulSoup
def getlinks():
print('正在获取版本信息……')
r = requests.get('http://lol.qq.com/download.shtml')
r.encoding = 'gb2312'
soup = BeautifulSoup(r.text, 'html.parser')
info = soup.find('p', attrs={'class':'downinfo'}).text
ver = info[6:14].upper()
print('开始扫描真实下载地址……')
links = []
links.append('http://down.qq.com/lol/full/LOL_%s_FULL.exe' % ver)
p = 1
while True:
link = 'http://down.qq.com/lol/full/LOL_%s_FULL.7z.%03d' % (ver, p)
r = requests.head(link, allow_redirects=True)
if r.status_code == 200:
links.append(link)
p += 1
else:
break
print('以下是当前版本完整安装包的下载地址:')
for x in links:
print(x)
getlinks()
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.