Initial commit of this file. Not much done here yet though

This commit is contained in:
Anthony Gargiulo 2012-06-16 02:24:45 -04:00
parent 348bbc40f6
commit 8781e10f1a

12
github-backup.py Executable file
View file

@ -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()