ontocore-parser 0.14.0

RDF and OWL parsers for OntoCore (ontocore-*)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! RDF/OWL parsing into [`ontocore_core`] entities via Oxigraph.
//!
//! Entry point: [`parse_ontology_file`].
//!
//! # API stability
//!
//! **Pre-1.0:** parsing APIs and [`ParsedOntology`] fields may change between minor releases.

mod obo;
mod rdf;
mod vocab;

pub use obo::{parse_obo_file, parse_obo_text};
pub use rdf::{
    parse_ontology_file, parse_ontology_text, serialize_quads_turtle, ParseError, ParsedOntology,
};
pub use vocab::OWL;