pymake.pymake_parser module

Parser used to process command line arguments when running pymake directly from the command line or in a script. The standard argparse module is used to parse command line arguments. Available command line arguments are programmatically developed by a protected dictionary. The parser can be accessed using:

import pymake
args = pymake.parser()
parser()[source]

Construct the parser and return argument values.

Returns

args – Namespace with command line arguments

Return type

Namespace object