Skip to main content

More phthonic, humanize way to play with graphdb

Project description

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()
>>>from graphic.query.func import avg
>>>q = graphic.node().select(avg('uid')).order_by('-id').limit(10)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graphic-1.0.0a3.tar.gz (44.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page