Skip to main content

Pip accelerator package. Intelligent, incremental dependency resolution and caching for pip environment based applications. It it meant to complement pip

Project description


ChaCC Dependency Manager

Smart dependency resolution with intelligent caching. ChaCC (Cache-Checked) is a dependency manager for Python that is up to 20x faster than pip for repeated installations. It's designed to accelerate your development workflows, especially in environments like Docker and CI/CD pipelines.

🎯 When to Use ChaCC

ChaCC is a powerful tool, but it's not always a replacement for pip. Here’s when to choose one over the other:

Use ChaCC when you:

  • Frequently build Docker images.
  • Work with projects that have many dependencies.
  • Manage applications with a modular structure.
  • Need to speed up your CI/CD pipelines.
  • Want automatic and intelligent cache management.

Keep using pip for:

  • Simple, single-file projects.
  • One-off installations of a few packages.
  • Basic development environments where speed is not a primary concern.

🚀 Getting Started

Ready to give ChaCC a try? Here's how to get up and running in a few simple steps.

📦 Installation

You can install ChaCC using pip. For most users, installing it with the [resolver] extra is recommended as it includes the command-line interface (CLI).

# Recommended installation with CLI commands
pip install chacc-dependency-manager[resolver]

# Basic installation (library only)
pip install chacc-dependency-manager

# Full development setup
pip install chacc-dependency-manager[full]

🏃‍♀️ Quick Usage

The easiest way to use ChaCC is through its command-line interface.

  1. Navigate to your project directory that contains a requirements.txt file.
    cd your_project
    
  2. Run the install command. ChaCC provides a few aliases for its commands: chacc-dependency-manager, chacc-dm, or the shortest, cdm.
    cdm install
    

ChaCC will find your requirements.txt, resolve the dependencies, and install them. If you run it again, it will use its smart cache to complete the process almost instantly.

You can also install specific packages directly:

cdm install fastapi uvicorn

💻 Usage Guide

ChaCC can be used from the command line or programmatically in your Python code.

Command-Line Interface (CLI)

The CLI is the most common way to interact with ChaCC.

Installing Dependencies

# Auto-discover and install from requirements.txt in the current directory
cdm install

# Install from a specific requirements file
cdm install -r requirements-dev.txt

# Install specific packages
cdm install fastapi uvicorn sqlalchemy

Upgrading Dependencies

# Auto-discover and upgrade all packages in requirements files
cdm upgrade

# Upgrade from a specific requirements file
cdm upgrade -r requirements-dev.txt

# Upgrade specific packages
cdm upgrade requests fastapi

Managing the Cache

# View cache information
cdm cache --info

# Clear the entire cache
cdm cache --clear

# Clear the cache for a specific module
cdm cache --clear --module auth

Resolving Dependencies Without Installing

You can see what ChaCC would install without actually installing the packages.

# Check what would be installed from requirements.txt
cdm resolve

# Check for a specific file
cdm resolve -r requirements-dev.txt

Checking Package Installation Status

Verify that cached packages are actually installed and match expectations.

# Check if all cached packages are properly installed
cdm check

# Also show packages installed but not in cache
cdm check --all

Finding Outdated Packages

Show which cached packages have newer versions available.

# Check for available updates to cached packages
cdm outdated

Programmatic Usage (Python)

You can also use ChaCC within your Python applications to manage dependencies dynamically.

Simple Usage

For most cases, a single function call is all you need. ChaCC will automatically handle caching.

import asyncio
from chacc import re_resolve_dependencies

# This function will find, resolve, and install dependencies
asyncio.run(re_resolve_dependencies())

Advanced Usage with a Config Object

If you need more control, you can use a Config object to customize behavior, such as setting a custom cache directory or adding hooks.

import asyncio
from chacc import Config, re_resolve_dependencies

# Create a configuration object
config = Config(
    cache_dir='./my_custom_cache',
    pre_resolve_hook=lambda name, req: print(f"Resolving {name}")
)

# Pass the config to the function
asyncio.run(re_resolve_dependencies(config=config))

Full Control with DependencyManager

For complete control over every aspect of the dependency resolution process, you can use the DependencyManager class.

import asyncio
from chacc import DependencyManager

# Instantiate the manager with your desired settings
dm = DependencyManager(
    cache_dir='./my_cache'
)

# Resolve dependencies
asyncio.run(dm.resolve_dependencies())

