Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from py2neo import authenticate, Graph
- #
- authenticate("localhost:7474", "neo4j", "mypass")
- #
- graph = Graph("http://localhost:7474/db/data/")
- cypher = graph.cypher
- def novaPessoa(nome, idade) :
- cypher.execute("CREATE (a:Pessoa {nome:{n},idade:{i}})", n = nome, i = idade)
- return
- def novaRelacaoConhece(nome1, nome2, desde) :
- cypher.execute("MATCH (a:Pessoa {nome : {n1}}), (b:Pessoa {nome : {n2}})\
- CREATE (a)-[:CONHECE {desde: {d}}]->(b)", n1 = nome1, n2 = nome2, d = desde)
- return
- novaPessoa("Eu", 20)
- novaPessoa("Ela", 20)
- novaRelacaoConhece("Eu", "Ela", 2016)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement