Metadata-Version: 1.1
Name: aiogql
Version: 1.1.0
Summary: A fork of gql which uses asyncio & aiohttp for execution
Home-page: https://github.com/cipriantarta/aiogql
Author: Ciprian Tarta
Author-email: UNKNOWN
License: MIT
Description: GQL
        ===
        
        This is a GraphQL client for Python. Plays nicely with ``graphene``,
        ``graphql-core``, ``graphql-js`` and any other GraphQL implementation
        compatible with the spec.
        
        GQL architecture is inspired by ``React-Relay`` and ``Apollo-Client``.
        
        |travis| |pypi| |coveralls|
        
        Installation
        ------------
        
        ::
        
            $ pip install gql-fork
        
        Usage
        -----
        
        The example below shows how you can execute queries against a local
        schema.
        
        .. code:: python
        
            from gql import gql, Client
        
            client = Client(schema=schema)
            query = gql('''
            {
              hello
            }
            ''')
        
            client.execute(query)
        
        License
        -------
        
        `MIT
        License <https://github.com/graphql-python/gql/blob/master/LICENSE>`__
        
        .. |travis| image:: https://img.shields.io/travis/graphql-python/gql.svg?style=flat
           :target: https://travis-ci.org/graphql-python/gql
        .. |pypi| image:: https://img.shields.io/pypi/v/gql.svg?style=flat
           :target: https://pypi.python.org/pypi/gql
        .. |coveralls| image:: https://coveralls.io/repos/graphql-python/gql/badge.svg?branch=master&service=github
           :target: https://coveralls.io/github/graphql-python/gql?branch=master
        
Keywords: api graphql protocol rest relay gql client
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
