graphic

More phthonic, humanize way to play with graphdb


Keywords
graph, neo4j, algorithms, client
License
MIT
Install
pip install graphic==1.0.0a6

Documentation

Graphic

Pypi Release Python Version Build Status Coverage Status

The target of this project is: More pythonic, humanize way to play with graph model


Install

pip install graphic

Basic Example

>>>from graphic import use_neo4j
>>>neo4j = use_neo4j()
>>>boss = graphic.node('Boss', uid=1234)._as('b')
>>>geek = graphic.node('Geek', uid=2345)._as('g')
>>>neo4j.push(graphic.relationship(boss, geek, 'WORKTAT', startat=3432432)
>>>q = graphic.node().filter(id__gt=123).select('id')
>>>graph = neo4j.fetch(q)
>>>from graphic.query.func import avg
>>>q = graphic.node().select(avg('uid')).order_by('-id').limit(10)