gitextract_5446x807/ ├── .github/ │ ├── dependabot.yml │ ├── scripts/ │ │ └── build.sh │ └── workflows/ │ └── build.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs/ │ ├── api.md │ ├── benefits.md │ ├── guide.md │ ├── index.md │ ├── installation.md │ ├── troubleshooting.md │ └── using-cli.md ├── examples/ │ ├── __init__.py │ ├── cipher/ │ │ ├── __init__.py │ │ ├── cipher.py │ │ └── cipher_test.py │ ├── diff/ │ │ ├── __init__.py │ │ ├── diff.py │ │ ├── diff_test.py │ │ └── difffull.py │ ├── identity/ │ │ ├── __init__.py │ │ └── identity.py │ └── widget/ │ ├── __init__.py │ ├── collector.py │ ├── collector_test.py │ ├── widget.py │ └── widget_test.py ├── fire/ │ ├── __init__.py │ ├── __main__.py │ ├── completion.py │ ├── completion_test.py │ ├── console/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── console_attr.py │ │ ├── console_attr_os.py │ │ ├── console_io.py │ │ ├── console_pager.py │ │ ├── encoding.py │ │ ├── files.py │ │ ├── platforms.py │ │ └── text.py │ ├── core.py │ ├── core_test.py │ ├── custom_descriptions.py │ ├── custom_descriptions_test.py │ ├── decorators.py │ ├── decorators_test.py │ ├── docstrings.py │ ├── docstrings_fuzz_test.py │ ├── docstrings_test.py │ ├── fire_import_test.py │ ├── fire_test.py │ ├── formatting.py │ ├── formatting_test.py │ ├── formatting_windows.py │ ├── helptext.py │ ├── helptext_test.py │ ├── inspectutils.py │ ├── inspectutils_test.py │ ├── interact.py │ ├── interact_test.py │ ├── main_test.py │ ├── parser.py │ ├── parser_fuzz_test.py │ ├── parser_test.py │ ├── test_components.py │ ├── test_components_bin.py │ ├── test_components_py3.py │ ├── test_components_test.py │ ├── testutils.py │ ├── testutils_test.py │ ├── trace.py │ ├── trace_test.py │ └── value_types.py ├── mkdocs.yml ├── pylintrc └── pyproject.toml