1 Star 0 Fork 0

pedro/movie

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
querys.py 956 Bytes
一键复制 编辑 原始数据 按行查看 历史
pedro 提交于 2019-05-28 11:13 . init
from neo4j import GraphDatabase
import json
# 1. China_中国大陆 地区的电影
def find_movies_in_district(tx, district):
res = tx.run("MATCH (m:Movie)-[:DISTRICT_OF]->(d:District {name: $district}) RETURN m",
{"district": district})
for it in res.records():
print(it.get('m')._properties.get('title'))
if __name__ == '__main__':
driver = GraphDatabase.driver("bolt://localhost:7687", auth=("neo4j", "123456"))
with driver.session() as session:
# 1. 剧情 类 电影
category = "剧情"
res = session.run("MATCH (m:Movie)-[:CATEGORY_OF]->(c:Category {name: $category}) RETURN m",
{"category": category})
for it in res.records():
print(it)
# print(it._properties)
# print(it._labels)
# print(it._id)
# print(sin[0].graph.nodes)
# print(sin[0].graph.relationships)
driver.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaopedro/movie.git
git@gitee.com:gaopedro/movie.git
gaopedro
movie
movie
master

搜索帮助