基础版 import requests url = "http://mp.111ttt.cn/mp3free/81135985.mp3" rsp = requests.get(url, stream=True) with open('1.mp3', 'wb') as f: for i in rsp. ...
分类:
编程语言 时间:
2020-04-23 12:14:39
阅读次数:
105
上篇获取到了每一集的下载url,这篇就用获取到的url下载视频 在下载文件时希望可以给出进度条之类的提示,在网上搜索了一波,发现有一个库可以实现:tqdm库,具体用法参考这篇博客:https://www.jianshu.com/p/1ed2a8b2c77b 在原来的类下面,再加一个方法,用来下载文件 ...
分类:
其他好文 时间:
2020-02-18 12:45:30
阅读次数:
136
html/ajax var url = "img/01.png"; $.ajax({ type: 'GET', dataType: 'json', url: url, cache: false, xhr: function() { var xhr = new window.XMLHttpReques ...
分类:
其他好文 时间:
2020-01-10 01:09:33
阅读次数:
278
11 /// <summary> /// 文件上传 /// </summary> /// <param name="filePath">原路径(绝对路径)包括文件名</param> /// <param name="objPath">目标文件夹:服务器下的相对路径 不填为根目录</param> pu ...
分类:
Web程序 时间:
2019-12-03 17:58:08
阅读次数:
115
1、阻塞/非阻塞、同步/非同步 同步与非同步(消息通知机制):关注的是等待过程的通知方式需要自己主动询问还是被动通知。 阻塞与非阻塞(等待消息通知时的状态):关注的是等待过程是否可以转变为其他非等待状态。 举例说明:假设我要下载一个视频 1、通过看下载进度条等待下载完成的结果(同步),期间不做其他事 ...
分类:
其他好文 时间:
2019-09-14 13:20:01
阅读次数:
88
具体表现为一直安装失败,但是下载进度条一直在,无法去除。 此方法来自 https://answers.microsoft.com/en us/windows/forum/all/error code 0x80070057 when installing intel media/725eff00 5f ...
分类:
其他好文 时间:
2019-08-30 20:57:09
阅读次数:
151
1.大家都知道有些时候我们玩游戏或者打开一些内存比较大的电脑会出现卡顿的情况,此时就需要我们下载进度条来减缓卡顿时间了 接下来就展示下实现这个指令的代码吧 import time scale=10 print("......执行开始......") for i in range(scale+1); ...
分类:
其他好文 时间:
2019-03-21 00:46:05
阅读次数:
162
import time def process(percent, width=30): percent = percent if percent <= 1 else 1 text=('\r[%%-%ds]'%width)%('*'*int(width*percent)) text=text+'%d% ...
分类:
其他好文 时间:
2019-03-19 18:39:50
阅读次数:
132
//ajax异步上传 $.ajax({ url: "${pageContext.request.contextPath }/upload", type: "POST", data: formData, xhr: function(){... ...
分类:
Web程序 时间:
2019-03-19 17:12:41
阅读次数:
239
CodePush 热更新之自定义更新弹框及下载进度 先来几张弹框效果图 非强制更新场景 image 强制更新场景 image 更新包下载进度效果 image 非强制更新场景 image image 强制更新场景 image image 更新包下载进度效果 image image 核心代码 这里的热更 ...
分类:
其他好文 时间:
2018-09-05 09:02:39
阅读次数:
212