Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lambdamusic/Ontospy
Python library and command-line interface for inspecting and visualizing RDF models aka ontologies.
https://github.com/lambdamusic/Ontospy
cli documentation ontology owl python rdf visualization
Last synced: 4 days ago
JSON representation
Python library and command-line interface for inspecting and visualizing RDF models aka ontologies.
- Host: GitHub
- URL: https://github.com/lambdamusic/Ontospy
- Owner: lambdamusic
- License: mit
- Created: 2013-03-22T17:56:42.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-03-07T10:38:06.000Z (8 months ago)
- Last Synced: 2024-10-12T15:55:13.995Z (27 days ago)
- Topics: cli, documentation, ontology, owl, python, rdf, visualization
- Language: JavaScript
- Homepage: http://lambdamusic.github.io/Ontospy/
- Size: 23.4 MB
- Stars: 223
- Watchers: 13
- Forks: 52
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - lambdamusic/Ontospy - Python library and command-line interface for inspecting and visualizing RDF models aka ontologies. (JavaScript)
README
# Ontospy
Python library and command-line interface for inspecting and visualizing RDF models.
#### Links
- [Pypi](https://pypi.org/project/ontospy/)
- [Github](https://github.com/lambdamusic/ontospy)
- [Docs](http://lambdamusic.github.io/Ontospy/)
- [Changelog](http://lambdamusic.github.io/Ontospy/pages/changelog.html)
- [YouTube](https://youtu.be/MkKrtVHi_Ks)# Description
Ontospy is a lightweight Python library and command line tool for inspecting and visualizing vocabularies encoded using W3C Semantic Web standards, that is, RDF or any of its dialects (RDFS, OWL, SKOS).
The basic workflow is simple: load a graph by instantiating the `Ontospy` class with a file containing RDFS, OWL or SKOS definitions. You get back a object that lets you interrogate the ontology. That's all!
The same functionalities are accessible also via a command line application. This is an interactive environment (like a repl) that allows to load ontologies from a local repository, interrogate them and cache them so that they can be quickly reloaded for inspection later on.
[![Downloads](https://pepy.tech/badge/ontospy)](https://pepy.tech/project/ontospy)
## Generating ontology documentation
Ontospy can be used to generate HTML documentation for an ontology pretty much out-of-the-box.
See the website [Examples of ontology documentation generated via Ontospy](https://lambdamusic.github.io/ontospy-examples/index.html), or jump straight to the sample [CIDOC-CRM](https://lambdamusic.github.io/ontospy-examples/cidoccrm_ecrm-2022-11owlxml/index.html) or [FOAF](https://lambdamusic.github.io/ontospy-examples/foafrdf/index.html) documentation pages.
> From version 2.0, the documentation generation libraries are installed by default with Ontospy. Previously, third party dependencies (e.g. Django) had to be installed separately.
## Status
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity)
I have little time to spend on this project these days, so I'm mainly focusing on bug fixes and maintenance. Happy to review PRs if you want to add more functionalities!
## Development
```
# git clone the repo first
$ mkvirtualenv ontospy
$ pip install -r requirements.txt
$ pip install -e .
```## Documentation
http://lambdamusic.github.io/Ontospy/