RDFLib / OWL-RL

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 object, or as a stand alone service with its own serialization.
http://www.ivan-herman.net/Misc/2008/owlrl/
Other
139 stars 30 forks source link

Renamed a bunch of variables to avoid conflicts with python3 built-ins. #17

Closed ashleysommer closed 5 years ago

ashleysommer commented 5 years ago

renamed the range variable to rdfs_range to avoid conflict with built-in range function renamed domain variable to rdfs_domain to keep domain and range naming consistent. renamed type variable to rdf_type to avoid conflict with type built-in Type name. renamed local variable rdfType in OWLExtras to rdf_type to keep naming consistent with other places rdf_type is used. renamed object variable to rdf_object to avoid conflict with object built-in Type name. renamed subject and predicate to rdf_subject and rdf_predicate to keep naming consistent with rdf_object Tested to ensure everything still works.

ashleysommer commented 5 years ago

Fixes #12