You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from Config.Config import *
|
|
from Neo4j.Neo4jExecutor import *
|
|
|
|
# 使用示例
|
|
if __name__ == '__main__':
|
|
executor = Neo4jExecutor(
|
|
uri=NEO4J_URI,
|
|
auth=NEO4J_AUTH
|
|
)
|
|
# 清库
|
|
clear(executor.graph)
|
|
print("清库成功") |