parser.add_argument('--creds_json',help='To authenticate with a json file.')
parser.add_argument('--creds_base64',help='To authenticate with a file that includes the credentials for base64 authentication.')
parser.add_argument('--name',help='Name of the google sheets document.')
parser.add_argument('--cell',help='To collect the value of a cell.')
parser.add_argument('--row',help='To collect the value of a row.',type=int)
parser.add_argument('--column',help='To collect the value of a column.',type=int)
parser.add_argument('--sheet',help='To indicate the name of the document sheet, put it in quotation marks and count spaces and capital letters.',type=str)
val=worksheet.col_values(args.column)# Get a specific column
else:
print("To search for data in a cell use the --cell parameter, for data in a column --column and in a row --row, only one of these parameters can be used at a time.")