我正在使用 python3 进行 SPARQL 查询。我需要阅读 Virtuoso 数据库并输出三元组。三元组中的一些数据包含特殊字符,如换行符等。
无论如何,我可以像这样获取数据:
queryString = "some query"
sparql.setQuery(queryString)
sparql.setReturnFormat(JSON)
try:
jsonData = sparql.query()
for result in jsonData:
print('Result: ***')
f.write(str(result) + '\n')
except:
print("Oops:", sys.exc_info()[0], file=sys.stderr)
当我这样做时,我在文件中得到以下输出:
b'{\n'
b' "head" : {\n'
b' "vars" : [\n'
b' "subject",\n'
b' "predicate",\n'
b' "object"\n'
b' ]\n'
b' },\n'
b' "results" : {\n'
b' "bindings" : [\n'
b' {\n'
b' "predicate" : {\n'
b' "type" : "uri",\n'
b' "value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"\n'
b' },\n'
b' "subject" : {\n'
b' "type" : "uri",\n'
b' "value" : "http://www.ontologyrepository.com/CommonCoreOntologies/delimits"\n'
b' },\n'
b' "object" : {\n'
b' "type" : "uri",\n'
b' "value" : "http://www.w3.org/2002/07/owl#InverseFunctionalProperty"\n'
b' }\n'
b' },\n'
等等。我不确定b
前缀在这些行上的作用。无论如何,我无法使用 JSON 库阅读此内容。所以我更喜欢用 JSON 来写。
我想用一个简单的东西替换for循环
json.dump(jsonData, f)
或者
json.dumps(jsonData, f)
当我这样做时,我收到错误消息Oops: <class 'TypeError'>
。我注意到的类型jsonData
是<class 'SPARQLWrapper.Wrapper.QueryResult'>
。
SPARQL 查询是否不返回 JSON?我还需要做一些其他的转变吗?