如何使用python抓取网页中的超链接

发布于 2024-11-13 22:16:57 字数 191 浏览 2 评论 0原文

我有一个网页,其中的结构类似于

<div>
<ul>
<li class=tree>
<a>  </a>
</li>
</ul>
</div>

现在我想获取所有这些超链接并放入 python 中的文本文件

I have web page in which i have the structure like

<div>
<ul>
<li class=tree>
<a>  </a>
</li>
</ul>
</div>

NOw i want to grab all those hyperlinks and put in text file in python

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

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

发布评论

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

评论(2

深海蓝天 2024-11-20 22:16:57

您可以使用模块 xml.dom.minidom,但如果这是一个问题,它不会移植到某些版本的 python3 中。

You can use the module xml.dom.minidom, though it is not ported to certain versions of python3 if that is an issue.

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