Metadata-Version: 2.1
Name: gharchive
Version: 0.2.2
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
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
Requires-Dist: pandas
Requires-Dist: python-dateutil
Requires-Dist: requests
Provides-Extra: mgzip
Requires-Dist: mgzip ; extra == 'mgzip'


[![](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
```

Or, for multi-processing in extracting archives:

```
pip install gharchive[mgzip]
```

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.

