____ _ / __ \(_) ___ ______ / /_/ / / | / / | / / __ \ / ____/ /| |/ /| |/ / /_/ / /_/ /_/ |___/ |___/\____/
A small, pragmatic CLI tool to initialize and manage Python projects with ease. Bootstrap your projects, manage dependencies, and streamline your workflow—all from the command line.
pivvo helps developers quickly set up Python projects with virtual environments, Git repositories, and essential files. It provides a suite of commands to manage dependencies, run scripts, and maintain your project's environment without leaving the terminal.
- Project Initialization: Create new Python projects with virtual environments, Git repos, and basic files in seconds
- Dependency Management: Install, list, freeze, upgrade, and remove packages within the project's venv
- Script Execution: Run Python scripts directly inside the project's virtual environment
- Beautiful Output: Rich terminal interface with progress indicators and colored output
- Error Handling: Comprehensive error logging for troubleshooting
- Cross-Platform: Works on Windows, macOS, and Linux
- Lightweight: Minimal dependencies for fast installation and execution
pip install pivvogit clone https://github.com/Flaxmbot/pivvo.git
cd pivvo
pip install -e .- Python 3.10 or higher
- pip (usually included with Python)
-
Install pivvo:
pip install pivvo
-
Initialize a new project:
pivvo init my-awesome-project cd my-awesome-project -
Install dependencies:
pivvo install-deps requests flask python-dotenv
-
Run your application:
pivvo run app.py
That's it! Your project is ready with a virtual environment, Git repository, and all dependencies installed.
pivvo provides the following commands:
| Command | Description |
|---|---|
pivvo init <name> |
Initialize a new project directory with venv and Git |
pivvo install-deps [packages...] |
Install packages into the local venv. Use -f/--file to install from requirements file |
pivvo run <script.py> |
Execute a Python script inside the venv |
pivvo list |
List all packages installed in the venv |
pivvo freeze |
Write current venv packages to requirements.txt |
pivvo upgrade |
Upgrade all packages listed in requirements.txt to latest versions |
pivvo remove <package> |
Uninstall a package and update requirements.txt |
# General help
pivvo --help
# Command-specific help
pivvo install-deps --help
pivvo init --helpgit clone https://github.com/Flaxmbot/pivvo.git
cd pivvo
python -m venv venv
# On Windows:
venv\Scripts\activate
# On macOS/Linux:
source venv/bin/activate
pip install -r requirements.txtpivvo/
├── pivvo/
│ ├── __init__.py
│ ├── cli.py # Main CLI implementation
│ └── main.py # Package entry point
├── tests/ # Unit tests
├── requirements.txt # Dependencies
├── pyproject.toml # Package configuration
├── LICENSE
├── CONTRIBUTING.md
└── README.md
# Install test dependencies
pip install pytest
# Run tests
pytest
# Run with coverage
pytest --cov=pivvo- CLI Implementation: Located in
pivvo/cli.pyusing Typer for argument parsing - Terminal Output: Uses Rich for beautiful, colored terminal output
- Error Logging: Failed subprocess commands are logged to
pivvo-error.log - Git Integration: Uses GitPython for repository initialization
- Cross-Platform: Handles different Python executable paths for Windows/macOS/Linux
When using Git Bash on Windows, you might see raw ANSI escape codes. Solutions:
- Force ANSI rendering: Modify
cli.pyto useConsole(force_terminal=True, color_system="auto") - Use
winpty:winpty python pivvo/main.py ... - Use PowerShell, CMD, or Windows Terminal instead of Git Bash
We welcome contributions! Please see our Contributing Guide for details on:
- Reporting bugs
- Requesting features
- Setting up your development environment
- Submitting pull requests
- Code style guidelines
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Add tests for your changes
- Ensure all tests pass:
pytest - Commit your changes:
git commit -m "Add amazing feature" - Push to your branch:
git push origin feature/amazing-feature - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- Devrat Kuntal - Creator & Maintainer - rdxdevbhai76@gmail.com
Made with ❤️ for the Python community