7个版本
新 0.1.0-alpha.7 | 2024年8月22日 |
---|---|
0.1.0-alpha.6 | 2024年5月22日 |
0.1.0-alpha.5 | 2024年3月25日 |
0.1.0-alpha.2 | 2024年1月25日 |
#1938 在 解析器实现 中排名
1,822 每月下载次数
用于 20 个crate(4个直接使用)
710KB
13K SLoC
OxRDF I/O
OxRDF I/O 是一套RDF解析器和序列化器。
它支持
还支持在 SPARQL-star 特性下使用 Turtle-star、TriG-star、N-Triples-star 和 N-Quads-star。
它设计为低级解析器,兼容同步和异步I/O(在 async-tokio
特性下)。
此库的入口点是两个 RdfParser
和 RdfSerializer
结构体。
将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