使用 python 比较两个网页的最简单方法是什么?
你好,我想使用 python 脚本比较两个网页。 我怎样才能实现它?提前致谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
你好,我想使用 python 脚本比较两个网页。 我怎样才能实现它?提前致谢!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
首先,您想要检索这两个网页。可以使用wget、urlretrieve等:
wget 与 python 的 urlretrieve
其次,您想要“比较”页面。您可以使用 Chinmay 指出的“diff”工具。您还可以对两个页面进行关键字分析:
http://pypi.python.org/pypi/stemming/1.0
First, you want to retrieve both webpages. You can use wget, urlretrieve, etc.:
wget Vs urlretrieve of python
Second, you want to "compare" the pages. You can use a "diff" tool as Chinmay noted. You can also do a keyword analysis of the two pages:
http://pypi.python.org/pypi/stemming/1.0
你说的比较是什么意思?如果您只想查找两个文件之间的差异,请尝试 difflib,它是标准 Python 库。
What do you mean by compare? If you just want to find the differences between two files, try difflib, which is part of the standard Python library.