pyp2qmd Configuration
Description
Custom class for handling the required arguments for pyp2qmd which has two modes: If argparse = False
(default) on initialization, the user must use the :py:meth:setup
method to specify the required arguments.
If argparse = True
user inputs will be parsed via the argparse
package and automatically handed over to the :py:meth:setup
method. This is used when called via console (console arguments).
Usage
Config(argparse=False)
Arguments
-
argparse
bool
-
False
by default, the user has to use the.setup()
method. If set toTrue
it will try to parse input arguments viaargparse
.