You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser = argparse.ArgumentParser(description='Manages the authentication with the repository. By default tries to authenticate a user and get the corresponding token')
parser.add_argument('-r', '--register', dest='register', action='store_true' , help='Attempts to register the user' )
parser.add_argument('user', nargs=1, help='email of the user')
parser.add_argument('password', nargs=1, help='password corresponding to the email')
parser.add_argument('-token', dest="tk_path", help='Name of the file with the token. Default is token.txt', default='token.txt')