本帖最后由 fengoto 于 2020-4-8 20:56 编辑
想必gbt游戏小组大家都知道吧~ http://renxufeng.ys168.com/
里面的游戏都很好 更新也比较及时 可是想找游戏的时候tm不能搜索啊啊啊!!
最近学习了下python,于是把他爬下来,
代码如下,欢迎指点
[Python] 纯文本查看 复制代码
import requests,re,os
def get_game():
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36'
} # 请求头
res = requests.get("http://cd.ys168.com/f_ht/ajcx/ml.aspx?cz=ml_dq&_dlmc=renxufeng&_dlmm=", headers=headers)
mls = re.findall('"ml_(.*?)"',res.text) # 正则表达式获取每个文件 ml_() 括号里面的数字
for ml in mls:
params = {
'cz': 'dq',
'mlbh': str(ml), # ml_() 括号里面的数字
'_dlmc': 'renxufeng',
'_dlmm': ''
}
res_game = requests.get("http://cd.ys168.com/f_ht/ajcx/wj.aspx",headers = headers,params=params)
title = re.findall('title=".*?">(.*?).torrent</a>',res_game.text) # 游戏文件名字
game_href = re.findall('<a.*?href="(.*?)"',res_game.text) # 游戏下载链接
time = re.findall('<b>(.*?)</b>',res_game.text) # 游戏发布时间
game_download(title, game_href, time) # 调用下载文件函数
def game_download(title, game_href, time):
for title, game_href, time in zip(title, game_href, time):
r = requests.get(game_href) # 请求一下下载链接
if not os.path.exists("game"): # 如果当前目录不存在【game】文件夹,则创建
os.mkdir("game")
with open("game\%s%s.torrent" % (title, time), "wb") as d: #下载文件
d.write(r.content)
print("正在下载")
get_game() #执行!!!!!
如有哪些不足,大佬们希望多多指点 :loveliness:
下载游戏链接 https://www.lanzouj.com/ib4qqli
|