diff --git a/settings.py b/settings.py index 6379c45..99fa2d7 100644 --- a/settings.py +++ b/settings.py @@ -1,4 +1,10 @@ +import getpass + # Put your User/Pass in here! username='YourUsername' password='YourPassword' + +if username == 'YourUsername' and password == 'YourPassword': + username = raw_input('Github Username: ') + password = getpass.getpass('Github Password: ')