在 python 中使用 urllib2 创建 URLretreive 函数

发布于 2024-11-30 11:31:44 字数 249 浏览 0 评论 0原文

我想要一个可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆伤 2024-12-07 11:31:44

只需使用 .read() 获取内容并将其写入文件路径。

def save(url,path):
  g = urllib2.urlopen(url)
  with open(path, "w") as fH:
    fH.write(g.read())

Just use .read() to get the contents and write it to a file path.

def save(url,path):
  g = urllib2.urlopen(url)
  with open(path, "w") as fH:
    fH.write(g.read())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文