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.
- Prior implementation is in java.
- Don't want to use JSON-LD (mentioned in above documentation ). Furthermore, the Python JSON-LD implementation was found to be too slow.
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
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file json2rdf-38.tar.gz.
File metadata
- Download URL: json2rdf-38.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf051affdf971dd7bd29aed148f36843b9a1822e37c57abaefb88d37264dffac
|
|
| MD5 |
f94f4fd0723dd9afc312246e242126d0
|
|
| BLAKE2b-256 |
2be4be7beda14bca2ee2c93fce9a4ce559e7fa5e7660dfef88ece177f69736b2
|
File details
Details for the file json2rdf-38-py2.py3-none-any.whl.
File metadata
- Download URL: json2rdf-38-py2.py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
851ad3cd96488057553b569bab1cf782dc26f512f4d48323fffc7e13ebca3021
|
|
| MD5 |
43ff675e4c5551aff239384dcd914716
|
|
| BLAKE2b-256 |
f636e65d0fa95649a5a30c799ead3af75cd1abec86d1f769c5607566a72d0b74
|