blob: ac836ee73a8f4e7d09f2d22b4f2d5a08781d71f7 (
plain)
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
|
.. _plugin_serializers: Plugin serializers
==================
Plugin serializers
==================
These serializers are available in default RDFLib, you can use them by
passing the name to a graph's :meth:`~rdflib.graph.Graph.serialize` method::
print graph.serialize(format='n3')
It is also possible to pass a mime-type for the ``format`` parameter::
graph.serialize(my_url, format='application/rdf+xml')
========== ===============================================================
Name Class
========== ===============================================================
json-ld :class:`~rdflib.plugins.serializers.jsonld.JsonLDSerializer`
n3 :class:`~rdflib.plugins.serializers.n3.N3Serializer`
nquads :class:`~rdflib.plugins.serializers.nquads.NQuadsSerializer`
nt :class:`~rdflib.plugins.serializers.nt.NTSerializer`
hext :class:`~rdflib.plugins.serializers.hext.HextuplesSerializer`
pretty-xml :class:`~rdflib.plugins.serializers.rdfxml.PrettyXMLSerializer`
trig :class:`~rdflib.plugins.serializers.trig.TrigSerializer`
trix :class:`~rdflib.plugins.serializers.trix.TriXSerializer`
turtle :class:`~rdflib.plugins.serializers.turtle.TurtleSerializer`
longturtle :class:`~rdflib.plugins.serializers.longturtle.LongTurtleSerializer`
xml :class:`~rdflib.plugins.serializers.rdfxml.XMLSerializer`
========== ===============================================================
JSON-LD
-------
JSON-LD - 'json-ld' - has been incorprated in rdflib since v6.0.0.
HexTuples
---------
The HexTuples Serializer - 'hext' - uses the HexTuples format defined at https://github.com/ontola/hextuples.
For serialization of non-context-aware data sources, e.g. a single ``Graph``, the 'graph' field (6th variable in the
Hextuple) will be an empty string.
For context-aware (multi-graph) serialization, the 'graph' field of the default graph will be an empty string and
the values for other graphs will be Blank Node IDs or IRIs.
|