Skip to main content

Translate JSON to RDF

Project description

JSON2RDF

Converts JSON to RDF

>>> from json2rdf.json2rdf import j2r
>>> j = {'id':0, 'list': [1,2,3], 'nesting': {'id':1, 'property': 'abc' }}
>>> print(j2r(j))
prefix rdf:                   <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix id:      <urn:example:id:>
prefix prefix:     <urn:example:prefix:>
prefix meta:    <urn:example:meta:>

id:0 prefix:id 0.
id:0 prefix:list _:2432178001088.
id:0 prefix:nesting id:1.
id:1 prefix:id 1.
id:1 prefix:property "abc".
_:2432178001088 rdf:_0 1.
_:2432178001088 rdf:_1 2.
_:2432178001088 rdf:_2 3.

Why?

Motivation: This was developed as part of BIM2RDF where the main implementation language is Python and the data sizes from Speckle are not small.

How?

Traversing the (nested) JSON, a conversion is applied to 'expand' data containers, lists and mappings, as triples.

Behavior

is 'entity-driven': data containers must have identifiers. When no identifier is given, an anoymous/blank node is used. This is close to the 'spirit' of the semantic web.

However, this makes the conversion non-deterministic. Reprecussions must be handled by the user.

TODO: list vs arrays.

Features

Optional:

  • 'meta triples' as RDF-star: <<{data triple}>> {meta} <<{meta triple}>>
  • Numerical Arrays: Numerical lists can be represented as numpy-encoded strings. (This was motivated by the storage of geometry data from 3D design programs).

Development Philosophy

  • KISS: It should only address converting (given) JSON to RDF. Converting array data (above) is a special case.
  • Minimal dependencies: follows from above. Zero dependencies is possible and ideal. (This would make it easier for a compiled Python version to be created for more performance.)
  • List representation shall not be a linked list.

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

json2rdf-34.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

json2rdf-34-py2.py3-none-any.whl (7.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file json2rdf-34.tar.gz.

File metadata

  • Download URL: json2rdf-34.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.8

File hashes

Hashes for json2rdf-34.tar.gz
Algorithm Hash digest
SHA256 d82b217965f75e891491930ff1b43782bb73b3764e66b81f06c9c49c93ec9558
MD5 e13c4e6cb9e7e9e799cec422d724d16c
BLAKE2b-256 b4c846ba3e4b59971226b2c6bc656e821d8324784fb8507e4066f31dc22e86fe

See more details on using hashes here.

File details

Details for the file json2rdf-34-py2.py3-none-any.whl.

File metadata

  • Download URL: json2rdf-34-py2.py3-none-any.whl
  • Upload date:
  • Size: 7.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.8

File hashes

Hashes for json2rdf-34-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 142d276f6c43cf9f2be45d1292e411479c2b3961bb925b9bb4aab65be612a2e1
MD5 cfbcaf959449da58dd322db7a3676a70
BLAKE2b-256 18397efadb319a0ede34ca35720b8820dc314ceb5d1196bd2a66b927e663163d

See more details on using hashes here.

Supported by

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