Skip to main content

Python source bundler that produces a single .py file from multi-module projects

Project description

Cribo: Python Source Bundler

PyPI npm codecov Maintainability Rating License: MIT

Cribo is a Rust-based CLI tool that, via fast, heuristically proven bundling, consolidates a scattered Python codebaseโ€”from a single entry point or monorepoโ€”into one idiomatic .py file. This not only streamlines deployment in environments like PySpark, AWS Lambda, and notebooks but also makes ingesting Python codebases into AI models easier and more cost-effective while preserving full functional insights.

What is "Cribo"?

Cribo is named after the Mussurana snake (Clelia clelia), nicknamed "Cribo" in Latin America. Just like the real Cribo specializes in hunting and neutralizing venomous snakes (with a diet that's 70-80% other snakes!), our tool wrangles Python dependencies and circular imports with ease. Brazilian farmers even keep Cribos around for natural pest controlโ€”think of this as the Python ecosystem's answer to dependency chaos. In short:Cribo eats tricky imports for breakfast, so your code doesn't have to!

Features

  • ๐Ÿฆ€ Rust-based CLI based on Ruff's Python AST parser
  • ๐Ÿ Can be installed via pip install cribo or npm install cribo
  • ๐Ÿ˜Ž Contemporary minds can also use uvx cribo or bunx cribo
  • ๐ŸŒฒ Tree-shaking logic to inline only the modules that are actually used
  • ๐Ÿ”„ Circular dependency resolution using Tarjan's strongly connected components (SCC) analysis and function-level lazy import transformations, with detailed diagnostics
  • ๐Ÿงน Unused import trimming to clean up Python files standalone
  • ๐Ÿ“ฆ Requirements generation with optional requirements.txt output
  • ๐Ÿ”ง Configurable import classification and source directories
  • ๐Ÿš€ Fast and memory-efficient
  • ๐Ÿ“Š Performance tracking with built-in benchmarking

Installation

๐Ÿ” Supply Chain Security: All npm and pypi packages include provenance attestations for enhanced security and verification.

From PyPI (Python Package)

pip install cribo

From npm (Node.js CLI)

# Global installation
npm install -g cribo

# One-time use
bunx cribo --help

Binary Downloads

Download pre-built binaries for your platform from the latest release:

  • Linux x86_64: cribo_<version>_linux_x86_64.tar.gz
  • Linux ARM64: cribo_<version>_linux_arm64.tar.gz
  • macOS x86_64: cribo_<version>_darwin_x86_64.tar.gz
  • macOS ARM64: cribo_<version>_darwin_arm64.tar.gz
  • Windows x86_64: cribo_<version>_windows_x86_64.zip
  • Windows ARM64: cribo_<version>_windows_arm64.zip

Each binary includes a SHA256 checksum file for verification.

Package Manager Installation

Aqua

If you use Aqua, add to your aqua.yaml:

registries:
  - type: standard
    ref: latest
packages:
  - name: ophidiarium/cribo@latest

Then run:

aqua install

UBI (Universal Binary Installer)

Using UBI:

# Install latest version
ubi --project ophidiarium/cribo

# Install specific version
ubi --project ophidiarium/cribo --tag v0.4.1

# Install to specific directory
ubi --project ophidiarium/cribo --in /usr/local/bin

From Source

git clone https://github.com/ophidiarium/cribo.git
cd cribo
cargo build --release

Quick Start

Command Line Usage

# Basic bundling
cribo --entry src/main.py --output bundle.py

# Generate requirements.txt
cribo --entry src/main.py --output bundle.py --emit-requirements

# Verbose output (can be repeated for more detail: -v, -vv, -vvv)
cribo --entry src/main.py --output bundle.py -v
cribo --entry src/main.py --output bundle.py -vv    # debug level
cribo --entry src/main.py --output bundle.py -vvv   # trace level

# Custom config file
cribo --entry src/main.py --output bundle.py --config my-cribo.toml

CLI Options

  • -e, --entry <PATH>: Entry point Python script (required)
  • -o, --output <PATH>: Output bundled Python file (required)
  • -v, --verbose...: Increase verbosity level. Can be repeated for more detail:
    • No flag: warnings and errors only
    • -v: informational messages
    • -vv: debug messages
    • -vvv or more: trace messages
  • -c, --config <PATH>: Custom configuration file path
  • --emit-requirements: Generate requirements.txt with third-party dependencies
  • --target-version <VERSION>: Target Python version (e.g., py38, py39, py310, py311, py312, py313)
  • -h, --help: Print help information
  • -V, --version: Print version information

The verbose flag is particularly useful for debugging bundling issues. Each level provides progressively more detail:

# Default: only warnings and errors
cribo --entry main.py --output bundle.py

# Info level: shows progress messages
cribo --entry main.py --output bundle.py -v

# Debug level: shows detailed processing steps
cribo --entry main.py --output bundle.py -vv

# Trace level: shows all internal operations
cribo --entry main.py --output bundle.py -vvv

The verbose levels map directly to Rust's log levels and can also be controlled via the RUST_LOG environment variable for more fine-grained control:

# Equivalent to -vv
RUST_LOG=debug cribo --entry main.py --output bundle.py

# Module-specific logging
RUST_LOG=cribo::bundler=trace,cribo::resolver=debug cribo --entry main.py --output bundle.py

Configuration

Cribo supports hierarchical configuration with the following precedence (highest to lowest):

  1. CLI-provided config (--config flag)
  2. Environment variables (with CRIBO_ prefix)
  3. Project config (cribo.toml in current directory)
  4. User config (~/.config/cribo/cribo.toml)
  5. System config (/etc/cribo/cribo.toml on Unix, %SYSTEMDRIVE%\ProgramData\cribo\cribo.toml on Windows)
  6. Default values

Configuration File Format

Create a cribo.toml file:

# Source directories to scan for first-party modules
src = ["src", ".", "lib"]

# Known first-party module names
known_first_party = [
    "my_internal_package",
]

# Known third-party module names
known_third_party = [
    "requests",
    "numpy",
    "pandas",
]

# Whether to preserve comments in the bundled output
preserve_comments = true

# Whether to preserve type hints in the bundled output
preserve_type_hints = true

# Target Python version for standard library checks
# Supported: "py38", "py39", "py310", "py311", "py312", "py313"
target-version = "py310"

Environment Variables

All configuration options can be overridden using environment variables with the CRIBO_ prefix:

# Comma-separated lists
export CRIBO_SRC="src,lib,custom_dir"
export CRIBO_KNOWN_FIRST_PARTY="mypackage,myotherpackage"
export CRIBO_KNOWN_THIRD_PARTY="requests,numpy"

# Boolean values (true/false, 1/0, yes/no, on/off)
export CRIBO_PRESERVE_COMMENTS="false"
export CRIBO_PRESERVE_TYPE_HINTS="true"

# String values
export CRIBO_TARGET_VERSION="py312"

Configuration Locations

  • Project: ./cribo.toml
  • User:
    • Linux/macOS: ~/.config/cribo/cribo.toml
    • Windows: %APPDATA%\cribo\cribo.toml
  • System:
    • Linux/macOS: /etc/cribo/cribo.toml or /etc/xdg/cribo/cribo.toml
    • Windows: %SYSTEMDRIVE%\ProgramData\cribo\cribo.toml

How It Works

  1. Module Discovery: Scans configured source directories to discover first-party Python modules
  2. Import Classification: Classifies imports as first-party, third-party, or standard library
  3. Dependency Graph: Builds a dependency graph and performs topological sorting
  4. Circular Dependency Resolution: Detects and intelligently resolves function-level circular imports
  5. Tree Shaking: Only includes modules that are actually imported (directly or transitively)
  6. Code Generation: Generates a single Python file with proper module separation
  7. Requirements: Optionally generates requirements.txt with third-party dependencies

Architecture Overview

Cribo uses a two-stage architecture for clean separation of concerns:

  • BundleOrchestrator (orchestrator.rs): Handles the high-level bundling workflow

    • Module discovery and import resolution
    • Dependency graph construction and analysis
    • Circular dependency detection using Tarjan's algorithm
    • Coordination of the overall bundling process
  • HybridStaticBundler (code_generator.rs): Manages Python code generation

    • Implements the sys.modules-based bundling approach
    • Generates deterministic module names using content hashing
    • Handles AST transformations and import rewriting
    • Integrates unused import trimming
    • Produces the final bundled Python output

Output Structure

The bundled output follows this structure:

#!/usr/bin/env python3
# Generated by Cribo - Python Source Bundler

# Preserved imports (stdlib and third-party)
import os
import sys
import requests

# โ”€ Module: utils/helpers.py โ”€
def greet(name: str) -> str:
    return f"Hello, {name}!"

# โ”€ Module: models/user.py โ”€
class User:
    def **init**(self, name: str):
        self.name = name

# โ”€ Entry Module: main.py โ”€
from utils.helpers import greet
from models.user import User

def main():
    user = User("Alice")
    print(greet(user.name))

if **name** == "**main**":
    main()

Use Cases

PySpark Jobs

Deploy complex PySpark applications as a single file:

cribo --entry spark_job.py --output dist/spark_job_bundle.py --emit-requirements
spark-submit dist/spark_job_bundle.py

AWS Lambda

Package Python Lambda functions with all dependencies:

cribo --entry lambda_handler.py --output deployment/handler.py
# Upload handler.py + requirements.txt to Lambda

Special Considerations

Pydantic Compatibility

Cribo preserves class identity and module structure to ensure Pydantic models work correctly:

# Original: models/user.py
class User(BaseModel):
    name: str

# Bundled output preserves **module** and class structure

Pandera Decorators

Function and class decorators are preserved with their original module context:

# Original: validators/schemas.py
@pa.check_types
def validate_dataframe(df: DataFrame[UserSchema]) -> DataFrame[UserSchema]:
    return df

# Bundled output maintains decorator functionality

Circular Dependencies

Cribo intelligently handles circular dependencies with advanced detection and resolution:

Resolvable Cycles (Function-Level)

Function-level circular imports are automatically resolved and bundled successfully:

# module_a.py
from module_b import process_b
def process_a(): return process_b() + "->A"

# module_b.py  
from module_a import get_value_a
def process_b(): return f"B(using_{get_value_a()})"

Result: โœ… Bundles successfully with warning log

Unresolvable Cycles (Module Constants)

Temporal paradox patterns are detected and reported with detailed diagnostics:

# constants_a.py
from constants_b import B_VALUE
A_VALUE = B_VALUE + 1  # โŒ Unresolvable

# constants_b.py
from constants_a import A_VALUE  
B_VALUE = A_VALUE * 2  # โŒ Temporal paradox

Result: โŒ Fails with detailed error message and resolution suggestions:

Unresolvable circular dependencies detected:

Cycle 1: constants_b โ†’ constants_a
  Type: ModuleConstants
  Reason: Module-level constant dependencies create temporal paradox - cannot be resolved through bundling

Comparison with Other Tools

Tool Language Tree Shaking Import Cleanup Circular Deps PySpark Ready Type Hints
Cribo Rust โœ… โœ… โœ… Smart Resolution โœ… โœ…
PyInstaller Python โŒ โŒ โŒ Fails โŒ โœ…
Nuitka Python โŒ โŒ โŒ Fails โŒ โœ…
Pex Python โŒ โŒ โŒ Fails โŒ โœ…

Development

Building from Source

git clone https://github.com/ophidiarium/cribo.git
cd cribo

# Build Rust CLI
cargo build --release

# Build Python package
pip install maturin
maturin develop

# Run tests
cargo test

Performance Benchmarking

Cribo uses Bencher.dev for comprehensive performance tracking with statistical analysis and regression detection:

# Run all benchmarks
cargo bench

# Save a performance baseline
./scripts/bench.sh --save-baseline main

# Compare against baseline
./scripts/bench.sh --baseline main

# View detailed HTML report
./scripts/bench.sh --open

Key benchmarks:

  • End-to-end bundling: Full project bundling performance (Criterion.rs)
  • AST parsing: Python code parsing speed (Criterion.rs)
  • Module resolution: Import resolution efficiency (Criterion.rs)
  • CLI performance: Command-line interface speed (Hyperfine)

CI Integration:

  • Automated PR comments with performance comparisons and visual charts
  • Historical performance tracking with trend analysis
  • Statistical significance testing to prevent false positives
  • Dashboard available at bencher.dev/perf/cribo

See docs/benchmarking.md for detailed benchmarking guide.

Project Structure

cribo/
โ”œโ”€โ”€ src/                    # Rust source code
โ”‚   โ”œโ”€โ”€ main.rs            # CLI entry point
โ”‚   โ”œโ”€โ”€ orchestrator.rs    # Bundle orchestration and coordination
โ”‚   โ”œโ”€โ”€ code_generator.rs  # Python code generation (sys.modules approach)
โ”‚   โ”œโ”€โ”€ resolver.rs        # Import resolution
โ”‚   โ”œโ”€โ”€ dependency_graph.rs # Dependency analysis and circular detection
โ”‚   โ”œโ”€โ”€ unused_imports.rs  # Unused import trimming
โ”‚   โ””โ”€โ”€ ...
โ”œโ”€โ”€ python/cribo/          # Python package
โ”œโ”€โ”€ tests/                 # Test suites
โ”‚   โ””โ”€โ”€ fixtures/          # Test projects
โ”œโ”€โ”€ docs/                  # Documentation
โ””โ”€โ”€ Cargo.toml            # Rust dependencies

Contributing

Development Setup

# Clone the repository
git clone https://github.com/ophidiarium/cribo.git
cd cribo

# Install Rust toolchain and components
rustup component add llvm-tools-preview
cargo install cargo-llvm-cov

# Build Rust CLI
cargo build --release

# Build Python package
pip install maturin
maturin develop

# Run tests
cargo test

Code Coverage

The project uses cargo-llvm-cov for code coverage analysis:

# Generate text coverage report (Istanbul-style)
cargo coverage-text

# Generate HTML coverage report and open in browser
cargo coverage

# Generate LCOV format for CI
cargo coverage-lcov

# Clean coverage data
cargo coverage-clean

Branch Coverage (Experimental):

# Requires nightly Rust for branch coverage
cargo +nightly coverage-branch

Coverage reports are automatically generated in CI and uploaded to Codecov. See docs/coverage.md for detailed coverage documentation.

Note: If you see zeros in the "Branch Coverage" column in HTML reports, this is expected with stable Rust. Branch coverage requires nightly Rust and is experimental.

Contributing Guidelines

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests
  5. Submit a pull request

License

This project uses a dual licensing approach:

What this means

  • For the source code: You can freely use, modify, and distribute the code for any purpose with minimal restrictions under the MIT license.
  • For the documentation: You can share, adapt, and use the documentation for any purpose (including commercially) as long as you provide appropriate attribution under CC BY 4.0.

See the LICENSE file for the MIT license text and docs/LICENSE for the CC BY 4.0 license text.

Acknowledgments

  • Ruff: Python AST parsing and import resolution logic inspiration
  • Maturin: Python-Rust integration

Roadmap

  • Smart circular dependency resolution - โœ… Completed in v0.4.4+
  • Source maps for debugging
  • Parallel processing
  • Package flattening mode
  • Comment and type hint stripping
  • Plugin system for custom transformations

For more examples and detailed documentation, visit our documentation site.

For detailed documentation on the unused import trimmer, see docs/unused_import_trimmer.md.

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

cribo-0.4.26.tar.gz (206.7 kB view details)

Uploaded Source

Built Distributions

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

cribo-0.4.26-py3-none-win_arm64.whl (2.0 MB view details)

Uploaded Python 3Windows ARM64

cribo-0.4.26-py3-none-win_amd64.whl (2.2 MB view details)

Uploaded Python 3Windows x86-64

cribo-0.4.26-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

cribo-0.4.26-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

cribo-0.4.26-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.4 MB view details)

