window版百度图片爬虫

Linux版的在windows上运行时,总是出现错误,

参考

import urllib

url = "http://img3.douban.com/icon/ul74923814-6.jpg"

path = "me.jpg"

data = urllib.urlopen(url).read()

f = file(path,"wb")

f.write(data)

f.close()

来源:  https://www.douban.com/note/313254639/

file参数需要用wb,不能用w+,否者图片是花的。

我的GitHub文件地址是:https://github.com/Inspiring26/baiduPic

bs.py是Mac、Linux版的

btw.py 是windows版的

为什么叫bs.py  是因为一开始打算使用beautifulsoup,然而后来并没用。

你可能感兴趣的:(window版百度图片爬虫)