Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 716 Bytes

README.md

File metadata and controls

47 lines (29 loc) · 716 Bytes

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:

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.

Author

Created by Nick DeRobertis. MIT License.