本文整理汇总了Python中aleph.model.Entity.all_by_document方法的典型用法代码示例。如果您正苦于以下问题:Python Entity.all_by_document方法的具体用法?Python Entity.all_by_document怎么用?Python Entity.all_by_document使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类aleph.model.Entity
的用法示例。
在下文中一共展示了Entity.all_by_document方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: load_document
# 需要导入模块: from aleph.model import Entity [as 别名]
# 或者: from aleph.model.Entity import all_by_document [as 别名]
def load_document(tx, document):
if tx is None:
return
log.info("Graph load [%s]: %r", document.id, document.meta)
meta = document.meta
node = DocumentNode.merge(tx, name=meta.title, alephTitle=document.type,
fileName=meta.file_name, fingerprint=document.id,
alephDocument=document.id)
add_to_collections(tx, node, document.collections,
alephDocument=document.id)
for email in meta.emails:
enode = EmailNode.merge(tx, name=email, fingerprint=email)
MENTIONS.merge(tx, node, enode, alephDocument=document.id)
add_to_collections(tx, enode, document.collections,
alephDocument=document.id)
for phone in meta.phone_numbers:
pnode = PhoneNode.merge(tx, name=phone, fingerprint=phone)
MENTIONS.merge(tx, node, pnode, alephDocument=document.id)
add_to_collections(tx, pnode, document.collections,
alephDocument=document.id)
for entity in Entity.all_by_document(document.id):
enode = load_entity(tx, entity)
MENTIONS.merge(tx, node, enode,
alephDocument=document.id,
alephEntity=entity.id)
return node