Library that allows to perform Knowledge Graph (Linked Open Data) quality analysis.
Project description
KGHeartBeat API
What is KGHeartBeat API
Library that allows you to perform Knowledge Graph (Linked Open Data) quality analysis.
The granularity with which KG quality can be measured is at the metric level, meaning that it is possible to combine the calculation of multiple metrics to obtain KG quality for a dimension. The examples section shows how you can calculate the quality of different dimensions combining together the calculation of different metrics.
For documentation on the library implementation visit here: https://gabrielet0.github.io/KGHeartbeat-API/reference/
For information on which metrics are supported and how they are calculated visit here: https://isislab-unisa.github.io/KGHeartbeat/
Installation
pip install kgheartbeat
Examples
- Calculate the Availability dimension
- Calculate the Licensing dimension
- Calcuate the Versatility dimension
Calculate the Availability dimension
from kgheartbeat import KnowledgeGraph
# Instanziate a KnowledgeGraph class, passing the id of the kg to be analyzed
kg = KnowledgeGraph('dbpedia')
# Check the SPARQL endpoint availability
sparqlAv = kg.checkEndpointAv()
# Check if the links for download the dataset is up
checkDump = kg.checkDownload()
# Check if there are any inactive links
inactiveLks = kg.checkInactiveLinks()
# Calculate the URI's deferenceability (based on 5000 randomly recoverable uri). THIS COULD TAKE TIME, DEPENDS ON THE SPEED OF THE ENDPOINT (~45 min. for DBpedia)
uriDef = kg.getURIsDef()
#Print all the results
print(f"SPARQL endpoint availability: {sparqlAv}\n \
RDF dump link availability: {checkDump}\n\
Any inactive links: {inactiveLks}\n\
URIs deferenceability: {uriDef}")
Calculate the Licensing dimension
from kgheartbeat import KnowledgeGraph
# Instanziate a KnowledgeGraph class, passing the id of the kg to be analyzed
kg = KnowledgeGraph('taxref-ld')
#Search for the machine-redeable license
mr_license = kg.getLicenseMR()
#Search for a human-redeable license
hr_license = kg.getLicenseHR()
print(f"Machine redeable license: {mr_license}\nHuman-redeable license: {hr_license}")
Calcuate the Versatility dimension
# Instanziate a KnowledgeGraph class, passing the id of the kg to be analyzed
kg = KnowledgeGraph('bncf-ns')
#Find the different serialization formats available (e.g. .rdf, .n3, .xml)
formats = kg.getSerializationFormat()
#Get languages if is indicated
languages = kg.getLanguages()
#get all the links to access the KG
link_access = kg.getAccessAtKG()
print(f"Serialization formats: {formats}\nLanguages: {languages}\n Link to access the KG:{link_access}\n")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kgheartbeat-0.2.6.tar.gz.
File metadata
- Download URL: kgheartbeat-0.2.6.tar.gz
- Upload date:
- Size: 14.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
903cdb795fb9c82e136ce4d6a253921edcf4de0d2174f157d001b966a6ea8764
|
|
| MD5 |
f000c3424152b907a59198a1dbb2c2c6
|
|
| BLAKE2b-256 |
1d8f40cf1f90f58ede0d53ab39d81481b19bb2c611c448a86af4f63a1aa91d0e
|
File details
Details for the file kgheartbeat-0.2.6-py3-none-any.whl.
File metadata
- Download URL: kgheartbeat-0.2.6-py3-none-any.whl
- Upload date:
- Size: 15.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
466d4f99db56d52677b6918ee5a5ccf033d4e726d3d8ee3f765aa78dec1a056c
|
|
| MD5 |
4de1daa05db140607e15fd232bd3d4f6
|
|
| BLAKE2b-256 |
4013dcc8f585b93c009095e371215ca0de25eb91cb5fa6f9fe71ddf03c7cc1f7
|