Metadata-Version: 2.1
Name: epigraph
Version: 2020.7.27.2
Summary: Python API for graphql
Home-page: https://github.com/CHIMEFRB/epigraph
License: MIT
Author: Shiny Brar
Author-email: charanjotbrar@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: graphqlclient (>=0.2,<0.3)
Project-URL: Documentation, https://github.com/CHIMEFRB/epigraph
Project-URL: Repository, https://github.com/CHIMEFRB/epigraph
Description-Content-Type: text/markdown

# CHIME/FRB API

|  **`Release`**  |   **`Style`**   |   **`Documentation`**   |
|-----------------|-----------------|-------------------------|
| [![PyPI version](https://img.shields.io/pypi/v/epigraph.svg)](https://pypi.org/project/epigraph/) | [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://black.readthedocs.io/en/stable/)|[![Documentation: sphinx](https://img.shields.io/badge/documentation-docs-brightgreen)](https://chimefrb.github.io/epigraph/build/html/index.html)|

--------

# epigraph
Automated GraphQL API

### Installation
```
pip install epigraph
```

### Running the API
```python
In [1]: from epigraph import graphql_api

In [2]: API = graphql_api.GraphQLAPI(url="https://swapi.graph.cool/")

In [3]: API.query('Planet').args({'name': "Alderaan"}).fetch(['climate'])
Out[3]: {"data": {"Planet": {"climate": ["temperate"]}}}

```

