Metadata-Version: 2.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
License: MIT
Keywords: api graphql protocol rest relay gql client
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
Requires-Dist: six>=1.10.0
Requires-Dist: graphql-core>=2.0
Requires-Dist: promise>=0.4.0
Requires-Dist: aiohttp>=3.1.3

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
