用于网站解析的库/工具

发布于 2024-09-18 13:21:30 字数 128 浏览 8 评论 0 原文

我想开始将大量原始 HTML 页面解析为语义数据结构。

只是对社区对此类任务的各种可用工具的意见感兴趣,特别是任何语言的各种有用的库。

到目前为止,计划使用 Hadoop 来管理大量处理,但对替代方案感到好奇。

I would like to start working with parsing large numbers of raw HTML pages into semantic data structures.

Just interested in the community opinion on various available tools for such a task, particularly various useful libraries in any language.

So far, planning on using Hadoop to manage a lot of the processing, but curious about alternatives.

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

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

发布评论

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

评论(1

留蓝 2024-09-25 13:21:30

首先,您需要下载页面源代码,然后创建一个 DOM 树。
如果您使用 C# 进行编码,您可以使用以下工具来创建 DOM 树。

1) http://htmlagilitypack.codeplex.com/
2) http://www.majestic12.co.uk/projects/html_parser.php

第一个很容易使用,但第二个更快且内存友好,如果您想创建一个强大的应用程序,我建议您使用第二个,

然后您可以使用以下方法从网页中提取有用的内容:

http://www.chrisspen.com/blog/how -to-extract-a-webpages-main-article-content.html

和许多其他文章,您可以找到通过谷歌搜索从网页中提取内容(从网页中提取主要内容)

希望有帮助

First you need to download your page source and then create a DOM tree.
if you are coding in C# you can user the following tools to create your DOM tree.

1) http://htmlagilitypack.codeplex.com/
2) http://www.majestic12.co.uk/projects/html_parser.php

the first one is easy to use but second one is much faster and memory friendly and I suggest you to use the second one if you want to create a robust application

then you can extract usefull content from web page using:

http://www.chrisspen.com/blog/how-to-extract-a-webpages-main-article-content.html

and many other articles you can find to extract content from web page by Googling (extract main content from web page)

Hope it helps

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