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:>
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.
Help on function json2rdf in module json2rdf.json2rdf:
json2rdf(
data: str | dict,
*,
sort=True,
subject_id_keys=('id',),
deanon: bool = False,
object_id_keys={'idref', 'refid'},
id_prefix=('id', 'urn:example:id:'),
key_prefix=('prefix', 'urn:example:prefix:')
)
sort: the triples
subject_keys: set of keys to create a uri out of in for the *subject*.
the first key will be used to create a predicate if one does not exist.
example: {"id": 1, "key":"abc" } ->
prefix:1 prefix:key "abc".
prefix:1 prefix:id prefix:1.
example: case when no id key in data or no id key is set: {"key: "abc"} ->
prefix:generated prefix:key "abc".
prefix:generated prefix:id prefix:generated.
object_keys: set of keys to interpret as a uri out of as an *object*.
example: {"id": 1, "refid": 2,} ->
prefix:1 prefix:refid prefix:2.
deanon: can be set to True to use id_prefix when no id key is present.
otherwise, a blank/anon node will be used.
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.
deanon=True can be passed as an argument
which will use id_prefix instead of a blank node.
While reading of the rdf will be deterministic,
the conversion cannot be considered so.
Nulls are preserved as it would be the 'least surprising' behviour.
Features
none. zilch. nada.
Development Philosophy
- KISS: It should only address converting (given) JSON to RDF. Therefore, the code is expected to be feature complete (without need for adding more 'features').
- 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-86.tar.gz.
File metadata
- Download URL: json2rdf-86.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
305ca771ffc81de0010ed63572da5955d8e726e6d235b350f42ddd385f621d46
|
|
| MD5 |
7fa376916f7880c8989888fee737fafb
|
|
| BLAKE2b-256 |
b032d96f4ed4c0fc85cbd6dff0d98fa8058569e029b2f0bb22c87a7cd23c08e2
|
Provenance
The following attestation bundles were made for json2rdf-86.tar.gz:
Publisher:
python-publish.yml on pnnl/json2rdf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
json2rdf-86.tar.gz -
Subject digest:
305ca771ffc81de0010ed63572da5955d8e726e6d235b350f42ddd385f621d46 - Sigstore transparency entry: 1736455607
- Sigstore integration time:
-
Permalink:
pnnl/json2rdf@b6622ea945d9ac56de9d6b9f1640287546b457c3 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/pnnl
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@b6622ea945d9ac56de9d6b9f1640287546b457c3 -
Trigger Event:
push
-
Statement type:
File details
Details for the file json2rdf-86-py3-none-any.whl.
File metadata
- Download URL: json2rdf-86-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba7161f1f2f83147092d840bfd8ddc8c6beb84b643a1ce12bc7ed80158fd05a1
|
|
| MD5 |
a5d291adea3c289186125cae8aa2c663
|
|
| BLAKE2b-256 |
b7b691a252278e6698de160de486b65f8ebebba24ea291bb891d4a568da8ca8f
|
Provenance
The following attestation bundles were made for json2rdf-86-py3-none-any.whl:
Publisher:
python-publish.yml on pnnl/json2rdf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
json2rdf-86-py3-none-any.whl -
Subject digest:
ba7161f1f2f83147092d840bfd8ddc8c6beb84b643a1ce12bc7ed80158fd05a1 - Sigstore transparency entry: 1736455878
- Sigstore integration time:
-
Permalink:
pnnl/json2rdf@b6622ea945d9ac56de9d6b9f1640287546b457c3 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/pnnl
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@b6622ea945d9ac56de9d6b9f1640287546b457c3 -
Trigger Event:
push
-
Statement type: