mirror of
https://github.com/clockfort/GitHub-Backup.git
synced 2025-03-16 00:00:06 +01:00
12 lines
314 B
Python
Executable file
12 lines
314 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
# Author: Anthony Gargiulo (anthony@agargiulo.com)
|
|
# Created Fri Jun 15 2012
|
|
|
|
from pygithub3 import Github
|
|
from argparse import ArgumentParser
|
|
|
|
parser = ArgumentParser(description="makes a local backup copy of all of a github user's repositories")
|
|
args = parser.parse_args()
|
|
|
|
gh = Github()
|