class Cli(object):
Cli Class.
Method | __init__ |
Return Cli Object. |
Instance Variable | description |
Argument description. |
Instance Variable | entrypoint |
Function entrypoint. |
Instance Variable | required_binaries |
Required Binary list. |
Instance Variable | parser |
ArgumentParser object. |
Method | add_path |
Directory or file path. |
Method | add_ipv_interface |
Add ipv / interface combo. |
Method | add_port |
port number, or default random port in range:1025-65535. |
Method | set_entrypoint |
Set cli entrypoint value. |
Method | set_required_binaries |
Set required binary list. |
Method | checks |
Run checks. |
Method | run_nocatch |
Run without catching exceptions. |
Method | run |
Run cli program normally. |
Method | get_parse |
Parge args. |
Set cli entrypoint value.
Parameters | function | Undocumented (type: typing.Callable ) |
Set required binary list.
Parameters | binlist | Undocumented (type: typing.List ) |