在 python 中使用 urllib2 创建 URLretreive 函数
我想要一个可以使用 urllib2 将网页保存到指定路径的功能。
urllib 的问题是它不检查错误 404,但不幸的是 urllib2 没有这样的功能,尽管它可以检查 http 错误。
我怎样才能创建一个将文件永久保存到路径的功能?
def save(url,path):
g=urllib2.urlopen(url)
*do something to save g to 'path'*
I want to have a function which can save a page from the web into a designated path using urllib2.
Problem with urllib is that it doesn't check for Error 404, but unfortunately urllib2 doesn't have such a function although it can check for http errors.
How can i make a function to save the file permanently to a path?
def save(url,path):
g=urllib2.urlopen(url)
*do something to save g to 'path'*
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用 .read() 获取内容并将其写入文件路径。
Just use .read() to get the contents and write it to a file path.