diff --git a/github-backup.py b/github-backup.py new file mode 100755 index 0000000..f6a600f --- /dev/null +++ b/github-backup.py @@ -0,0 +1,12 @@ +#!/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()