Uploaded Python 3manylinux: glibc 2.5+ x86-64

cribo-0.4.26-py3-none-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

cribo-0.4.26-py3-none-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file cribo-0.4.26.tar.gz.

File metadata

  • Download URL: cribo-0.4.26.tar.gz
  • Upload date:
  • Size: 206.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cribo-0.4.26.tar.gz
Algorithm Hash digest
SHA256 b7818e46c54ec9c049c3f8410ed3fa9da356a7d49dfc287b1ab2c30dc407db39
MD5 a07fc93513a5900a09bc86d21ca69c55
BLAKE2b-256 a972f3ce7c8bed99fc6c88f78ea1f322ea9025759fc9073c6ea6409b94aaf00f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cribo-0.4.26.tar.gz:

Publisher: release.yml on ophidiarium/cribo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cribo-0.4.26-py3-none-win_arm64.whl.

File metadata

  • Download URL: cribo-0.4.26-py3-none-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cribo-0.4.26-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 a50b35184505dee66b13902535bd6e6f4dcf7699f9e63df109b14a845c75310a
MD5 470902dc7762d88458cebc2dc581bf30
BLAKE2b-256 c1422d182c768d0ef924391207b1a372eefe52f6d0f7676c98115d6f80f0833f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cribo-0.4.26-py3-none-win_arm64.whl:

