Metadata-Version: 2.1
Name: gql
Version: 0.2.0
Summary: GraphQL client for Python
Home-page: https://github.com/graphql-python/gql
Author: Syrus Akbary
Author-email: me@syrusakbary.com
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][travis-image]][travis-url]
        [![pypi][pypi-image]][pypi-url]
        [![coveralls][coveralls-image]][coveralls-url]
        
        [travis-image]: https://img.shields.io/travis/graphql-python/gql.svg?style=flat
        [travis-url]: https://travis-ci.org/graphql-python/gql
        [pypi-image]: https://img.shields.io/pypi/v/gql.svg?style=flat
        [pypi-url]: https://pypi.python.org/pypi/gql
        [coveralls-image]: https://coveralls.io/repos/graphql-python/gql/badge.svg?branch=master&service=github
        [coveralls-url]: https://coveralls.io/github/graphql-python/gql?branch=master
        
        ## Installation
        
            $ pip install gql
        
        
        ## Usage
        
        The example below shows how you can execute queries against a local schema.
        
        
        ```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)
        
Keywords: api graphql protocol rest relay gql client
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: PyPy
Description-Content-Type: text/markdown
