Thin wrapper for interacting with the Github GraphQL API
Project description
ghgql
Thin wrapper for interacting with the Github GraphQL API.
Status
Documentation
Please find the documentation and usage examples here: https://ghgql.readthedocs.io/en/latest/
Installation
$ pip install ghgql
Usage
For a more in-depth example, take a look at the example in the documentation. Here's a basic example.
import os
import fnc
import ghgql
query = """
query ($searchQuery: String!) {
search(query: $searchQuery, type: ISSUE, first: 1) {
edges {
node {
... on Issue {
id
number
title
url
}
}
}
}
}
"""
with ghgql.GithubGraphQL(token=os.getenv("GITHUB_TOKEN")) as ghapi:
result = ghapi.query(query=query, variables={"searchQuery": "llvm/llvm-project"})
print(fnc.get("search.edges", result))
Should output something like this:
[{'node': {'id': 'I_kwDOHicqdc5RG-tC',
'number': 16,
'title': 'llvm/llvm-project',
'url': 'https://github.com/KhushP786/open-sauced-goals/issues/16'}}]
Contributing
Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
Commit message conventions and semantic versioniong (semver)
We use semantic versioning and these commit message conventions can be used to automatically bump the version number and generate the changelog.
License
ghgql
was created by Konrad Kleine. It is licensed under the terms of the MIT license.
Credits
This project was created with the help of this python packaging documentation.
ghgql
was created with cookiecutter
and the py-pkgs-cookiecutter
template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ghgql-1.0.6.tar.gz
.
File metadata
- Download URL: ghgql-1.0.6.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a672cc7637cb07ad9494b59a1073e8ec139466c4688c0f6f75ad9d7d68094f7 |
|
MD5 | d03473209fb1cb88c5b1af534822d324 |
|
BLAKE2b-256 | 11bc8bbbeb120798884048b4792b44b39590982e64c3e7682aef54135ef21b80 |
File details
Details for the file ghgql-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: ghgql-1.0.6-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c21035a234939959746d123f3093f5ff08241e6f1559df583f9a63ba01da7c1 |
|
MD5 | 15deca765e744c477bb03e0e273d522d |
|
BLAKE2b-256 | 83125567cc617c7d12e88759ade66cf6613acd628ae2b7f3e83e8720972c918c |