Cli2gui Index / Cli2gui / Types
Auto-generated documentation for cli2gui.types module.
Representation for the BuildSpec.
class BuildSpec: ...
Representation for the FullBuildSpec (BuildSpec + ParserRep).
class FullBuildSpec: ...
Supported gui types.
DEFAULT = "pysimplegui" WEB = "pysimpleguiweb" QT = "pysimpleguiqt" FSG = "freesimplegui"
class GUIType(str, Enum): ...
Representation for an argument group.
class Group: ...
Representation for an arg_item.
class Item: ...
Enum of ItemTypes.
class ItemType(Enum): ...
Representation for a parser.
class ParserRep: ...
Supported parser types.
OPTPARSE = "optparse" ARGPARSE = "argparse" DEPHELL_ARGPARSE = "dephell_argparse" DOCOPT = "docopt" GETOPT = "getopt" CLICK = "click" CUSTOM = "input()" # this seems like a pretty poor pattern to use
class ParserType(str, Enum): ...