An asynchronous SPARQL library using aiohttp
Project description
An asynchronous SPARQL library using aiohttp
Synopsis
from aiosparql.syntax import (
IRI, Namespace, Node, PrefixedName, RDF, RDFTerm, Triples)
# define a namespace
class Boo(Namespace):
__iri__ = IRI("http://boo#")
SomeClass = PrefixedName
website = PrefixedName
label = PrefixedName
# create a node
node = Node("<subject>", {
RDF.type: Boo.SomeClass,
Boo.website: IRI("http://example.org"),
Boo.label: "some label", # "some label" will be automatically escaped
})
# missing prefixed names will show on your IDE and fail on execution
print(Boo.something) # AttributeError!
# create triples
triples = Triples([("s", "p", "o")]) # o is automatically escaped
triples.append(("s", Boo.website, IRI("http://example.org")))
triples.extend([("s", Boo.website, IRI("http://example.org"))])
print(triples) # print the triples is a format usable directly in a SPARQL
# query. It also groups by subject automatically for you
from aiosparql.client import SPARQLClient
client = SPARQLClient("http://dbpedia.org/sparql")
result = await client.query("select * where {?s ?p ?o} limit 1")
# result is a dict of the JSON result
result = await client.update("""
with {{graph}}
insert data {
{{}}
}
""", triples)
# the triples will be automatically indented to produce a beautiful query
from aiosparql.escape import escape_any
print(escape_any(True)) # "true"
print(escape_any("foo")) # "foo"
print(escape_any(5)) # "5"
print(escape_any(5.5)) # "5.5"^^xsd:double
Installation
User space installation
easy_install --user aiosparqlSystem wide installation
easy_install aiosparql
Requirements
Python >= 3.5
Testing
In order for the tests to run, you must have the following Docker containers started:
docker run -d --name travis-virtuoso -p 8890:8890 -e SPARQL_UPDATE=true tenforce/virtuoso:1.2.0-virtuoso7.2.2 docker run -d -p 3030:3030 --name travis-fuseki -e ADMIN_PASSWORD=PASSWORD -e ENABLE_DATA_WRITE=true -e ENABLE_UPDATE=true -e ENABLE_UPLOAD=true secoresearch/fuseki
Credits
This software has been produced by Dacota One.
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
aiosparql-0.11.0a1.tar.gz
(17.3 kB
view details)
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 aiosparql-0.11.0a1.tar.gz.
File metadata
- Download URL: aiosparql-0.11.0a1.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5204468c11ff1e8b585e17d0afc42807dd88808824df2176f53f6c2dbf82688
|
|
| MD5 |
99f44e7998e0c6091cab0cd6612b155b
|
|
| BLAKE2b-256 |
511ff25d3f9c1bf998c8e320e2440b1911ba73a14f48367a0c10bb04c9303d6f
|
File details
Details for the file aiosparql-0.11.0a1-py3-none-any.whl.
File metadata
- Download URL: aiosparql-0.11.0a1-py3-none-any.whl
- Upload date:
- Size: 13.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d8865cc286b70021dcf5cd94d486900b56174147a848bb9d5cc3ab9c48294ce
|
|
| MD5 |
25b5debc71037453a861f2f3427eff57
|
|
| BLAKE2b-256 |
69a9567a2a4b554a453e813cf1e3cc2dfb820fe0205f86386de43de3d3abb516
|