gitextract__hqhlpvx/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── changelog.txt ├── failures-to-investigate/ │ ├── freshsales.py │ ├── freshsales2.py │ └── freshsales3.py ├── icecream/ │ ├── __init__.py │ ├── __version__.py │ ├── builtins.py │ ├── coloring.py │ ├── icecream.py │ └── py.typed ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── install_test_import.py │ ├── test_icecream.py │ └── test_install.py └── tox.ini