10 个版本
0.1.9 | 2021年3月12日 |
---|---|
0.1.8 | 2020年6月1日 |
0.1.7 | 2020年4月18日 |
#2210 在 网页开发
每月 1,809 次下载
在 15 个 crate 中使用 (直接使用 12 个)
225KB
2K SLoC
Nipper
使用 Rust 操作 HTML 的 crate。
Nipper 基于 html5ever crate 和 selectors CSS 选择器 crate。你可以使用类似 jQuery 的语法快速查询和操作 HTML 文档。 不仅可以查询,还可以修改。
示例
提取 Hacker News。
use nipper::Document;
fn main() {
let html = include_str!("../test-pages/hacker_news.html");
let document = Document::from(html);
document.select("tr.athing").iter().for_each(|athing| {
let title = athing.select(".title a");
let href = athing.select(".storylink");
println!("{}", title.text());
println!("{}", href.attr("href").unwrap());
println!();
});
}
可读性。
相关项目
许可
许可协议为以下之一
- Apache License, Version 2.0 (LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 https://open-source.org.cn/licenses/MIT)
任选其一。
贡献
除非你明确声明,否则任何有意提交以包含在作品中的贡献,根据 Apache-2.0 许可证定义,应双许可如上,不附加任何额外条款或条件。
依赖
~3.5–9.5MB
~91K SLoC