Subpackage can.i.has.python will be moved to another project in the future, as I plan to create more literal ports of different python libraries. I took python test suite (test_docopt.py, ...
"""Usage: foo.py [--knob=<n>] Options: --knob=<n> Set the knob to n. [default: 14] """ import pprint from docopt import docopt pprint.pprint(docopt(__doc__)) The ...