I would like to be able to parse command line arguments in my python 2.6 program.
Ideally, I want to be able to handle these cases:
# show some help
./myprogram --help
# these are equivilent
./myprogram --block=1
./myprogram -b 1
# this means verbose, and twice as verbose:
./myprogram -v
./myprogram -vv