py2neo 基本用法
生活随笔
收集整理的這篇文章主要介紹了
py2neo 基本用法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
py2neo 基本用法
#coding:utf-8 from py2neo import Graph,Node,Relationship##連接neo4j數據庫,輸入地址、用戶名、密碼 graph = Graph('http://localhost:7474',username='neo4j',password='08300734')##創建結點 test_node_2 = Node(label='ru_yi_zhuan',name='皇帝') test_node_1 = Node(label='ru_yi_zhuan',name='皇后') test_node_3 = Node(label='ru_yi_zhuan',name='公主') graph.create(test_node_1) graph.create(test_node_2) graph.create(test_node_3)##創建關系 #分別建立了test_node_1指向test_node_2和test_node_2指向test_node_1兩條關系,關系的類型為"丈夫、妻子",兩條關系都有屬性count,且值為1。 node_1_zhangfu_node_1 = Relationship(test_node_1,'丈夫',test_node_2) node_1_zhangfu_node_1['count'] = 1 node_2_qizi_node_1 = Relationship(test_node_2,'妻子',test_node_1) node_2_munv_node_1 = Relationship(test_node_2,'母女',test_node_3)node_2_qizi_node_1['count'] = 1graph.create(node_1_zhangfu_node_1) graph.create(node_2_qizi_node_1) graph.create(node_2_munv_node_1)print(graph) print(test_node_1) print(test_node_2) print(node_1_zhangfu_node_1) print(node_2_qizi_node_1) print(node_2_munv_node_1)posted on 2019-03-10 17:02 luoganttcc 閱讀(...) 評論(...) 編輯 收藏
總結
以上是生活随笔為你收集整理的py2neo 基本用法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: py2neo安装
- 下一篇: word2vector 讲的比较好的文章