A library for mapping a data catalog to rdf
Project description
datacatalogtordf
A small Python library for mapping a data catalog to rdf
The library contains helper classes for the following dcat classes:
Other relevant classes are also supported, such as:
- Contact vcard:Kind
The library will map to the Norwegian Application Profile of the DCAT standard.
Usage
Install
% pip install datacatalogtordf
Getting started
from datacatalogtordf.catalog import Catalog, Dataset
# Create catalog object
catalog = Catalog()
catalog.identifier = "http://example.com/catalogs/1"
catalog.title = {"en": "A dataset catalog"}
catalog.publisher = "https://example.com/publishers/1"
# Create a dataset:
dataset = Dataset()
dataset.identifier = "http://example.com/datasets/1"
dataset.title = {"nb": "inntektsAPI", "en": "incomeAPI"}
#
# Add dataset to catalog:
catalog.datasets.append(dataset)
# get rdf representation in turtle (default)
rdf = catalog.to_rdf()
print(rdf.decode())
Development
Requirements
Install
% git clone https://github.com/Informasjonsforvaltning/datacatalogtordf.git
% cd datacatalogtordf
% pyenv install 3.8.2
% pyenv install 3.7.6
% pyenv local 3.8.2 3.7.6
% poetry install
Run all sessions
% nox
Run all tests with coverage reporting
% nox -rs tests
Debugging
You can enter into Pdb by passing --pdb
to pytest:
nox -rs tests -- --pdb
You can set breakpoints directly in code by using the function breakpoint()
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
datacatalogtordf-1.0.2.tar.gz
(21.0 kB
view details)
Built Distribution
File details
Details for the file datacatalogtordf-1.0.2.tar.gz
.
File metadata
- Download URL: datacatalogtordf-1.0.2.tar.gz
- Upload date:
- Size: 21.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.2 Linux/5.3.0-1020-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b63ed44794f59b6b872396223a0a7c986c0e8691dc20b99477a34a44b097500 |
|
MD5 | 1a56b681c1f2830e1a830be40ba3be75 |
|
BLAKE2b-256 | 418a18782e8eda41cc6c841022a34e5e02ee045d4e9408aa9ead67dbe3980995 |
File details
Details for the file datacatalogtordf-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: datacatalogtordf-1.0.2-py3-none-any.whl
- Upload date:
- Size: 27.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.2 Linux/5.3.0-1020-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ae3d0894c0aa1fc6de2fcf75ac2caa7cb9a4fdc2f4e86d2ae11944d0dbd3a5d |
|
MD5 | 846c5bbe6e1d9978367904d310b017a5 |
|
BLAKE2b-256 | 799eff03bced77102483f65e9b57cf64e59e2b0fc8b30711b0c71ada02d2e0ec |