网页抓取选项 - C++ 仅版本
我正在寻找一个好的 C++ 库来进行网页抓取。
它必须是C/C++,没有其他,所以请不要引导我HTML 抓取选项 或其他 SO 问题/答案,其中甚至没有提到 C++。
I'm looking for a good C++ library for web scraping.
It has to be C/C++ and nothing else so please do not direct me to Options for HTML scraping or other SO questions/answers where C++ is not even mentioned.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
此处使用 myhtml C/C++ 解析器; 非常简单,非常快。 除 C99 之外没有任何依赖项。 并内置 CSS 选择器(示例此处)
Use myhtml C/C++ parser here; dead simple, very fast. No dependencies except C99. And has CSS selectors built in (example here)
我推荐 Qt5.6.2,这个强大的库为我们提供了
我已经用 Qt5 编写了一个图像抓取应用程序,这个应用程序可以抓取几乎所有搜索到的图像谷歌、必应和雅虎。
要了解更多详细信息,请访问我的github项目。
我写下了有关如何通过 Qt5 抓取数据的高级概述
我的博客(在堆栈溢出上发布太长了)。
通过 Qt5 下载 Bing 图像
创建更好的图像下载器(Google、Bing 和Yahoo) by Qt5
I recommend Qt5.6.2, this powerful library offer us
I already wrote an image scraper apps by Qt5, this app can scrape almost every image searched by Google, Bing and Yahoo.
To know more details about it, please visit my github project.
I wrote down high level overview about how to scrape data by Qt5 on
my blogs(it is too long to post at stack overflow).
Download Bing images by Qt5
Create a better images downloader(Google, Bing and Yahoo) by Qt5