Metadata-Version: 1.1
Name: agensgraph
Version: 0.0.1
Summary: A Python driver for Agensgraph
Home-page: https://github.com/iomedhealth/agensgraph
Author: IOMED Medical Solutions SL
Author-email: dev@iomed.es
License: MIT
Description-Content-Type: UNKNOWN
Description: # Agensgraph python driver
        
        A psycopg2 extension to use [AgensGraph][1] with Python.
        
        ### Documentation
        
        Go to [Psycopg's documentation][2] for documentation about the Python interface and to [AgensGraph][1] documentation for AgensSQL. If you want to learn more about Cypher, I recommend you to go to [Neo4j's][3] documentation.
        
        
        ### How to 
        ```python
        import agensgraph
        
        conn = agensgraph.connect("dbname=iomed")  # Equivalent to psycopg2.connect
        cur = conn.cursor()
        cur.execute("SET graph_path=snomed;")
        
        cur.execute("MATCH (a)-[r]->(b) RETURN a,r,b LIMIT 10;")
        result = cur.fetchall()
        
        ```
        
        
        **Copyright © 2017, IOMED Medical Solutions S.L.**
        
        [1]: http://bitnine.net/wp-content/uploads/2017/06/html5/main.html
        [2]: http://initd.org/psycopg/docs/index.html 
        [3]: https://neo4j.com/docs/developer-manual/current/cypher/
        
        
        
        
Keywords: postgres,agensgraph,psycopg2
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
