gitextract_2twf_0e5/ ├── .coveragerc ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs/ │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── _templates/ │ │ └── layout.html │ ├── conf.py │ ├── contributor-guide.rst │ ├── index.rst │ ├── make.bat │ └── user-guide.rst ├── http_prompt/ │ ├── __init__.py │ ├── cli.py │ ├── completer.py │ ├── completion.py │ ├── config.py │ ├── context/ │ │ ├── __init__.py │ │ └── transform.py │ ├── contextio.py │ ├── defaultconfig.py │ ├── execution.py │ ├── lexer.py │ ├── options.py │ ├── output.py │ ├── tree.py │ ├── utils.py │ └── xdg.py ├── requirements-test.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── snap/ │ └── snapcraft.yaml ├── tests/ │ ├── __init__.py │ ├── base.py │ ├── context/ │ │ ├── test_context.py │ │ └── test_transform.py │ ├── test_cli.py │ ├── test_completer.py │ ├── test_config.py │ ├── test_contextio.py │ ├── test_execution.py │ ├── test_installation.py │ ├── test_interaction.py │ ├── test_lexer.py │ ├── test_tree.py │ ├── test_utils.py │ ├── test_xdg.py │ └── utils.py └── tox.ini