标签:下载 python alt soup 下载到本地 src content 本地 hide
一、给定url,直接下载到本地
import re import requests from bs4 import BeautifulSoup def get_gif(url, a): response = requests.get(url) # 自己电脑上的文件夹路径,默认命名 a.gif with open("C:\\Users\\acm\\Desktop\\新建文件夹\\%d.gif" % a, ‘wb‘) as file: file.write(response.content) if __name__ == ‘__main__‘: # url 获取动态图片地址 url = ‘http://game.gtimg.cn/images/nz/cp/a20201117decbeta/m1-prop1.gif‘ get_gif(url, 1)
标签:下载 python alt soup 下载到本地 src content 本地 hide
原文地址:https://www.cnblogs.com/cherish-lin/p/14073901.html