Publisher: release.yml on ophidiarium/cribo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cribo-0.4.26-py3-none-win_amd64.whl.

File metadata

  • Download URL: cribo-0.4.26-py3-none-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cribo-0.4.26-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 63842356cc41e961e2847b12c8c192642e1adc8258fd358e2b5e88fdcaed7afd
MD5 276094ce672d4dee8bccccdef1fc8ec4
BLAKE2b-256 e28374883460d33ca47632f63271716544409c10c06a84c4d8f099dd90431d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for cribo-0.4.26-py3-none-win_amd64.whl:

Publisher: release.yml on ophidiarium/cribo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cribo-0.4.26-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cribo-0.4.26-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4be5ab71a7036422e99a489bb4e68e8d28eb7ced81b19901c5433a8d40ea6a4c
MD5 d3928bd56f3153a61fd5de4a38e11afc
BLAKE2b-256 f184022fa25f7804f453d236bd8513c2b3c24e1c8a85f72241d1043d79dff0da

See more details on using hashes here.

Provenance

The following attestation bundles were made for cribo-0.4.26-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ophidiarium/cribo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cribo-0.4.26-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cribo-0.4.26-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 090dd3b11bd7424615c907a002f26fcf6f19d63f6ec19187ff4e96b227891032
MD5 15f221899106e618aca75b01e9092c23
BLAKE2b-256 838053e5e7a836440c05ca7aff0ca91850f028c43186eeeabcc2fa8fdff98b5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cribo-0.4.26-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ophidiarium/cribo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cribo-0.4.26-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for cribo-0.4.26-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 34e3ecadd6e25532d2ed2941bf4eba5fd3a024dc12bf6af680f85b6447c0d825
MD5 ba5bf767a649791eebb534dc8496657d
BLAKE2b-256 772fd75225bec74da0679724e39026508454d5ee32ced1c8bc2c6d4e70a04af4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cribo-0.4.26-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl:

Publisher: release.yml on ophidiarium/cribo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cribo-0.4.26-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cribo-0.4.26-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fefeac0ea04961767b2b8d177bba2fbcec178915065318cdaff2a24572a2eba8
MD5 884127f7bdb779e93b9581c0a101b7c2
BLAKE2b-256 f44955d11ff0df2a4f29403360a28b6aeeb9ee94f3ac109972eee52cfc3b3ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cribo-0.4.26-py3-none-macosx_11_0_arm64.whl:

Publisher: release.yml on ophidiarium/cribo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cribo-0.4.26-py3-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cribo-0.4.26-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 902ed3e012dea96a3ec0569fe1002907a7fdd4cf52b6003ac1d490c86ab91b04
MD5 83f8c5988876996596e46c965d521be6
BLAKE2b-256 1c52c65636283def52323fb8111d6db5c5956315b122c95bc39225c1f0f230bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cribo-0.4.26-py3-none-macosx_10_12_x86_64.whl:

Publisher: release.yml on ophidiarium/cribo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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