随笔分类 -  python

python语言
摘要:shutil # 1)删除文件夹 shutil.retree(path) # 同时删除其中的文件 # 2)移动文件(夹) shutil.move('要移动的文件或者文件夹', '移动到那个位置') # 3) 复制文件 shutil.copy('文件路径', '复制到那个位置') # 4)复制A文件夹 阅读全文
posted @ 2022-03-08 20:47 aall_blue 阅读(44) 评论(0) 推荐(0) 编辑
摘要:import requests url_data = request.get(url, timeout=5) url_data.content # 返回二进制,经过property装饰器装饰的方法 阅读全文
posted @ 2022-03-08 16:00 aall_blue 阅读(20) 评论(0) 推荐(0) 编辑
摘要:from concurrent.futures import ThreadPoolExecutor with ThreadPoolExecutor(max_workers=50) as e: # 第一个down_img为函数,后面url_hour,file_dir,img_name为参数 e.sub 阅读全文
posted @ 2022-03-08 15:23 aall_blue 阅读(24) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示