🚀 Why is ChaCC Faster?

ChaCC's primary advantage is its intelligent caching. On the first run, its speed is comparable to pip. However, for subsequent runs, the speed improvements are significant, especially in automated environments.

Scenario pip install chacc-dependency-manager Speed Improvement
Docker rebuild (no changes) 45s <2s 22x faster
CI/CD pipeline 60s 3s 20x faster
Large monorepo 120s 15s 8x faster
First run 45s 45s Same (as expected)

Key Features

  • 🧠 Smart Caching: Only re-installs dependencies that have changed.
  • 🔄 Incremental Updates: Avoids full reinstalls, saving significant time.
  • 📦 Multi-File Support: Handles complex projects with multiple requirements.txt files.
  • 🐳 Docker-Optimized: Works seamlessly with Docker's layer caching for faster image builds.
  • 🔍 Package Validation: Verifies that cached packages are still installed correctly.
  • 📝 Debug Logging: Provides detailed output to help you understand caching behavior.

🐳 Docker and CI/CD Integration

ChaCC is particularly effective in containerized and automated environments.

Docker Usage

Here is a simple, cache-friendly Dockerfile that leverages ChaCC.

FROM python:3.11-slim

# Install the dependency manager
RUN pip install chacc-dependency-manager[resolver]

# Copy your requirements files
COPY requirements*.txt ./

# Install dependencies using ChaCC's intelligent caching
# This step will be almost instant if requirements haven't changed
RUN cdm install

# Copy the rest of your application code
COPY . .

# Run your application
CMD ["python", "app.py"]

CI/CD Pipeline Caching (GitHub Actions)

You can use caching in your CI/CD pipelines to persist the ChaCC cache between runs.

- name: Cache dependencies
  uses: actions/cache@v3
  with:
    path: .dependency_cache
    key: deps-${{ hashFiles('requirements*.txt', 'pyproject.toml') }}

- name: Install dependencies
  run: cdm install

🛠️ Advanced Topics

Auto-Discovery of Requirements

ChaCC can automatically discover requirement files based on common patterns.

Supported Patterns:

  • "requirements.txt" (default)
  • "*.txt"
  • "requirements-*.txt"

ChaCC will search for these files in the current directory or a specified modules_dir.

Custom Hooks for Deeper Integration

For advanced use cases, you can inject your own logic into the resolution process using hooks.

  • pre_resolve_hook: A function that runs before dependencies are resolved.
  • post_resolve_hook: A function that runs after dependencies are resolved.
  • install_hook: A function to handle the installation of packages, allowing you to override the default installation logic.
def log_start(module_name, requirements):
    print(f"Starting resolution for {module_name}")

def log_complete(module_name, resolved_packages):
    print(f"Resolved {len(resolved_packages)} packages for {module_name}")

dm = DependencyManager(
    pre_resolve_hook=log_start,
    post_resolve_hook=log_complete
)

API Reference

Config Class

A simple data class for holding configuration.

@dataclass
class Config:
    cache_dir: Optional[str] = None
    logger: Optional[logging.Logger] = None
    pre_resolve_hook: Optional[Callable] = None
    post_resolve_hook: Optional[Callable] = None
    install_hook: Optional[Callable] = None

DependencyManager Class

The core class that manages dependency resolution.

class DependencyManager:
    async def resolve_dependencies(self, ...): ...
    async def upgrade_dependencies(self, ...): ...
    def invalidate_cache(self): ...
    def invalidate_module_cache(self, module_name: str): ...

📋 Recent Updates (v1.2.0)

This major release introduces a complete API overhaul, advanced module-based caching, and comprehensive improvements to user experience and performance.

✨ Major New Features

🏗️ Three-Tier API Architecture

  • Simple Functions: re_resolve_dependencies() - Just works with automatic caching
  • Config Object Pattern: Clean configuration without parameter explosion
  • DependencyManager Class: Full control over all aspects
  • Backward Compatible: All existing code continues to work unchanged

📦 Advanced Module-Based Caching

  • Module Separation: Each module caches dependencies independently
  • Selective Resolution: Only re-resolve changed modules (massive performance gains)
  • Individual Invalidation: Clear cache for specific modules
  • Hash-Based Change Detection: Precise tracking of requirement changes

🎯 Intelligent Package Management

  • Canonical Name Normalization: Automatic handling of package-name vs package_name
  • Package Extras Support: Proper handling of package[extra] specifications
  • Package Validation: Verifies cached packages are actually installed
  • Smart Installation: Only installs missing packages

