Skip to content

Commit

Permalink
updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alkidbaci committed Apr 17, 2024
1 parent ca99232 commit a0a5749
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# OWLAPY

OWLAPY is a Python Framework that serves as a base structure for creating and manipulating
OWL Ontologies.

Have a look at the [Documentation](https://dice-group.github.io/owlapy/).

## Installation
<details><summary> Click me! </summary>

Expand Down Expand Up @@ -44,8 +49,6 @@ print(owl_expression_to_dl(teacher_that_hasChild_male))
print(owl_expression_to_sparql("?x", teacher_that_hasChild_male))
# SELECT DISTINCT ?x WHERE { ?x <http://example.com/society#hasChild> ?s_1 . ?s_1 a <http://example.com/society#male> . ?x a <http://example.com/society#teacher> . } }
```
For more, you can check the [API documentation](https://dice-group.github.io/owlapy/autoapi/owlapy/index.html).


Every OWL object that can be used to classify individuals, is considered a class expression and
inherits from [OWLClassExpression](https://dice-group.github.io/owlapy/autoapi/owlapy/class_expression/class_expression/index.html#owlapy.class_expression.class_expression.OWLClassExpression)
Expand Down

0 comments on commit a0a5749

Please sign in to comment.