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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
|
.. image:: docs/source/SPARQLWrapper-250.png
=======================================
SPARQL Endpoint interface to Python
=======================================
|Build Status| |PyPi version|
* About_
* `Installation & Distribution`_
* `How to use`_
* `SPARQL Endpoint Implementations`_
* `Development`_
About
=====
**SPARQLWrapper** is a simple Python wrapper around a `SPARQL <https://www.w3.org/TR/sparql11-overview/>`_ service to
remotely execute your queries. It helps by creating the query
invocation and, optionally, converting the result into a more manageable
format.
Installation & Distribution
===========================
You can install SPARQLWrapper from PyPI::
$ pip install sparqlwrapper
You can install SPARQLWrapper from GitHub::
$ pip install git+https://github.com/rdflib/sparqlwrapper#egg=sparqlwrapper
You can install SPARQLWrapper from Debian::
$ sudo apt-get install python-sparqlwrapper
.. note::
Be aware that there could be a gap between the latest version of SPARQLWrapper
and the version available as Debian package.
Also, the source code of the package can be downloaded
in ``.zip`` and ``.tar.gz`` formats from `GitHub SPARQLWrapper releases <https://github.com/RDFLib/sparqlwrapper/releases>`_.
Documentation is included in the distribution.
How to use
==========
You can use SPARQLWrapper either as a Python command line script or as a Python package.
Command Line Script
-------------------
To use as a command line script, you will need to install SPARQLWrapper and then
a command line script called ``rqw`` (spaRQl Wrapper) will be available within the
Python environment into which it is installed. run ``$ rql -h`` to see all the
script's options.
Python package
--------------
Here are a series of examples of different queries executed via SPARQLWrapper
as a python package.
SELECT examples
^^^^^^^^^^^^^^^
Simple use of this module is as follows where a live SPARQL endpoint is given and the JSON return format is used:
.. code-block:: python
from SPARQLWrapper import SPARQLWrapper, JSON
sparql = SPARQLWrapper(
"http://vocabs.ardc.edu.au/repository/api/sparql/"
"csiro_international-chronostratigraphic-chart_geologic-time-scale-2020"
)
sparql.setReturnFormat(JSON)
# gets the first 3 geological ages
# from a Geological Timescale database,
# via a SPARQL endpoint
sparql.setQuery("""
PREFIX gts: <http://resource.geosciml.org/ontology/timescale/gts#>
SELECT *
WHERE {
?a a gts:Age .
}
ORDER BY ?a
LIMIT 3
"""
)
try:
ret = sparql.queryAndConvert()
for r in ret["results"]["bindings"]:
print(r)
except Exception as e:
print(e)
This should print out something like this::
{'a': {'type': 'uri', 'value': 'http://resource.geosciml.org/classifier/ics/ischart/Aalenian'}}
{'a': {'type': 'uri', 'value': 'http://resource.geosciml.org/classifier/ics/ischart/Aeronian'}}
{'a': {'type': 'uri', 'value': 'http://resource.geosciml.org/classifier/ics/ischart/Albian'}}
The above result is the response from the given endpoint, retrieved in JSON, and converted to a
Python object, ``ret``, which is then iterated over and printed.
ASK example
^^^^^^^^^^^
This query gets a boolean response from DBPedia's SPARQL endpoint:
.. code-block:: python
from SPARQLWrapper import SPARQLWrapper, XML
sparql = SPARQLWrapper("http://dbpedia.org/sparql")
sparql.setQuery("""
ASK WHERE {
<http://dbpedia.org/resource/Asturias> rdfs:label "Asturias"@es
}
""")
sparql.setReturnFormat(XML)
results = sparql.query().convert()
print(results.toxml())
You should see something like:
.. code-block::
<?xml version="1.0" ?>
<sparql
xmlns="http://www.w3.org/2005/sparql-results#"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/sw/DataAccess/rf1/result2.xsd">
<head/>
<boolean>true</boolean>
</sparql>
CONSTRUCT example
^^^^^^^^^^^^^^^^^
CONSTRUCT queries return RDF, so ``queryAndConvert()`` here produces an
RDFlib ``Graph`` object which is then serialized to the Turtle format
for printing:
.. code-block:: python
from SPARQLWrapper import SPARQLWrapper
sparql = SPARQLWrapper("http://dbpedia.org/sparql")
sparql.setQuery("""
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX sdo: <https://schema.org/>
CONSTRUCT {
?lang a sdo:Language ;
sdo:alternateName ?iso6391Code .
}
WHERE {
?lang a dbo:Language ;
dbo:iso6391Code ?iso6391Code .
FILTER (STRLEN(?iso6391Code)=2) # to filter out non-valid values
}
LIMIT 3
""")
results = sparql.queryAndConvert()
print(results.serialize())
Results from this query should look something like this:
.. code-block::
@prefix schema: <https://schema.org/> .
<http://dbpedia.org/resource/Arabic> a schema:Language ;
schema:alternateName "ar" .
<http://dbpedia.org/resource/Aragonese_language> a schema:Language ;
schema:alternateName "an" .
<http://dbpedia.org/resource/Uruguayan_Spanish> a schema:Language ;
schema:alternateName "es" .
DESCRIBE example
^^^^^^^^^^^^^^^^
Like CONSTRUCT queries, DESCRIBE queries also produce RDF results, so this
example produces an RDFlib ``Graph`` object which is then serialized into
the JSON-LD format and printed:
.. code-block:: python
from SPARQLWrapper import SPARQLWrapper
sparql = SPARQLWrapper("http://dbpedia.org/sparql")
sparql.setQuery("DESCRIBE <http://dbpedia.org/resource/Asturias>")
results = sparql.queryAndConvert()
print(results.serialize(format="json-ld"))
The result for this example is large but starts something like this:
.. code-block::
[
{
"@id": "http://dbpedia.org/resource/Mazonovo",
"http://dbpedia.org/ontology/subdivision": [
{
"@id": "http://dbpedia.org/resource/Asturias"
}
],
...
SPARQL UPDATE example
^^^^^^^^^^^^^^^^^^^^^
UPDATE queries write changes to a SPARQL endpoint, so we can't easily show
a working example here. However, if ``https://example.org/sparql`` really
was a working SPARQL endpoint that allowed updates, the following code
might work:
.. code-block:: python
from SPARQLWrapper import SPARQLWrapper, POST, DIGEST
sparql = SPARQLWrapper("https://example.org/sparql")
sparql.setHTTPAuth(DIGEST)
sparql.setCredentials("some-login", "some-password")
sparql.setMethod(POST)
sparql.setQuery("""
PREFIX dbp: <http://dbpedia.org/resource/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
WITH <http://example.graph>
DELETE {
dbo:Asturias rdfs:label "Asturies"@ast
}
"""
)
results = sparql.query()
print results.response.read()
If the above code really worked, it would delete the triple
``dbo:Asturias rdfs:label "Asturies"@ast`` from the graph
``http://example.graph``.
SPARQLWrapper2 example
^^^^^^^^^^^^^^^^^^^^^^
There is also a ``SPARQLWrapper2`` class that works with JSON SELECT
results only and wraps the results to make processing of average queries
even simpler.
.. code-block:: python
from SPARQLWrapper import SPARQLWrapper2
sparql = SPARQLWrapper2("http://dbpedia.org/sparql")
sparql.setQuery("""
PREFIX dbp: <http://dbpedia.org/resource/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
WHERE {
dbp:Asturias rdfs:label ?label
}
LIMIT 3
"""
)
for result in sparql.query().bindings:
print(f"{result['label'].lang}, {result['label'].value}")
The above should print out something like:
.. code-block::
en, Asturias
ar, أشتورية
ca, Astúries
Return formats
--------------
The expected return formats differs per query type (``SELECT``, ``ASK``, ``CONSTRUCT``, ``DESCRIBE``...).
.. note:: From the `SPARQL specification <https://www.w3.org/TR/sparql11-protocol/#query-success>`_,
*The response body of a successful query operation with a 2XX response is either:*
* ``SELECT`` and ``ASK``: a SPARQL Results Document in XML, JSON, or CSV/TSV format.
* ``DESCRIBE`` and ``CONSTRUCT``: an RDF graph serialized, for example, in the RDF/XML syntax, or an equivalent RDF graph serialization.
The package, though it does not contain a full SPARQL parser, makes an attempt to determine the query type
when the query is set. This should work in most of the cases, but there is a possibility to set this manually, in case something
goes wrong.
Automatic conversion of the results
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
To make processing somewhat easier, the package can do some conversions automatically from the return result. These are:
* for XML, the `xml.dom.minidom <http://docs.python.org/library/xml.dom.minidom.html>`_ is used to convert the result stream into a ``Python representation of a DOM tree``.
* for JSON, the `json <https://docs.python.org/library/json.html>`_ package to generate a ``Python dictionary``.
* for CSV or TSV, a simple ``string``.
* For RDF/XML and JSON-LD, the `RDFLib <https://rdflib.readthedocs.io>`_ package is used to convert the result into a ``Graph`` instance.
* For RDF Turtle/N3, a simple ``string``.
There are two ways to generate this conversion:
* use ``ret.convert()`` in the return result from ``sparql.query()`` in the code above
* use ``sparql.queryAndConvert()`` to get the converted result right away, if the intermediate stream is not used
For example, in the code below:
.. code-block:: python
try :
sparql.setReturnFormat(SPARQLWrapper.JSON)
ret = sparql.query()
d = ret.convert()
except Exception as e:
print(e)
the value of ``d`` is a Python dictionary of the query result, based on the `SPARQL Query Results JSON Format <http://www.w3.org/TR/rdf-sparql-json-res/>`_.
Partial interpretation of the results
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Further help is to offer an extra, partial interpretation of the results, again to cover
most of the practical use cases.
Based on the `SPARQL Query Results JSON Format <http://www.w3.org/TR/rdf-sparql-json-res/>`_, the :class:`SPARQLWrapper.SmartWrapper.Bindings` class
can perform some simple steps in decoding the JSON return results. If :class:`SPARQLWrapper.SmartWrapper.SPARQLWrapper2`
is used instead of :class:`SPARQLWrapper.Wrapper.SPARQLWrapper`, this result format is generated. Note that this relies on a JSON format only,
ie, it has to be checked whether the SPARQL service can return JSON or not.
Here is a simple code that makes use of this feature:
.. code-block:: python
from SPARQLWrapper import SPARQLWrapper2
sparql = SPARQLWrapper2("http://example.org/sparql")
sparql.setQuery("""
SELECT ?subj ?prop
WHERE {
?subj ?prop ?obj
}
"""
)
try:
ret = sparql.query()
print(ret.variables) # this is an array consisting of "subj" and "prop"
for binding in ret.bindings:
# each binding is a dictionary. Let us just print the results
print(f"{binding['subj'].value}, {binding['subj'].type}")
print(f"{binding['prop'].value}, {binding['prop'].type}")
except Exception as e:
print(e)
To make this type of code even easier to realize, the ``[]`` and ``in`` operators are also implemented
on the result of :class:`SPARQLWrapper.SmartWrapper.Bindings`. This can be used to check and find a particular binding (ie, particular row
in the return value). This features becomes particularly useful when the ``OPTIONAL`` feature of SPARQL is used. For example:
.. code-block:: python
from SPARQLWrapper import SPARQLWrapper2
sparql = SPARQLWrapper2("http://example.org/sparql")
sparql.setQuery("""
SELECT ?subj ?obj ?opt
WHERE {
?subj <http://a.b.c> ?obj .
OPTIONAL {
?subj <http://d.e.f> ?opt
}
}
"""
)
try:
ret = sparql.query()
print(ret.variables) # this is an array consisting of "subj", "obj", "opt"
if ("subj", "prop", "opt") in ret:
# there is at least one binding covering the optional "opt", too
bindings = ret["subj", "obj", "opt"]
# bindings is an array of dictionaries with the full bindings
for b in bindings:
subj = b["subj"].value
o = b["obj"].value
opt = b["opt"].value
# do something nice with subj, o, and opt
# another way of accessing to values for a single variable:
# take all the bindings of the "subj"
subjbind = ret.getValues("subj") # an array of Value instances
...
except Exception as e:
print(e)
GET or POST
^^^^^^^^^^^
By default, all SPARQL services are invoked using HTTP **GET** verb. However,
**POST** might be useful if the size of the query
extends a reasonable size; this can be set in the query instance.
Note that some combinations may not work yet with all SPARQL processors
(e.g., there are implementations where **POST + JSON return** does not work).
Hopefully, this problem will eventually disappear.
SPARQL Endpoint Implementations
===============================
Introduction
------------
From `SPARQL 1.1 Specification <https://www.w3.org/TR/sparql11-protocol/#query-success>`_:
The response body of a successful query operation with a 2XX response is either:
- `SELECT` and `ASK`: a SPARQL Results Document in XML, JSON, or CSV/TSV format.
- `DESCRIBE` and `CONSTRUCT`: an **RDF graph serialized**, for example, in the RDF/XML syntax, or an equivalent RDF graph serialization.
The fact is that the **parameter key** for the choice of the **output format** is not defined.
Virtuoso uses `format`, Fuseki uses `output`, rasqual seems to use `results`, etc...
Also, in some cases HTTP Content Negotiation can/must be used.
ClioPatria
----------
:Website: `The SWI-Prolog Semantic Web Server <http://cliopatria.swi-prolog.org/home>`_
:Documentation: Search 'sparql' in `<http://cliopatria.swi-prolog.org/help/http>`_.
:Uses: Parameters **and** Content Negotiation.
:Parameter key: ``format``.
:Parameter value: MUST be one of these values: ``rdf+xml``, ``json``, ``csv``, ``application/sparql-results+xml`` or ``application/sparql-results+json``.
OpenLink Virtuoso
-----------------
:Website: `OpenLink Virtuoso <http://virtuoso.openlinksw.com>`_
:Parameter key: ``format`` or ``output``.
:JSON-LD (application/ld+json): supported (in CONSTRUCT and DESCRIBE).
- Parameter value, like directly: "text/html" (HTML), "text/x-html+tr" (HTML (Faceted Browsing Links)), "application/vnd.ms-excel",
"application/sparql-results+xml" (XML), "application/sparql-results+json" (JSON), "application/javascript" (Javascript), "text/turtle" (Turtle), "application/rdf+xml" (RDF/XML),
"text/plain" (N-Triples), "text/csv" (CSV), "text/tab-separated-values" (TSV)
- Parameter value, like indirectly:
"HTML" (alias text/html), "JSON" (alias application/sparql-results+json), "XML" (alias application/sparql-results+xml), "TURTLE" (alias text/rdf+n3), JavaScript (alias application/javascript)
See `<http://virtuoso.openlinksw.com/dataspace/doc/dav/wiki/Main/VOSSparqlProtocol#Additional HTTP Response Formats -- SELECT>`_
- For a ``SELECT`` query type, the default return mimetype (if ``Accept: */*`` is sent) is ``application/sparql-results+xml``
- For a ``ASK`` query type, the default return mimetype (if ``Accept: */*`` is sent) is ``text/html``
- For a ``CONSTRUCT`` query type, the default return mimetype (if ``Accept: */*`` is sent) is ``text/turtle``
- For a ``DESCRIBE`` query type, the default return mimetype (if ``Accept: */*`` is sent) is ``text/turtle``
Fuseki
------
:Website: `Fuseki <https://jena.apache.org/documentation/fuseki2/>`_
:Uses: Parameters **and** Content Negotiation.
:Parameter key: ``format`` or ``output`` (`Fuseki 1 <https://github.com/apache/jena/blob/master/jena-fuseki1/src/main/java/org/apache/jena/fuseki/HttpNames.java>`_, `Fuseki 2 <https://github.com/apache/jena/blob/master/jena-arq/src/main/java/org/apache/jena/riot/web/HttpNames.java>`_).
:JSON-LD (application/ld+json): supported (in CONSTRUCT and DESCRIBE).
- `Fuseki 1 - Short names for "output=" : "json", "xml", "sparql", "text", "csv", "tsv", "thrift" <https://github.com/apache/jena/blob/master/jena-fuseki1/src/main/java/org/apache/jena/fuseki/servlets/ResponseResultSet.java>`_
- `Fuseki 2 - Short names for "output=" : "json", "xml", "sparql", "text", "csv", "tsv", "thrift" <https://github.com/apache/jena/blob/master/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/ResponseResultSet.java>`_
- If a non-expected short name is used, the server returns an "Error 400: Can't determine output serialization"
- Valid alias for SELECT and ASK: "json", "xml", csv", "tsv"
- Valid alias for DESCRIBE and CONSTRUCT: "json" (alias for json-ld ONLY in Fuseki 2), "xml"
- Valid mimetype for DESCRIBE and CONSTRUCT: "application/ld+json"
- Default return mimetypes: For a SELECT and ASK query types, the default return mimetype (if Accept: */* is sent) is application/sparql-results+json
- Default return mimetypes: For a DESCRIBE and CONTRUCT query types, the default return mimetype (if Accept: */* is sent) is text/turtle
- In case of a bad formed query, Fuseki 1 returns 200 instead of 400.
Eclipse RDF4J
-------------
:Website: `Eclipse RDF4J (formerly known as OpenRDF Sesame) <http://rdf4j.org/>`_
:Documentation: `<https://rdf4j.eclipse.org/documentation/rest-api/#the-query-operation>`_, `<https://rdf4j.eclipse.org/documentation/rest-api/#content-types>`_
:Uses: Only content negotiation (no URL parameters).
:Parameter: If an unexpected parameter is used, the server ignores it.
:JSON-LD (application/ld+json): supported (in CONSTRUCT and DESCRIBE).
- SELECT
- ``application/sparql-results+xml`` (DEFAULT if ``Accept: */*`` is sent))
- ``application/sparql-results+json`` (also ``application/json``)
- ``text/csv``
- ``text/tab-separated-values``
- Other values: ``application/x-binary-rdf-results-table``
- ASK
- ``application/sparql-results+xml`` (DEFAULT if ``Accept: */*`` is sent))
- ``application/sparql-results+json``
- Other values: ``text/boolean``
- **Not supported**: ``text/csv``
- **Not supported**: ``text/tab-separated-values``
- CONSTRUCT
- ``application/rdf+xml``
- ``application/n-triples`` (DEFAULT if ``Accept: */*`` is sent)
- ``text/turtle``
- ``text/n3``
- ``application/ld+json``
- Other acceptable values: ``application/n-quads``, ``application/rdf+json``, ``application/trig``, ``application/trix``, ``application/x-binary-rdf``
- ``text/plain`` (returns ``application/n-triples``)
- ``text/rdf+n3`` (returns ``text/n3``)
- ``text/x-nquads`` (returns ``application/n-quads``)
- DESCRIBE
- ``application/rdf+xml``
- ``application/n-triples`` (DEFAULT if ``Accept: */*`` is sent)
- ``text/turtle``
- ``text/n3``
- ``application/ld+json``
- Other acceptable values: ``application/n-quads``, ``application/rdf+json``, ``application/trig``, ``application/trix``, ``application/x-binary-rdf``
- ``text/plain`` (returns ``application/n-triples``)
- ``text/rdf+n3`` (returns ``text/n3``)
- ``text/x-nquads`` (returns ``application/n-quads``)
RASQAL
------
:Website: `RASQAL <http://librdf.org/rasqal/>`_
:Documentation: `<http://librdf.org/rasqal/roqet.html>`_
:Parameter key: ``results``.
:JSON-LD (application/ld+json): NOT supported.
Uses roqet as RDF query utility (see `<http://librdf.org/rasqal/roqet.html>`_)
For variable bindings, the values of FORMAT vary upon what Rasqal supports but include simple
for a simple text format (default), xml for the SPARQL Query Results XML format, csv for SPARQL CSV,
tsv for SPARQL TSV, rdfxml and turtle for RDF syntax formats, and json for a JSON version of the results.
For RDF graph results, the values of FORMAT are ntriples (N-Triples, default),
rdfxml-abbrev (RDF/XML Abbreviated), rdfxml (RDF/XML), turtle (Turtle),
json (RDF/JSON resource centric), json-triples (RDF/JSON triples) or
rss-1.0 (RSS 1.0, also an RDF/XML syntax).
Marklogic
---------
:Website: `Marklogic <http://marklogic.com>`_
:Uses: Only content negotiation (no URL parameters).
:JSON-LD (application/ld+json): NOT supported.
`You can use following methods to query triples <https://docs.marklogic.com/guide/semantics/semantic-searches#chapter>`_:
- SPARQL mode in Query Console. For details, see Querying Triples with SPARQL
- XQuery using the semantics functions, and Search API, or a combination of XQuery and SPARQL. For details, see Querying Triples with XQuery or JavaScript.
- HTTP via a SPARQL endpoint. For details, see Using Semantics with the REST Client API.
`Formats are specified as part of the HTTP Accept headers of the REST request. <https://docs.marklogic.com/guide/semantics/REST#id_92428>`_
When you query the SPARQL endpoint with REST Client APIs, you can specify the result output format (See `<https://docs.marklogic.com/guide/semantics/REST#id_54258>`_. The response type format depends on the type of query and the MIME type in the HTTP Accept header.
This table describes the MIME types and Accept Header/Output formats (MIME type) for different types of SPARQL queries. (See `<https://docs.marklogic.com/guide/semantics/REST#id_54258>`_ and `<https://docs.marklogic.com/guide/semantics/loading#id_70682>`_)
- SELECT
- application/sparql-results+xml
- application/sparql-results+json
- text/html
- text/csv
- ASK queries return a boolean (true or false).
- CONSTRUCT or DESCRIBE
- application/n-triples
- application/rdf+json
- application/rdf+xml
- text/turtle
- text/n3
- application/n-quads
- application/trig
AllegroGraph
------------
:Website: `AllegroGraph <https://franz.com/agraph/allegrograph/>`_
:Documentation: `<https://franz.com/agraph/support/documentation/current/http-protocol.html>`_
:Uses: Only content negotiation (no URL parameters).
:Parameter: The server always looks at the Accept header of a request, and tries to
generate a response in the format that the client asks for. If this fails,
a 406 response is returned. When no Accept, or an Accept of */* is specified,
the server prefers text/plain, in order to make it easy to explore the interface from a web browser.
:JSON-LD (application/ld+json): NOT supported.
- SELECT
- application/sparql-results+xml (DEFAULT if Accept: */* is sent)
- application/sparql-results+json (and application/json)
- text/csv
- text/tab-separated-values
- OTHERS: application/sparql-results+ttl, text/integer, application/x-lisp-structured-expression, text/table, application/processed-csv, text/simple-csv, application/x-direct-upis
- ASK
- application/sparql-results+xml (DEFAULT if Accept: */* is sent)
- application/sparql-results+json (and application/json)
- Not supported: text/csv
- Not supported: text/tab-separated-values
- CONSTRUCT
- application/rdf+xml (DEFAULT if Accept: */* is sent)
- text/rdf+n3
- OTHERS: text/integer, application/json, text/plain, text/x-nquads, application/trix, text/table, application/x-direct-upis
- DESCRIBE
- application/rdf+xml (DEFAULT if Accept: */* is sent)
- text/rdf+n3
4store
------
:Website: `4store <https://github.com/4store/4store>`_
:Documentation: `<https://4store.danielknoell.de/trac/wiki/SparqlServer/>`_
:Uses: Parameters **and** Content Negotiation.
:Parameter key: ``output``.
:Parameter value: alias. If an unexpected alias is used, the server is not working properly.
:JSON-LD (application/ld+json): NOT supported.
- SELECT
- application/sparql-results+xml (alias xml) (DEFAULT if Accept: */* is sent))
- application/sparql-results+json or application/json (alias json)
- text/csv (alias csv)
- text/tab-separated-values (alias tsv). Returns "text/plain" in GET.
- Other values: text/plain, application/n-triples
- ASK
- application/sparql-results+xml (alias xml) (DEFAULT if Accept: */* is sent))
- application/sparql-results+json or application/json (alias json)
- text/csv (alias csv)
- text/tab-separated-values (alias tsv). Returns "text/plain" in GET.
- Other values: text/plain, application/n-triples
- CONSTRUCT
- application/rdf+xml (alias xml) (DEFAULT if Accept: */* is sent)
- text/turtle (alias "text")
- DESCRIBE
- application/rdf+xml (alias xml) (DEFAULT if Accept: */* is sent)
- text/turtle (alias "text")
:Valid alias for SELECT and ASK: "json", "xml", csv", "tsv" (also "text" and "ascii")
:Valid alias for DESCRIBE and CONSTRUCT: "xml", "text" (for turtle)
Blazegraph
----------
:Website: `Blazegraph (Formerly known as Bigdata) <https://www.blazegraph.com/>`_ & `NanoSparqlServer <https://wiki.blazegraph.com/wiki/index.php/NanoSparqlServer>`_
:Documentation: `<https://wiki.blazegraph.com/wiki/index.php/REST_API#SPARQL_End_Point>`_
:Uses: Parameters **and** Content Negotiation.
:Parameter key: ``format`` (available since version 1.4.0). `Setting this parameter will override any Accept Header that is present <https://wiki.blazegraph.com/wiki/index.php/REST_API#GET_or_POST>`_
:Parameter value: alias. If an unexpected alias is used, the server is not working properly.
:JSON-LD (application/ld+json): NOT supported.
- SELECT
- application/sparql-results+xml (alias xml) (DEFAULT if Accept: */* is sent))
- application/sparql-results+json or application/json (alias json)
- text/csv
- text/tab-separated-values
- Other values: application/x-binary-rdf-results-table
- ASK
- application/sparql-results+xml (alias xml) (DEFAULT if Accept: */* is sent))
- application/sparql-results+json or application/json (alias json)
- CONSTRUCT
- application/rdf+xml (alias xml) (DEFAULT if Accept: */* is sent)
- text/turtle (returns text/n3)
- text/n3
- DESCRIBE
- application/rdf+xml (alias xml) (DEFAULT if Accept: */* is sent)
- text/turtle (returns text/n3)
- text/n3
:Valid alias for SELECT and ASK: "xml", "json"
:Valid alias for DESCRIBE and CONSTRUCT: "xml", "json" (but it returns unexpected "application/sparql-results+json")
GraphDB
-------
:Website: `GraphDB, formerly known as OWLIM (OWLIM-Lite, OWLIM-SE) <http://graphdb.ontotext.com/>`_
:Documentation: `<https://graphdb.ontotext.com/documentation/free/>`_
:Uses: Only content negotiation (no URL parameters).
:Note: If the Accept value is not within the expected ones, the server returns a 406 "No acceptable file format found."
:JSON-LD (application/ld+json): supported (in CONSTRUCT and DESCRIBE).
- SELECT
- application/sparql-results+xml, application/xml (.srx file)
- application/sparql-results+json, application/json (.srj file)
- text/csv (DEFAULT if Accept: */* is sent)
- text/tab-separated-values
- ASK
- application/sparql-results+xml, application/xml (.srx file)
- application/sparql-results+json (DEFAULT if Accept: */* is sent), application/json (.srj file)
- NOT supported: text/csv, text/tab-separated-values
- CONSTRUCT
- application/rdf+xml, application/xml (.rdf file)
- text/turtle (.ttl file)
- application/n-triples (.nt file) (DEFAULT if Accept: */* is sent)
- text/n3, text/rdf+n3 (.n3 file)
- application/ld+json (.jsonld file)
- DESCRIBE
- application/rdf+xml, application/xml (.rdf file)
- text/turtle (.ttl file)
- application/n-triples (.nt file) (DEFAULT if Accept: */* is sent)
- text/n3, text/rdf+n3 (.n3 file)
- application/ld+json (.jsonld file)
Stardog
-------
:Website: `Stardog <https://www.stardog.com>`_
:Documentation: `<https://www.stardog.com/docs/#_http_headers_content_type_accept>`_ (looks outdated)
:Uses: Only content negotiation (no URL parameters).
:Parameter key: If an unexpected parameter is used, the server ignores it.
:JSON-LD (application/ld+json): supported (in CONSTRUCT and DESCRIBE).
- SELECT
- application/sparql-results+xml (DEFAULT if Accept: */* is sent)
- application/sparql-results+json
- text/csv
- text/tab-separated-values
- Other values: application/x-binary-rdf-results-table
- ASK
- application/sparql-results+xml (DEFAULT if Accept: */* is sent)
- application/sparql-results+json
- Other values: text/boolean
- Not supported: text/csv
- Not supported: text/tab-separated-values
- CONSTRUCT
- application/rdf+xml
- text/turtle (DEFAULT if Accept: */* is sent)
- text/n3
- application/ld+json
- Other acceptable values: application/n-triples, application/x-turtle, application/trig, application/trix, application/n-quads
- DESCRIBE
- application/rdf+xml
- text/turtle (DEFAULT if Accept: */* is sent)
- text/n3
- application/ld+json
- Other acceptable values: application/n-triples, application/x-turtle, application/trig, application/trix, application/n-quads
Development
===========
Requirements
------------
The `RDFLib <https://rdflib.readthedocs.io>`_ package is used for RDF parsing.
This package is imported in a lazy fashion, i.e. only when needed. If the user never intends to use the
RDF format, the RDFLib package is not imported and the user does not have to install it.
Source code
-----------
The source distribution contains:
- ``SPARQLWrapper``: the Python package. You should copy the directory
somewhere into your PYTHONPATH. Alternatively, you can also run
the distutils scripts: ``python setup.py install``
- ``test``: some unit and integrations tests. In order to run the tests
some packages have to be installed before. So please install the dev packages:
``pip install '.[dev]'``
- ``scripts``: some scripts to run the package against some SPARQL endpoints.
- ``docs``: the documentation.
Community
---------
Community support is available through the RDFlib developer's discussion group `rdflib-dev <http://groups.google.com/d/forum/rdflib-dev>`_.
The `archives <http://sourceforge.net/mailarchive/forum.php?forum_name=sparql-wrapper-devel>`_. from the old mailing list are still available.
Issues
------
Please, `report any issue to github <https://github.com/RDFLib/sparqlwrapper/issues>`_.
Documentation
-------------
The `SPARQLWrapper documentation is available online <https://sparqlwrapper.readthedocs.io>`_.
Other interesting documents are the latest `SPARQL 1.1 Specification (W3C Recommendation 21 March 2013) <https://www.w3.org/TR/sparql11-overview/>`_
and the initial `SPARQL Specification (W3C Recommendation 15 January 2008) <http://www.w3.org/TR/rdf-sparql-query/>`_.
License
-------
The SPARQLWrapper package is licensed under `W3C license`_.
.. _W3C license: https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
Acknowledgement
---------------
The package was greatly inspired by `Lee Feigenbaum's similar package for Javascript <http://thefigtrees.net/lee/blog/2006/04/sparql_calendar_demo_a_sparql.html>`_.
Developers involved:
* Ivan Herman <http://www.ivan-herman.net>
* Sergio Fernández <http://www.wikier.org>
* Carlos Tejo Alonso <http://www.dayures.net>
* Alexey Zakhlestin <https://indeyets.ru/>
Organizations involved:
* `World Wide Web Consortium <http://www.w3.org>`_
* `Salzburg Research <http://www.salzburgresearch.at>`_
* `Foundation CTIC <http://www.fundacionctic.org/>`_
.. |Build Status| image:: https://secure.travis-ci.org/RDFLib/sparqlwrapper.svg?branch=master
:target: https://travis-ci.org/RDFLib/sparqlwrapper
.. |PyPi version| image:: https://badge.fury.io/py/SPARQLWrapper.svg
:target: https://pypi.python.org/pypi/SPARQLWrapper
|