A library for to transform an openAPI file to a dcat:DataService
Project description
oastodcat
A small Python library to transform an openAPI file to a dcat:DataService
At this moment we support all 3.0.x versions of (The OpenAPI specification)[https://github.com/OAI/OpenAPI-Specification]
Usage
Install
% pip install oastodcat
Getting started
import yaml
import requests
from datacatalogtordf import Catalog
from oastodcat import OASDataService
# 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 dataservice based on an openAPI-specification:
url = ("https://raw.githubusercontent.com/"
"OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml"
)
oas = yaml.safe_load(requests.get(url).text)
dataservice = OASDataService(oas)
dataservice.identifier = "http://example.com/dataservices/1"
dataservice.endpointDescription = url
#
# Add dataservice to catalog:
catalog.services.append(dataservice)
# Get dcat representation in turtle (default)
dcat = catalog.to_rdf()
print(dcat.decode())
Mapping
The following table shows how an openAPI specification is mapped to a dcat:DataService:
(Only dcat:DataService properties are shown.)
dcat:DataService | RDF property | openAPI v 3.0.x |
---|---|---|
endpoint description | dcat:endpointDescription | |
endpoint URL | dcat:endpointURL | servers.url |
serves dataset | n/a | |
access rights | ||
conforms to | ||
contact point | dcat:contactPoint | info.contact |
creator | ||
description | dct:description | info.description |
has policy | ||
identifier | n/a | |
is referenced by | ||
keyword/tag | ||
landing page | dcat:landingPage | externalDocs |
license | dct:license | info.license.url |
resource language | ||
relation | ||
rights | ||
qualified relation | ||
publisher | ||
release date | ||
theme/category | ||
title | dct:title | info.title |
type/genre | ||
update/modification date | ||
qualified attribution | ||
media type | dcat:mediaType | <it's complicated> |
Development
Requirements
Install
% git clone https://github.com/Informasjonsforvaltning/oastodcat.git
% cd oastodcat
% pyenv install 3.8.3
% pyenv install 3.7.7
% pyenv local 3.8.3 3.7.7
% 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
oastodcat-1.0.0.tar.gz
(9.0 kB
view details)
Built Distribution
File details
Details for the file oastodcat-1.0.0.tar.gz
.
File metadata
- Download URL: oastodcat-1.0.0.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.5 Linux/5.3.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf015935fb77b1b86ea47be92fd15f264b0c9620de98275efd7054011b2e85fa |
|
MD5 | 944d7874ffa15905a2323e200c829f59 |
|
BLAKE2b-256 | 11aadbab8b5c39b5574a0d2d459c22161de4c2700b28cd17855de753d347d120 |
File details
Details for the file oastodcat-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: oastodcat-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.5 Linux/5.3.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d7faf2bea5c5844dc30af56cde143c4b7ae4288a9c67885caf4b3d68c19d00d |
|
MD5 | 95ba96ff1ba297a3244a50df19c5c776 |
|
BLAKE2b-256 | afa008f143bde2115dbc2729fa2780c243f0746974f13394f4ef7b0562e8e876 |