Python(16)_爬去百度图片(urlopen和urlretrieve)
Posted sunnybowen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python(16)_爬去百度图片(urlopen和urlretrieve)相关的知识,希望对你有一定的参考价值。
import urllib.request image_url = \'http://img18.3lian.com/d/file/201709/21/f498e01633b5b704ebfe0385f52bad20.jpg\' response = urllib.request.urlopen(url=image_url) # 二进制的形式保存,方法一 with open(\'qing.jpg\',\'wb\') as fp: fp.write(response.read())
方法2: 直接保存
import urllib.request image_url = \'http://img18.3lian.com/d/file/201709/21/f498e01633b5b704ebfe0385f52bad20.jpg\' # urlretrieve 直接写入文件中,爬去的图片会保存在当前目录下 urllib.request.urlretrieve(image_url,\'chun.jpg\')
运行结果:
以上是关于Python(16)_爬去百度图片(urlopen和urlretrieve)的主要内容,如果未能解决你的问题,请参考以下文章