使用 aiohttp 的异步 SPARQL 库
项目描述
使用 aiohttp 的异步 SPARQL 库
概要
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
安装
用户空间安装
easy_install --user aiosparql全局安装
easy_install aiosparql
要求
Python >= 3.5
测试
为了运行测试,您必须启动以下Docker容器
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
致谢
此软件由Dacota One制作。
项目详情
下载文件
下载适用于您平台的文件。如果您不确定选择哪个,请了解更多关于 安装包 的信息。
源分布
aiosparql-0.12.0.tar.gz (17.7 kB 查看哈希值)
构建分布
aiosparql-0.12.0-py3-none-any.whl (13.3 kB 查看哈希值)