Stouputils is a collection of utility modules designed to simplify and enhance the development process.
It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers.
stouputils/
├── applications/
│ ├── automatic_docs.py # 📚 Documentation generation utilities (used to create this documentation)
│ └── ...
│
├── continuous_delivery/
│ ├── cd_utils.py # 🔧 Common utilities for continuous delivery
│ ├── github.py # 📦 GitHub utilities (upload_to_github)
│ ├── pypi.py # 📦 PyPI utilities (pypi_full_routine)
│ ├── pyproject.py # 📝 Pyproject.toml utilities
│ └── ...
│
├── print.py # 🖨️ Display utilities (info, debug, warning, error)
├── io.py # 💻 I/O utilities (file management, json)
├── decorators.py # 🎯 Decorators (silent, measure_time, error_handler, simple_cache)
├── ctx.py # 🚫 Context managers (Muffle, LogToFile)
├── archive.py # 📦 Archive utilities (zip, repair_zip)
├── parallel.py # 🧑🤝🧑 Parallel processing (multiprocessing, multithreading)
├── collections.py # 🧰 Collection utilities (unique_list)
├── all_doctests.py # ✅ Execution of all doctests for a given path
├── backup.py # 📦 Backup utilities (delta backup, consolidate)
└── ...