Metadata-Version: 2.1
Name: githubgql
Version: 0.0.8.0
Summary: Python library for GraphQL API interactions on Github Actions
Home-page: https://github.com/actions-automation/githubgql
Author: Mark Bestavros
Author-email: markbest@bu.edu
License: UNKNOWN
Description: # githubgql
        
        Python library for GraphQL API interactions on Github Actions.
        
        Basic example:
        
        ```python
        from githubgql import githubgql
        
        QUERY = """
        query { 
          repository(owner: "github", name: "docs") {
            name
          }
        }
        """
        
        token = os.environ.get('BOT_TOKEN', None)
        
        result = githubgql.graphql(QUERY, token)
        ```
        
        More detailed examples are present in the source.
        
        Packaged using tutorial on
        [packaging.python.org](https://packaging.python.org/tutorials/packaging-projects/).
        Uses [gh-action-pypi-publish](https://github.com/actions-automation/githubgql)
        for automatic publishing.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
