Metadata-Version: 2.1
Name: github-full-backup
Version: 0.1.0
Summary: A library to backup your GitHubs.
Home-page: https://github.com/onuratakan/GitHub-Backup
Author: Onur Atakan ULUSOY
Author-email: atadogan06@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >= 3
Description-Content-Type: text/markdown
License-File: LICENSE


# GitHub Full Backup
A library to backup your GitHubs.
# Install
```
pip3 install github-backup
```
# Using
## In another script
```python
from github_full_backup import GitHub_Backup

the_backup = GitHub_Backup(user, repo, download_path, token, how_many_release=2000, how_many_issue=2000, how_many_pull_request=2000, verbose=False, releases = True, issues_pull_requests = True, turn_archive=True, archive_name=None)

the_backup.backup()
```
## In command line
```console
githubbackup
```
usage:
```console
Usage: githubbackup --user=USER --repo=REPO --download_path=DOWNLOAD_PATH --token=TOKEN <flags>
  optional flags:        --how_many_release | --how_many_issue |
                         --how_many_pull_request | --verbose | --releases |
                         --issues_pull_requests | --turn_archive |
                         --archive_name
```


