1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
Metadata-Version: 2.1
Name: rdflib-jsonld
Version: 0.6.1
Summary: rdflib extension adding JSON-LD parser and serializer
Home-page: https://github.com/RDFLib/rdflib-jsonld
Maintainer: RDFLib Team
Maintainer-email: rdflib-dev@google.com
License: BSD
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
License-File: LICENSE.md
RDFLib plugin providing JSON-LD parsing and serialization
=========================================================
ARCHIVED
--------
*The 0.6.0 release of this tool is a tombstoning release. As of 2021-07-21, JSON-LD handling capability has been merged into the rdflib core `RDFLib <https://github.com/RDFLib/rdflib>`_ in its 6.0.0 release.*
*Please stop using this plugin as soon as you can and migrate to rdflib >= 6.0.0. We - maintainers - will be much more able to fix/enhance JSON-LD handing in rdflib core!*
*If you are forced to keep using Python <= 3.6, you will need to keep using this plugin with RDFlib 5.0.0.*
----
This is an implementation of `JSON-LD <http://www.w3.org/TR/json-ld/>`_
for `RDFLib <https://github.com/RDFLib/rdflib>`_.
For more information about this technology, see the `JSON-LD website <http://json-ld.org/>`_.
This implementation will:
- read in an JSON-LD formatted document and create an RDF graph
- serialize an RDF graph to JSON-LD formatted output
Installation
------------
The easiest way to install the RDFLib JSON-LD plugin is directly from PyPi using pip by running the command below:
.. code-block:: shell
pip install rdflib-jsonld
Otherwise you can download the source and install it directly by running:
.. code-block:: shell
python setup.py install
Using the plug-in JSONLD serializer/parser with RDFLib
------------------------------------------------------
The plugin parser and serializer are automatically registered if installed by
setuptools.
.. code-block:: python
>>> from rdflib import Graph, plugin
>>> from rdflib.serializer import Serializer
>>> testrdf = """
... @prefix dcterms: <http://purl.org/dc/terms/> .
... <http://example.org/about>
... dcterms:title "Someone's Homepage"@en .
... """
>>> g = Graph().parse(data=testrdf, format='n3')
>>> print(g.serialize(format='json-ld', indent=4))
{
"@id": "http://example.org/about",
"http://purl.org/dc/terms/title": [
{
"@language": "en",
"@value": "Someone's Homepage"
}
]
}
>>> context = {"@vocab": "http://purl.org/dc/terms/", "@language": "en"}
>>> print(g.serialize(format='json-ld', context=context, indent=4))
{
"@context": {
"@language": "en",
"@vocab": "http://purl.org/dc/terms/"
},
"@id": "http://example.org/about",
"title": "Someone's Homepage"
}
|