Python 官方文档:入门教程 => 点击学习
本文是小强全栈测试开发班学员投稿,比心!前言为了看美剧《天蝎》,终于在电影天堂网站找到了,嘎嘎,于是就想下载下来好好欣赏。代码import requests,re,os,time#电影的URL地址url = "Http://www.dyGo
前言
为了看美剧《天蝎》,终于在电影天堂网站找到了,嘎嘎,于是就想下载下来好好欣赏。
代码
import requests,re,os,time
#电影的URL地址
url = "Http://www.dyGod.net/html/tv/oumeitv/109673.html"
s = requests.get(url)
# print(s.encoding) #打印下汉字的编码类型
res = re.findall('href="(.*?)">ftp',s.text)
for resi in res:
#汉字转换成utf-8编码
# print(i.encode("iso-8859-1").decode('gbk').encode('utf8').decode('utf8'))
a=resi.encode("iso-8859-1").decode('gbk').encode('utf8').decode('utf8')
print(a) #打印一下看下效果
os.chdir("D:\Program Files (x86)\Thunder Network\Thunder\Program\")
os.system("Thunder.exe -StartType:DesktopIcon "%s"" % a)
time.sleep(1)
运行代码后效果图:
我用的是迅雷极速版,安装在D盘。
注意:在进行下载之前需先启动迅雷
--结束END--
本文标题: 用python下载美剧《天蝎》
本文链接: https://lsjlt.com/news/189192.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0