├── .gitchangelog.rc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── python-ci-checks.yml │ └── pythonpublish.yml ├── .gitignore ├── .makefile.identity.inc ├── .makefile.inc ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── CODE_OF_CONDUCT.md └── CONTRIBUTING.md ├── python_graphql_client ├── __init__.py └── graphql_client.py ├── setup.cfg ├── setup.py └── tests └── test_graphql_client.py /.gitchangelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.gitchangelog.rc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/python-ci-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.github/workflows/python-ci-checks.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.makefile.identity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.makefile.identity.inc -------------------------------------------------------------------------------- /.makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.makefile.inc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/README.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /python_graphql_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/python_graphql_client/__init__.py -------------------------------------------------------------------------------- /python_graphql_client/graphql_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/python_graphql_client/graphql_client.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_graphql_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodigyeducation/python-graphql-client/HEAD/tests/test_graphql_client.py --------------------------------------------------------------------------------