OWL-RL icon indicating copy to clipboard operation
OWL-RL copied to clipboard

A simple implementation of the OWL2 RL Profile on top of RDFLib: it expands the graph with all possible triples that OWL RL defines. It can be used together with RDFLib to expand an RDFLib Graph objec...

Results 33 OWL-RL issues
Sort by recently updated
recently updated
newest added

DeprecationWarning: The rdflib-jsonld package has been integrated into rdflib as of rdflib==6.0.1. Please remove rdflib-jsonld from your project's dependencies.

This line fails with rdflib 6.1.1 because the OWL namespace defined in rdflib does not support the `OWL.Datatype` property: https://github.com/RDFLib/OWL-RL/blob/a77e1791b88b54aace609bc6000aac14c7add4ff/owlrl/OWLRLExtras.py#L354

I've been inspecting `owl:Axiom` for potential use in a project. (What I'm trying to do is out of scope of this patch series, but the short of it is, I'm...

``` import owlrl rdfs = owlrl.RDFSClosure.RDFS_Semantics(g, False, False, False) rdfs.closure() result = g.query(""" PREFIX s: SELECT ?x WHERE{ ?x rdf:type s:Example . } """) print(g.serialize()) ``` When I understood the...

Such triples are illegal due to RDF standard, and they break at least some of the storage engines: see https://github.com/RDFLib/rdflib-sqlalchemy/issues/85 The full working example is here: https://gist.github.com/anatoly-scherbakov/ebde3d6b70ddde7f7b3baadb65d8464b I am not...

OWL-RL's original goal was to perform OWL-RL reasoning so "OWL-RL" has been an appropriate name. If other reasoning profiles are added, and RDFS is already available, then the name could/should...

Discovered on [conda-forge](https://github.com/conda-forge/owlrl-feedstock/pull/3) where we execute [`owlrl --help`](https://github.com/conda-forge/owlrl-feedstock/pull/3/files#diff-f3725a55bf339595bf865fec73bda8ac99f283b0810c205442021f29c06eea9aL35) as part of the tests, It looks like the `scripts` were not updated for 6.x, after the removal of all of the...

When using an `rdflib.ConjunctiveGraph`, OWL-RL creates its inferred triples in the default, unnamed graph. Is it possible to create them in a specific named graph instead, if so requested by...

(Sorry if I'm putting this message in the wrong place...) Thank you guys for owlrl tool / package! I am trying to use it and I get (almost) all a...

Hey all! I am trying to package OWL-RL for the Fedora OS and am struggling through one of the test cases that is failing (even in a virtual environment). The...