使用 urllib 保存网页

发布于 2024-10-23 14:00:41 字数 184 浏览 2 评论 0原文

import urllib
url='www.something.com/something..'
f = urllib.urlretrieve(url,'copy.html') 

此代码仅创建一个 html 文件,该文件提供到指定 url 的直接链接(即,无法离线访问)。如何存储网页以便离线可用。?

import urllib
url='www.something.com/something..'
f = urllib.urlretrieve(url,'copy.html') 

this code only creates a html file which provides direct link to the url specified (ie, it is not accessible offline). How to to store the webpage so that it will be available offline.??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瞎闹 2024-10-30 14:00:41

您需要获取页面指向的所有其他资源(CSS 文件、图像...)。

我建议您使用“wget”,它已经满足您的要求了。

You need to get all the other resources the page is pointing to (CSS files, images ...).

I suggest that you use "wget", it already does what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文