Metadata-Version: 1.1
Name: ipython-cypher
Version: 0.1.0
Summary: Neo4j Cypher cell magic for IPython and Pandas
Home-page: https://github.com/versae/ipython-cypher
Author: Javier de la Rosa
Author-email: versae@gmail.com
License: GPL
Description: ==============
        ipython-cypher
        ==============
        
        :Author: Javier de la Rosa, http://versae.es
        
        Introduces a %cypher (or %%cypher) magic for Neo4j in IPython.
        Inspired by Catherine Devlin's ipython-sql_.
        
        Connect to a graph database, using neo4jrestclient_ driver, then issue Cypher
        commands within IPython or IPython Notebook. See examples_.
        
        Install
        -------
        
            pip install ipython-cypher
        
        Then open an IPython or IPython Notebook and load the module
        
            %load_ext cypher
        
        By default, it will connect to `http://localhost:7474/db/data`
        
            %%cypher
            match (n) return id(n) as id, n.name as name skip 1 limit 3
        
        
            %cypher match (n) return id(n) as id, n.name as name skip 1 limit 3
        
            results = %cypher match (n) return id(n) as id, n.name as name skip 1 limit 3
            results.dataframe()
        
            results.pie()
        
        More soon...
        
        
        Credits
        -------
        - Distribute_
        - Buildout_
        - modern-package-template_
        
        .. _Distribute: http://pypi.python.org/pypi/distribute
        .. _Buildout: http://www.buildout.org/
        .. _modern-package-template: http://pypi.python.org/pypi/modern-package-template
        .. _ipython-sql: https://github.com/catherinedevlin/ipython-sql
        .. _examples: http://nbviewer.ipython.org/github/versae/ipython-cypher/blob/master/src/examples.ipynb
        .. _neo4jrestclient: https://pypi.python.org/pypi/neo4jrestclient
        
        
        .. This is your project NEWS file which will contain the release notes.
        .. Example: http://www.python.org/download/releases/2.6/NEWS.txt
        .. The content of this file, along with README.rst, will appear in your
        .. project's PyPI page.
        
        News
        ====
        
        0.2a1
        -----
        
        *Release date: UNRELEASED*
        
        * Example news entry for the in-development version
        
        
        0.1
        ---
        
        *Release date: 15-Mar-2010*
        
        * Example news entry for a released version
        
        
Keywords: ipython neo4j cypher pandas neo4jrestclient
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
