Metadata-Version: 2.1
Name: asyncgp
Version: 0.2.1
Summary: An asyncio Greenplum driver
Home-page: https://github.com/MyColorfulDays/asyncgp.git
Author: MyColorfulDays
Author-email: my_colorful_days@163.com
License: Apache License, Version 2.0
Description: # asyncgp -- A database interface library based on asyncpg for GreenPlum and Python/asyncio
        
        **asyncgp** is a database interface library based on asyncpg for
        GreenPlum and Python/asyncio.
        
        asyncgp requires Python 3.5 or later and add supported for GreenPlum versions 5.x.
        
        
        ## Documentation
        
        You can refer to asyncpg document [here](https://magicstack.github.io/asyncpg/current/).
        
        
        ## Installation
        
        asyncgp is available on PyPI.
        Use pip to install:
        
        ```shell
        $ pip install asyncgp
        ```
        or:
        
        ```shell
        $ git clone https://github.com/MyColorfulDays/asyncgp.git
        $ cd asyncgp
        $ python setup.py install
        ```
        
        ## Basic Usage
        
        ```python3
        
        import asyncio
        import asyncgp as asyncpg
        
        async def run():
            conn = await asyncpg.connect(user='user', password='password', database='database', host='127.0.0.1')
            values = await conn.fetch('''SELECT * FROM mytable''')
            await conn.close()
        
        loop = asyncio.get_event_loop()
        loop.run_until_complete(run())
        ```
        
Platform: macOS
Platform: POSIX
Platform: Windows
Classifier: Development Status :: 1 - Planning
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3 :: Only
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: Topic :: Database :: Front-Ends
Requires-Python: >=3.5.0
Description-Content-Type: text/markdown
