本文整理汇总了Python中rdflib.ConjunctiveGraph.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python ConjunctiveGraph.__init__方法的具体用法?Python ConjunctiveGraph.__init__怎么用?Python ConjunctiveGraph.__init__使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rdflib.ConjunctiveGraph
的用法示例。
在下文中一共展示了ConjunctiveGraph.__init__方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from rdflib import ConjunctiveGraph [as 别名]
# 或者: from rdflib.ConjunctiveGraph import __init__ [as 别名]
def __init__(self, store=None, id=None):
if store is not None and id is not None:
ConjunctiveGraph.__init__(self, store, id)
else:
ConjunctiveGraph.__init__(self)
for (key,val) in namespaces.iteritems():
self.bind(key, val)
示例2: __init__
# 需要导入模块: from rdflib import ConjunctiveGraph [as 别名]
# 或者: from rdflib.ConjunctiveGraph import __init__ [as 别名]
def __init__(self,identifier):
pass
store = IOMemory() # TODO: Change the storage mechanism to a persistent one and implement caching
#d=Dataset(self, store=store,default_union=True)
ConjunctiveGraph.__init__(self, store=store, identifier=identifier)
self.id=identifier
# Make sure the aof namespace is always known to AOFGraph
self.bind('aof', AOF)
示例3: __init__
# 需要导入模块: from rdflib import ConjunctiveGraph [as 别名]
# 或者: from rdflib.ConjunctiveGraph import __init__ [as 别名]
def __init__(self, store=None, id=None):
if store != None and id != None:
ConjunctiveGraph.__init__(self, store, id)
else:
ConjunctiveGraph.__init__(self)
self.bindall()
示例4: __init__
# 需要导入模块: from rdflib import ConjunctiveGraph [as 别名]
# 或者: from rdflib.ConjunctiveGraph import __init__ [as 别名]
def __init__(self, endpoint):
ConjunctiveGraph.__init__(self, 'SPARQLStore')
self.open(endpoint)
self.namespace_manager = ns_mgr
示例5: __init__
# 需要导入模块: from rdflib import ConjunctiveGraph [as 别名]
# 或者: from rdflib.ConjunctiveGraph import __init__ [as 别名]
def __init__(self, do_open=False, create=False):
identifier = "jocondelab"
store = plugin.get("SQLAlchemy", Store)(identifier=identifier)
ConjunctiveGraph.__init__(self, store=store, identifier=identifier)
if do_open:
self.open(create)