RDFLib 中的命名空间绑定
Namespace binding in RDFLib
在以下最小测试用例中:
from rdflib import Graph, Namespace, Literal, RDF
base = "http://test.com/ns"
foobar = Namespace("http://test.com/ns#")
g = Graph(base=base)
g.bind('foobar', foobar)
g.add((foobar.something, RDF.type, Literal('Blah')))
g.add((foobar.something, foobar.contains, Literal('a property')))
g.add((foobar.anotherthing, RDF.type, Literal('Blubb')))
g.add((foobar.anotherthing, foobar.contains, Literal('another property')))
print(g.serialize(format='turtle').decode("utf-8"))
我明白了
@base <http://test.com/ns> .
@prefix foobar: <http://test.com/ns#> .
<#anotherthing> a "Blubb" ;
ns1:contains "another property" .
ns1:something a "Blah" ;
ns1:contains "a property" .
我更期待的是
@base <http://test.com/ns> .
@prefix foobar: <http://test.com/ns#> .
<#anotherthing> a "Blubb" ;
foobar:contains "another property" .
<#something> a "Blah" ;
foobar:contains "a property" .
所以要么是我根本不了解 RDFLib 以及如何使用名称空间,要么就是发生了一些奇怪的事情。
大家有什么想法吗?
您的 base
声明还需要最后的 has 或斜杠。
所以试试g = Graph(base="http://test.com/ns#")
,一切都会好起来的
或
在这种情况下尝试不使用任何基础。
两者都会给您有效的结果。是的,在 RDFlib 的深处有一些奇怪的事情发生在基础上,但只有当它没有以 # 或 /.
结束时
顺便说一下,您的三元组有点无效:您不能将 rdf:type
与文字范围值一起使用,它必须是 rdf:Class
实例。
在以下最小测试用例中:
from rdflib import Graph, Namespace, Literal, RDF
base = "http://test.com/ns"
foobar = Namespace("http://test.com/ns#")
g = Graph(base=base)
g.bind('foobar', foobar)
g.add((foobar.something, RDF.type, Literal('Blah')))
g.add((foobar.something, foobar.contains, Literal('a property')))
g.add((foobar.anotherthing, RDF.type, Literal('Blubb')))
g.add((foobar.anotherthing, foobar.contains, Literal('another property')))
print(g.serialize(format='turtle').decode("utf-8"))
我明白了
@base <http://test.com/ns> .
@prefix foobar: <http://test.com/ns#> .
<#anotherthing> a "Blubb" ;
ns1:contains "another property" .
ns1:something a "Blah" ;
ns1:contains "a property" .
我更期待的是
@base <http://test.com/ns> .
@prefix foobar: <http://test.com/ns#> .
<#anotherthing> a "Blubb" ;
foobar:contains "another property" .
<#something> a "Blah" ;
foobar:contains "a property" .
所以要么是我根本不了解 RDFLib 以及如何使用名称空间,要么就是发生了一些奇怪的事情。
大家有什么想法吗?
您的 base
声明还需要最后的 has 或斜杠。
所以试试g = Graph(base="http://test.com/ns#")
,一切都会好起来的
或
在这种情况下尝试不使用任何基础。
两者都会给您有效的结果。是的,在 RDFlib 的深处有一些奇怪的事情发生在基础上,但只有当它没有以 # 或 /.
结束时顺便说一下,您的三元组有点无效:您不能将 rdf:type
与文字范围值一起使用,它必须是 rdf:Class
实例。