Service catalog to RDF library

A small Python library for mapping a service catalog to rdf

Link text

The library contains helper classes for the following cpsv and related classes: - PublicService - PublicOrganization - LegalResource - Rule - Evidence - Event `

The library will map to the Norwegian Application Profile of the DCAT standard.

Installation

To install the servicecatalogtordf package, run this command in your terminal:

$ pip install servicecatalogtordf

Usage

This package can be used like this:

from datacatalogtordf import Catalog
from servicecatalogtordf import PublicOrganization, Service

# Create catalog object
catalog = Catalog()
catalog.identifier = "http://example.com/catalogs/1"
catalog.title = {"en": "A service catalog"}
catalog.publisher = "https://example.com/publishers/1"

# Create a service:
service = Service()
service.identifier = "http://example.com/services/1"
service.title = {"nb": "inntektsAPI", "en": "incomeAPI"}
#
# Create a public organization:
public_organization = PublicOrganization("https://example.com/publishers/1")
# Add it to the service:
service.has_competent_authority = public_organization
#
# Add service to catalog:
catalog.contains_services.append(service)

# Get rdf representation in turtle (default)
rdf = catalog.to_rdf()
print(rdf)