本文整理汇总了Python中neo4jrestclient.client.GraphDatabase.transaction方法的典型用法代码示例。如果您正苦于以下问题:Python GraphDatabase.transaction方法的具体用法?Python GraphDatabase.transaction怎么用?Python GraphDatabase.transaction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类neo4jrestclient.client.GraphDatabase
的用法示例。
在下文中一共展示了GraphDatabase.transaction方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: set
# 需要导入模块: from neo4jrestclient.client import GraphDatabase [as 别名]
# 或者: from neo4jrestclient.client.GraphDatabase import transaction [as 别名]
TLINE = gdb.node(name='TIMELINE', type='TIMELINE', start=START_TIME, stop=STOP_TIME)
RUN.relationships.create("HAS_TIMELINE", TLINE)
TAG_DICT = {}
EDGE_DICT = {}
frame_count = 0
prev_frame = None
tags = set()
edges = set()
frame_tags = []
frame_edges = []
tx = gdb.transaction()
for frame_time in range(START_TIME, STOP_TIME, DELTAT):
frame_count += 1
if frame_count % 1000 == 0:
tx.commit()
tx = gdb.transaction()
interval = (frame_time, frame_time+DELTAT)
print '#%d' % frame_count, time.ctime(frame_time)
frame = gdb.node(name='FRAME_%05d' % frame_count, type='FRAME', frame_id=frame_count, timestamp=frame_time, timestamp_end=frame_time+DELTAT, time=time.ctime(frame_time), length=DELTAT)
RUN.relationships.create("RUN_FRAME", frame)
add_to_timeline(TLINE, frame, frame_time)
if frame_count == 1: