博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Python】启动迅雷下载
阅读量:6252 次
发布时间:2019-06-22

本文共 379 字,大约阅读时间需要 1 分钟。

 

import subprocessimport base64thunder_path = 'E:\Thunder\Program\Thunder.exe'def Url2Thunder(url):    url = 'AA' + url + 'ZZ'    url = base64.b64encode(url.encode('ascii'))    url = b'thunder://' + url    thunder_url = url.decode()    return thunder_urldef download_with_thunder(file_url):    thunder_url = Url2Thunder(file_url)    subprocess.call([thunder_path, thunder_url])

  

转载地址:http://rjysa.baihongyu.com/

你可能感兴趣的文章
2019年目标
查看>>
[SDOI2017]数字表格【莫比乌斯反演】
查看>>
每日一句(11)
查看>>
搭建nexus3版的maven私服(Centos7环境)
查看>>
[TJOI2017]可乐
查看>>
网易云信案例简析:锤科情怀缩影,子弹短信路在何方?
查看>>
c#-SimHash匹配相似-算法
查看>>
字符复习
查看>>
Linux系统挂载ntfs分区
查看>>
10.常见数据库操作1
查看>>
JavaScript高级-定义函数(类)方法
查看>>
移动web图片高度自适应的解决方案
查看>>
API
查看>>
需求获取的前期工作(不断更新)
查看>>
10.23
查看>>
hdu5420 Victor and Proposition
查看>>
如何编写可移植的c/c++代码
查看>>
#pragma pack(n)
查看>>
IntelliJ IDEA 2018.3 升级功能介绍
查看>>
基于.NET平台常用的框架整理
查看>>