Metadata-Version: 2.1
Name: graphic
Version: 1.0.0a5
Summary: More phthonic, humanize way to play with graphdb
Home-page: https://github.com/chuter/graphic
Author: chuter
Author-email: topgun.chuter@gmail.com
License: MIT
Description: 
        =========================
        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
        """""""""""""""""""""""""
        
        .. code-block:: bash
        
            pip install graphic
        
        
        
        Basic Example
        """""""""""""""""""""""""
        
        .. code-block:: python
        
            >>>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)
        
        
        
        .. |Pypi Release| image:: https://img.shields.io/pypi/v/graphic.svg
        .. |Python Version| image:: https://img.shields.io/pypi/pyversions/graphic.svg
        .. |Build Status| image:: https://travis-ci.org/chuter/graphic.svg?branch=master
        .. |Coverage Status| image:: https://codecov.io/gh/chuter/graphic/branch/master/graph/badge.svg
          :target: https://codecov.io/gh/chuter/graphic
Keywords: graph,neo4j,graph algorithms,client
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: Chinese (Simplified)
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.5
Provides-Extra: test
Provides-Extra: dev
