I am using python argparse with the following argument definition:
parser.add_argument(\'path\', nargs=1, help=\'File path to process\')
Bu
The shell is expanding the wildcard argument before argparse gets a chance to see it. Put quotes around the wildcard argument to prevent the shell from expanding it.
argparse
You could later perform the wildcard expansion with glob.glob.