上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 79 下一页
摘要: clint 作用: 进度条 必要操作: >>> from clint.textui import progress 帮助查看: >>> help(clint) 或 单独查看某个方法(函数) >>> help(clint.textui) 方法(函数): for ch in progress.bar(r 阅读全文
posted @ 2022-01-17 16:32 悟透 阅读(506) 评论(0) 推荐(0) 编辑
摘要: tqdm 作用: 进度条 必要操作: >>> import tqdm 帮助查看:>>> help(tqdm) 方法(函数): for data in tqdm(response.iter_content()): handle.write(data) 参考: https://www.cnblogs.c 阅读全文
posted @ 2022-01-17 16:22 悟透 阅读(139) 评论(0) 推荐(0) 编辑
摘要: timeout 帮助信息 TIMEOUT [/T] timeout [/NOBREAK] 描述: 这个工具接受超时参数,等候一段指定的时间(秒)或等按任意键。它还接受 一个参数,忽视按键。 参数列表: /T timeout 指定等候的秒数。有效范围从 -1 到 99999 秒。 /NOBREAK 忽 阅读全文
posted @ 2022-01-16 20:42 悟透 阅读(3957) 评论(0) 推荐(0) 编辑
摘要: 1.批处理源码 @echo off REM 开启延迟扩展设置 setlocal enabledelayedexpansion REM 删除上次生成的旧文件 del out.txt REM 循环输出小时 for /L %%i in (0,1,24) DO ( REM 各位数,前面补0 if %%i L 阅读全文
posted @ 2022-01-16 00:14 悟透 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 常用网络请求速查表 原文:https://www.52pojie.cn/thread-1551640-1-1.html 原图下载:https://wwa.lanzoui.com/iXVLFwx2uwj 百度网盘下载:链接:https://pan.baidu.com/s/1-9B8anZKGoAzWd 阅读全文
posted @ 2022-01-14 17:09 悟透 阅读(64) 评论(0) 推荐(0) 编辑
摘要: requests - 请求HTTP库 常用网络请求速查表:https://www.cnblogs.com/wutou/p/15802687.html 来源:https://www.52pojie.cn/thread-1551640-1-1.html TIF格式,原图下载:https://wwa.la 阅读全文
posted @ 2022-01-14 16:40 悟透 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 执行命令: > python -m pip install --upgrade pip 但是提示失败。 一种原因是windows没有安装编译环境和Python sip 1.安装windows编译环境: 安装文件下载地址:https://www.cnblogs.com/wutou/p/15796990 阅读全文
posted @ 2022-01-13 12:38 悟透 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 错误提示 error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https:// visualstudio.microsoft.com/visual-cpp- 阅读全文
posted @ 2022-01-13 11:50 悟透 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: 一个简单的python获取html页面 版本说明: Testing system os : Windows 7 Python : 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 22:20:52) [MSC v.1916 32 bit (Intel)] on 阅读全文
posted @ 2022-01-13 09:52 悟透 阅读(3202) 评论(0) 推荐(0) 编辑
摘要: xlutils 作用: Eecel文件操作 必要操作: import xlutils 帮助查看: >>> help(xlutils) 或 单独查看某个方法(函数) >>> help(xlutils.copy) 方法(函数): ## 复制excel文件里所有sheet页内容到内存 workbook = 阅读全文
posted @ 2022-01-11 22:41 悟透 阅读(228) 评论(0) 推荐(0) 编辑
上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 79 下一页