使用 urllib 保存网页
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要获取页面指向的所有其他资源(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.