diff --git a/README.md b/README.md index 2055b0c2..c2289671 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,7 @@ ones and finally render and print the last of them in description logics syntax. from owlapy.iri import IRI from owlapy.class_expression import OWLClass, OWLObjectIntersectionOf, OWLObjectSomeValuesFrom from owlapy.owl_property import OWLObjectProperty -from owlapy.converter import owl_expression_to_sparql -from owlapy.render import owl_expression_to_dl +from owlapy import owl_expression_to_sparql, owl_expression_to_dl # Create the male class male = OWLClass("http://example.com/society#male") diff --git a/owlapy/__init__.py b/owlapy/__init__.py index 8ce9b362..6ae0966b 100644 --- a/owlapy/__init__.py +++ b/owlapy/__init__.py @@ -1 +1,4 @@ +from render import owl_expression_to_dl, owl_expression_to_manchester +from parser import dl_to_owl_expression, manchester_to_owl_expression +from converter import owl_expression_to_sparql __version__ = '0.1.3'