Files
CleverRDFlib/README.md
2025-11-21 22:19:46 +00:00

925 B

CleverRDFLib

A wrapper for RDFLib with extensions.

Features

  • Imports RDF/XML, TTL and OWL files
  • Builds object-oriented navigable and searchable class and property nodes
  • Distinguishes between ObjectProperties and DataTypeProperties
  • Easy to retrieve information for a given class and to navigate its hierarchy
  • Retrieve the properties where the class is referenced (domain or range)
  • Validate OWL ontology
  • Retrieve OWL metadata
  • Facilitates interception of web requests to resolve references

Quick Start

# clone the project
git clone https://git.cleverthis.com/cleverlibre/CleverRDFLib.git
cd CleverRDFLib

# create virtual environment and install dependencies
python -m venv .venv
source .venv/bin/activate
pip install -e .[dev]

# run quality checks
nox -s format lint typecheck tests

Documentation

nox -s docs
nox -s serve_docs

Tests

Run them with nox -s tests.