Metadata-Version: 2.1
Name: rawgql
Version: 0.1.dev1
Summary: Simple Python 3 framework for interacting with GraphQL endpoints
Home-page: https://github.com/jamwil/rawgql
Author: James Williams
Author-email: jamwil@gmail.com
License: MIT
Keywords: graphql
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: Topic :: Database
Description-Content-Type: text/markdown
Requires-Dist: requests

**rawgql** is a simple Python 3 framework for interacting with GraphQL endpoints.
There is very little to it; the GraphQL class simply accepts a raw query or
mutation passed as a string or file, packages it with the necessary headers
and optional query variables, and returns a python dictionary with the result.

There is little to no error checking, however there is a small pytest test
suite.

By default, the script will attempt to locate an `auth.json` file in a folder
named `gql/` in your project's working directory. Additionally, query files
can be stored in this folder and can be called from `GraphQL.query()` by
filename. `GraphQL.query()` also accepts passed strings. An optional argument
for query variables is available as well.

Check the function signatures and docstrings for more information. All of the
default folders and filenames can be changed with environmental variables or
by overriding after importing the module. 



