What My Project Does:
LazyLib is a small CLI tool that automatically creates/uses a virtual environment and installs missing dependencies based on a script’s imports before running it.
Real-world example:
Instead of
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python script.py
You just run:
python lazylib.py script.py
It handles the rest automatically
GitHub:
https://github.com/snoopzx/lazylib
I’d appreciate feedback on the project 🙏🏼