Skip to main content

PyRDB2RDF

Project description

PyRDB2RDF provides RDFLib with an interface to relational databases as RDF stores, accessed via SQLAlchemy, and mapped to RDF according to the specifications of RDB2RDF.

Translating from relational data to RDF via direct mapping is currently supported. Translating in the other direction and mapping via R2RML are planned but not yet supported.

Installation

pip install rdb2rdf

Examples

Serializing a database as N-Triples

Suppose the local PostgreSQL database test_dm contains data that we want to translate to RDF and serialize as N-Triples. The following code achieves that.

import rdflib as _rdf
import sqlalchemy as _sqla

dm_db = _sqla.create_engine('postgresql://test:test@localhost/test_dm')
dm_graph = _rdf.Graph('rdb2rdf_dm')
dm_graph.open(dm_db)

print(dm_graph.serialize(format='nt'))

Changelog

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rdb2rdf-0.1.0.tar.gz (28.8 kB view hashes)

Uploaded Source

Built Distributions

rdb2rdf-0.1.0-py2.7.egg (16.3 kB view hashes)

Uploaded Source

rdb2rdf-0.1.0-py2-none-any.whl (20.9 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page