How to download catalog data
This page explains the supported ways to download one KG, one version, or the full catalog from Databus and related sources.
Download the latest version of a KG
First, open the KG profile page (e.g., ORKG) and identify the Databus identifier for the knowledge graph you want to download.
Then, use the following Docker command to download the latest version of the KG. The example below is for ORKG:
docker run --rm \
-v "$(pwd)":/data \
dbpedia/databus-python-client \
download https://databus.dbpedia.link/knowledge-graph-catalog/orkg
Download all versions of a KG
First, open the KG profile page (E.g., ORKG) and identify the Databus identifier for the knowledge graph you want to download.
Then, use the following Docker command to download all versions of the KG. The example below is for ORKG and uses the --all-versions flag:
docker run --rm \
-v "$(pwd)":/data \
dbpedia/databus-python-client \
download --all-versions https://databus.dbpedia.link/knowledge-graph-catalog/orkg
Whole catalog
todo