Metadata-Version: 2.1
Name: kg-qa
Version: 0.1.7
Summary: Library that allows to perform Knowledge Graph (Linked Open Data) quality analysis.
Home-page: https://knowledge-graph-quality-analysis-api.readthedocs.io/
Author: Gabriele Tuozzo, Maria Angela Pellegrino
Author-email: gabrieletuozzo@gmail.com
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# KNOWLEDGE-GRAPH-QUALITY-ANALYSIS-API
Library that allows you to perform Knowledge Graph (Linked Open Data) quality analysis.

### Installation
```
pip install kg-qa
```

### Get started 
How check SPARQL endpoint availability with this library:
```Python
from kg_qa import KnowledgeGraph

# Instanziate a KnowledgeGraph object, passing the id of the kg to be analyzed
kg = KnowledgeGraph('dbpedia')

# Call the check availability enpoint method
result = kg.checkEndpointAv()
```
