资讯

展开

使用python爬取网络图片

作者:快盘下载 人气:

#引入我们的requests库

import requests

#我们获取的链接放在url当中

url=; ;

#将我们的保存路径放在我们的path当中

path=; ;

#使用requests库当中的get方法去获取

r=requests.get(url,headers)

r.encoding=r.apparent_encoding

#使用我们的with open方法向我们的文件当中写入

with open (path,;wb;)as f:

        f.write(r.content)

加载全部内容

相关教程
猜你喜欢
用户评论
快盘暂不提供评论功能!