Metadata-Version: 2.1
Name: gharchive
Version: 0.1.0
Summary: Python SDK to access Github Archive
Home-page: https://github.com/nickderobertis/py-gh-archive
Author: Nick DeRobertis
Author-email: whoopnip@gmail.com
License: MIT
Project-URL: Code, https://github.com/nickderobertis/py-gh-archive
Project-URL: Documentation, https://nickderobertis.github.io/py-gh-archive
Description: 
        [![](https://codecov.io/gh/nickderobertis/py-gh-archive/branch/master/graph/badge.svg)](https://codecov.io/gh/nickderobertis/py-gh-archive)
        
        # py-gh-archive
        
        ## Overview
        
        Python SDK to access Github Archive
        
        ## Getting Started
        
        Install `gharchive`:
        
        ```
        pip install gharchive
        ```
        
        A simple example:
        
        ```python
        from gharchive import GHArchive
        gh = GHArchive()
        
        data = gh.get('6/8/2020', '6/10/2020', filters=[
            ('repo.name', 'bitcoin/bitcoin'),
            ('type', 'WatchEvent')
        ])
        
        
        ```
        
        ## Links
        
        See the
        [documentation here.](
        https://nickderobertis.github.io/py-gh-archive/
        )
        
        ## Author
        
        Created by Nick DeRobertis. MIT License.
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