📊 Enhanced Visibility & Debugging

  • Visual Status Indicators: ✅⚡📦🔄 for different operation types
  • Detailed Logging: Clear messages for every cache scenario
  • Debug Information: Comprehensive visibility into cache operations
  • Performance Metrics: Understand cache hit/miss ratios

🛠️ Developer Experience

  • Demo Commands: cdm demo modules and cdm demo cache for visualization
  • Type Safety: Full type hints and IDE support
  • Extensible Hooks: Pre/post resolution and custom installation hooks
  • Clean Configuration: No more parameter explosion

⬆️ Package Upgrades

  • Upgrade Command: cdm upgrade to update all packages to latest versions
  • Selective Upgrades: Upgrade specific packages or from specific requirements files
  • Smart Cache Handling: Automatic cache invalidation and refresh for upgrades
  • Environment Awareness: Respects module/environment separation during upgrades

🔧 API Enhancements

New Config Class:

@dataclass
class Config:
    cache_dir: Optional[str] = None
    logger: Optional[logging.Logger] = None
    pre_resolve_hook: Optional[Callable] = None
    post_resolve_hook: Optional[Callable] = None
    install_hook: Optional[Callable] = None

    def create_manager(self) -> DependencyManager: ...

Enhanced Function Signatures:

# All functions now accept optional config parameter
await re_resolve_dependencies(config=config)
invalidate_dependency_cache(config=config)
invalidate_module_cache(module_name, config=config)

New CLI Commands:

cdm upgrade          # Upgrade packages to latest versions
cdm check            # Verify cached packages are installed
cdm outdated         # Show packages with available updates
cdm demo modules     # Show module separation
cdm demo cache       # Show cache structure

🐛 Critical Bug Fixes

  • Cache Validation Logic: Fixed package extras handling (passlib[bcrypt] detection)
  • Package Name Normalization: Consistent hyphen/underscore handling
  • Misleading Messages: Replaced generic messages with specific status indicators
  • Module Cache Invalidation: Proper per-module cache clearing
  • Path Resolution: Absolute paths for cache directories

📈 Performance Improvements

  • Selective Resolution: Only resolve changed modules instead of everything
  • Smart Package Checking: Canonical name matching for accurate validation
  • Efficient Caching: Module-level granularity reduces unnecessary work
  • Batch Installation: Optimized pip install operations

📚 Documentation & Examples

  • Comprehensive API Reference: All classes, methods, and parameters documented
  • Integration Examples: FastAPI, Django, Flask usage patterns
  • Migration Guide: How to upgrade from old API to new three-tier system
  • Demo System: Interactive visualization of internal mechanics

🔮 Future Enhancements

  • Parallel Resolution: Resolve dependencies for multiple modules at the same time.
  • Dependency Graph Visualization: Create visual representations of your project's dependencies.
  • Security Scanning: Integrate with vulnerability scanners to check your dependencies.

🤝 Contributing

Contributions are welcome! If you'd like to contribute, please ensure that all tests pass, include comprehensive documentation, and follow semantic versioning.

📄 License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chacc_dependency_manager-1.2.0.tar.gz (28.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chacc_dependency_manager-1.2.0-py3-none-any.whl (26.6 kB view details)

Uploaded Python 3

File details

Details for the file chacc_dependency_manager-1.2.0.tar.gz.

File metadata

  • Download URL: chacc_dependency_manager-1.2.0.tar.gz
  • Upload date:
  • Size: 28.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for chacc_dependency_manager-1.2.0.tar.gz
Algorithm Hash digest
SHA256 a7eb138773a6b0c20358849af5cece52a94ae508fdeb113eb7fda0bcd0609665
MD5 b6df48a2be86bbaa79b7ae0058adae07
BLAKE2b-256 0f87872e845177ab75a7d9e1a5c8d14d5bca12343b1b3bc6fd1232b7fd5cf729

See more details on using hashes here.

File details

Details for the file chacc_dependency_manager-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for chacc_dependency_manager-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 115f7cc44dd71dd9151520bf83b8428d5160fb56290713ef25e0ad91e69f0f0f
MD5 d83f41b7b797c734cc88e5ff50f9db23
BLAKE2b-256 6997d3d029fab66ef4c2eb90f71309644154f542e13828aff91aad779fb3cdd7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page