diff --git a/scripts/accept-tos.py b/scripts/accept-tos.py index 4d33bb45..bc458989 100644 --- a/scripts/accept-tos.py +++ b/scripts/accept-tos.py @@ -10,6 +10,7 @@ import pprint import time import threading +import sys def accept_tos(username, password): api = PGoApi() @@ -22,4 +23,4 @@ def accept_tos(username, password): print('Accepted Terms of Service for {}'.format(username)) #print('Response dictionary: \r\n{}'.format(pprint.PrettyPrinter(indent=4).pformat(response))) -accept_tos('username', 'password') \ No newline at end of file +accept_tos(sys.argv[1], sys.argv[2])