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 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
% pipx install poetry==1.1.4
% pipx install nox==2020.8.22
% pipx inject nox nox-poetry
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.2.2.tar.gz
(22.2 kB
view details)
Built Distribution
File details
Details for the file datacatalogtordf-1.2.2.tar.gz
.
File metadata
- Download URL: datacatalogtordf-1.2.2.tar.gz
- Upload date:
- Size: 22.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.4.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70ad497eb42554a25231665468a78216c60b192d3814e7881fa3f3979abfc91f |
|
MD5 | da54ec78a5ec15f45f48cede938bcfe4 |
|
BLAKE2b-256 | d28a4dc9c6ed10a3e8b3d2d90194530db5f3d64f77a0081e5051f7d47bce71b9 |
File details
Details for the file datacatalogtordf-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: datacatalogtordf-1.2.2-py3-none-any.whl
- Upload date:
- Size: 29.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.4.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c1b98d9a835e830c74ccfce5836b2bbe5d21d3e928ea312222059186901d13f |
|
MD5 | 06654c7fade3c3ea80ea483bbe69dd2a |
|
BLAKE2b-256 | ac9bc0f79104444f3262ec6a7062f192da0ae2d4aefae69e66ccdb44f51e5f8a |