utilify is a lightweight and flexible Python utility library that provides a collection of handy tools to make your coding life easier — from string manipulation and decorators, to timing functions, terminal display helpers, and more.
The goal is simple: gather all the little “useful” utilities you often rewrite across projects into one clean, minimal package.
- String utilities: formatting, comparisons, corrections, and text helpers.
- Decorators: easy timing, encryption, and more.
- Terminal display tools: progress bars, spinners, and status messages.
- Lightweight: no heavy dependencies — plug it into any project.
- Readable: clean and well-structured code built for maintainability.
Install directly from PyPi:
pip install utilifyor install from source:
git clone https://github.com/Johnathan31/utilify.git
cd utilify
pip install .You can see full code documentation by:
import utilify
help(utilify)