ssalevan / gql

A GraphQL client in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Usage

The example below shows how you can execute queries against a local schema.

from gql import gql, Client

client = Client(schema=schema)
query = gql('''
{
  hello
}
''')

client.execute(query)

License

MIT License

About

A GraphQL client in Python

License:MIT License


Languages

Language:Python 100.0%