A project to host Turtle (.ttl) RDF vocabularies for describing tools in the
European Open Science Cloud (EOSC) ecosystem, published via
GitHub Pages.
| Vocabulary | Namespace | Download |
|---|---|---|
| ToolMeta Core | https://eosc-data-commons.github.io/toolmeta-vocab/ |
toolmeta.ttl |
pip install rdflib
python -c "
from rdflib import Graph
g = Graph()
g.parse('vocab/toolmeta.ttl', format='turtle')
print(len(g), 'triples loaded successfully')
"