7个版本

0.1.0-alpha.7 2024年8月22日
0.1.0-alpha.62024年5月22日
0.1.0-alpha.52024年3月25日
0.1.0-alpha.22024年1月25日

#1938解析器实现 中排名

Download history 17/week @ 2024-05-01 17/week @ 2024-05-08 57/week @ 2024-05-15 214/week @ 2024-05-22 114/week @ 2024-05-29 268/week @ 2024-06-05 185/week @ 2024-06-12 232/week @ 2024-06-19 625/week @ 2024-06-26 272/week @ 2024-07-03 147/week @ 2024-07-10 136/week @ 2024-07-17 213/week @ 2024-07-24 170/week @ 2024-07-31 1215/week @ 2024-08-07 204/week @ 2024-08-14

1,822 每月下载次数
用于 20 个crate(4个直接使用)

MIT/Apache

710KB
13K SLoC

OxRDF I/O

Latest Version Released API docs Crates.io downloads actions status Gitter

OxRDF I/O 是一套RDF解析器和序列化器。

它支持

还支持在 SPARQL-star 特性下使用 Turtle-starTriG-starN-Triples-starN-Quads-star

它设计为低级解析器,兼容同步和异步I/O(在 async-tokio 特性下)。

此库的入口点是两个 RdfParserRdfSerializer 结构体。

将Turtle文件转换为N-Triples文件的用法示例

use oxrdfio::{RdfFormat, RdfParser, RdfSerializer};

let turtle_file = b"@base <http://example.com/> .
@prefix schema: <http://schema.org/> .
<foo> a schema:Person ;
    schema:name \"Foo\" .
<bar> a schema:Person ;
    schema:name \"Bar\" .";

let ntriples_file = b"<http://example.com/foo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://example.com/foo> <http://schema.org/name> \"Foo\" .
<http://example.com/bar> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://example.com/bar> <http://schema.org/name> \"Bar\" .
";

let mut writer = RdfSerializer::from_format(RdfFormat::NTriples).serialize_to_write(Vec::new());
for quad in RdfParser::from_format(RdfFormat::Turtle).parse_read(turtle_file.as_ref()) {
    writer.write_quad(&quad.unwrap()).unwrap();
}
assert_eq!(writer.finish().unwrap(), ntriples_file);

在Rust中还有其他RDF格式的解析器,如用于RDFa的 graph-rdfa-processor 和用于JSON-LD的 json-ld

许可协议

此项目根据以下之一进行许可:

  • Apache许可证版本2.0,(LICENSE-APACHE<http://www.apache.org/licenses/LICENSE-2.0>
  • MIT许可证(LICENSE-MIT<http://opensource.org/licenses/MIT>

由您选择。

贡献

除非您明确表示否则,您根据Apache-2.0许可证提交的任何旨在包含在Oxigraph中的贡献,将按照上述方式双许可,不附加任何额外条款或条件。

依赖项

~1.8–3.5MB
~64K SLoC