ontologos-parser 1.0.0

OWL/RDF parsers for OntoLogos
Documentation

ontologos-parser

OWL/RDF file loading for OntoLogos (load_ontology).

Guide: Load an OWL file

Install

[dependencies]
ontologos-parser = "0.9.0"

Quick start

use ontologos_parser::load_ontology;

let ontology = load_ontology("ontology.owl".as_ref())?;
println!("entities: {}", ontology.entity_count());

Ontology::from_file on ontologos-core intentionally returns ParseNotAvailable — always use this crate for files.

Example

cargo run -p ontologos-parser --example load_and_profile