A fast, high-confidence Python dead-code analyzer.
Project description
Culler
Culler is a fast, high-confidence dead-code analyzer for Python projects.
It is built in Rust, distributed as a single command-line tool, and designed to find dead Python code without turning ordinary public APIs, exports, tests, or dynamic Python edges into noisy findings.
culler check .
Left: median wall-clock runtime, where lower is better. Right: F1 score, the balance between precision and recall, where higher is better.
Benchmark: 15 realistic Python projects, 57,068 lines, 715 expected findings, and comparisons against Vulture and deadcode. Results are corpus-specific; the methodology and reproduction commands are below.
Highlights
- High-confidence findings by default. Culler reports the findings it can support strongly, and keeps review-confidence findings available separately.
- Whole-project reachability for applications. Production roots let Culler identify code that is unreachable from known entry points.
- Conservative library analysis. Exports, public surfaces, tests, and dynamic behavior are handled carefully to avoid noisy reports.
- Useful without heavy setup. Basic unused-code checks work with little or
no configuration, and deeper reachability is enabled with
pyproject.toml. - Automation-friendly output. JSON output uses stable rule and diagnostic identifiers for editors, dashboards, CI, and benchmark tooling.
Installation
The recommended installation methods for the CLI are uv tool and pipx:
uv tool install culler
pipx install culler
You can also install it into an existing Python environment:
python -m pip install culler
The PyPI package installs the compiled culler binary. It does not expose a
Python import API yet.
Quick Start
Run Culler on the current project:
culler check .
Emit machine-readable JSON:
culler check . --format json
Show review-confidence findings as well as high-confidence findings:
culler check . --show-review
Explain a specific candidate or finding:
culler explain <candidate-or-finding-id> .
Exit codes are intentionally small:
| Code | Meaning |
|---|---|
0 |
Analysis completed without default-visible findings. |
1 |
Analysis completed and default-visible findings were reported. |
2 |
Input, configuration, parse, or completeness error. |
Configuration
Culler reads configuration from pyproject.toml.
[tool.culler]
src = "src"
mode = "auto"
target-python = "3.12"
For applications, declare production roots when you want reachability findings:
[tool.culler]
src = "src"
mode = "application"
root_coverage = "complete"
roots = ["my_app.cli:main"]
For libraries, Culler treats exported and externally visible surfaces more conservatively:
[tool.culler]
src = "src"
mode = "library"
Useful fields:
| Field | Purpose |
|---|---|
src |
Source root or roots to analyze. |
mode |
auto, application, or library. |
root_coverage |
partial or complete when roots are known. |
roots |
Application entry points such as pkg.cli:main. |
tests |
Test paths when they are not discoverable conventionally. |
target-python |
Python syntax/semantic target, currently 3.10 through 3.15. |
exclude |
Glob patterns to exclude from analysis. |
allow_partial |
Permit partial analysis without escalating to exit code 2. |
Output and Rules
Text output is optimized for local development and CI logs. JSON output is intended for editors, dashboards, benchmarks, and automation.
culler check . --format json
Rule IDs are stable machine-readable identifiers:
| Rule | Finding |
|---|---|
CULL001 |
Unreferenced function. |
CULL002 |
Unreferenced class. |
CULL003 |
Root-unreachable function. |
CULL004 |
Root-unreachable class. |
CULL005 |
Unused import binding. |
CULL006 |
Unused local binding. |
CULL007 |
Unreachable statement range. |
CULL008 |
Unused private method. |
Diagnostic IDs such as CULL_P0101 describe analysis, parsing, or
configuration problems.
Benchmark Methodology
The benchmark compares Culler with Vulture and deadcode on one fixed corpus of artificial but realistic Python projects. The projects are artificial because precision and recall need ground truth; many real repositories contain little confirmed dead code, and exhaustive manual labeling is subjective. The corpus is designed to resemble code developers commonly inherit: services, libraries, CLIs, workers, pipelines, plugin systems, configuration packages, and utility-heavy AI-era codebases.
| Scope | Value |
|---|---|
| Projects | 15 |
| Python files | 374 |
| Python LOC | 57,068 |
| Expected findings | 715 |
| Clean projects | 2 |
| Large or noisy projects | 2 |
The expected findings live under benchmark/expected/ and use comparable
categories: unused imports, unused locals, unreachable statements, unused
functions, unused classes, and unused private methods.
Tool Scope
| Tool | Why included |
|---|---|
| Culler | Subject under evaluation. |
| Vulture | Classic Python dead-code detector. |
| deadcode | Newer whole-codebase Python unused-code detector. |
Ruff, Pylint, Pyflakes, Flake8, autoflake, pycln, and unimport are not included in the headline comparison. They overlap on some unused-import or unused-local checks, but they are linters or cleanup tools rather than direct whole-project dead-code analyzers.
Scoring
Every expected finding not matched by a tool is a false negative. Every parsed tool finding in a scoreable category that does not match an expected finding is a false positive, including findings in clean projects. Matching is deterministic by category, path, symbol name where relevant, and source span; duplicate reports count once as a true positive and then as false positives.
Culler's headline score uses high-confidence findings. The benchmark also reports a Culler high-plus-review aggregate, which includes review-confidence findings from the same Culler JSON run. It does not represent a separate timed CLI invocation.
Runtime
Runtime includes subprocess startup time. That reflects command-line user experience and avoids special-casing tools written in different languages. By default, each tool gets one warmup run and five measured runs per project; the report uses median wall time. Result JSON records command lines, tool versions, Python version, OS, CPU, memory, and the Culler commit.
Peak RSS is recorded where /usr/bin/time -l exposes it. If unavailable, the
result uses null.
Running the Benchmark
Validate the corpus and expected files:
python3 benchmark/run.py --validate-only
Run the benchmark runner self-tests:
python3 benchmark/test_run.py
Build Culler and run the full benchmark:
cargo build --release
python3 benchmark/run.py \
--culler target/release/culler \
--tools culler,vulture,deadcode \
--runs 5 \
--results benchmark/results/latest.json
Generated reports are written under benchmark/results/ and ignored by
default. Raw tool outputs are retained under benchmark/results/raw/.
Development
Prerequisites:
- Rust 1.82 or newer
- Python 3.10 or newer
uvfor packaging and benchmark helper commands
Core checks:
cargo fmt --all --check
cargo check
cargo clippy --all-targets --all-features -- -D warnings
cargo test
python3 benchmark/test_run.py
python3 benchmark/run.py --validate-only
Build the PyPI package locally:
uvx maturin build --release --out dist --sdist
uvx twine check dist/*
Status
Culler is pre-1.0 software. Rule IDs are intended to be stable, but CLI,
configuration, and JSON output details may still evolve before 1.0.
Releases use reviewed PRs and changelog updates. See
CONTRIBUTING.md
for commit and release guidance.
License
Culler is released under the MIT License. See
LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file culler-0.1.1.tar.gz.
File metadata
- Download URL: culler-0.1.1.tar.gz
- Upload date:
- Size: 153.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba0aeda0839801aedfc33367d820614b4e4f47f5a5466a99986deb3c80e12b99
|
|
| MD5 |
8f43d9702191e59822ae5836afdbb091
|
|
| BLAKE2b-256 |
9c9334f4f6e23ac8c1a879eaafbfcff3807d6cda0b8e860441a1f3184112dff9
|
Provenance
The following attestation bundles were made for culler-0.1.1.tar.gz:
Publisher:
release.yml on beaubhp/culler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
culler-0.1.1.tar.gz -
Subject digest:
ba0aeda0839801aedfc33367d820614b4e4f47f5a5466a99986deb3c80e12b99 - Sigstore transparency entry: 2014012345
- Sigstore integration time:
-
Permalink:
beaubhp/culler@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/beaubhp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file culler-0.1.1-py3-none-win_amd64.whl.
File metadata
- Download URL: culler-0.1.1-py3-none-win_amd64.whl
- Upload date:
- Size: 2.4 MB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d646694541fc8dcd257f6562a98123e551fc28aa8955b68f01bb7734516e6b6
|
|
| MD5 |
a1fc171f0baf726f6ab1b22d0fe37059
|
|
| BLAKE2b-256 |
8db5342d25a4c03745fab6a80bb93700bf9dcdbd468db8065aa108cabbef9da1
|
Provenance
The following attestation bundles were made for culler-0.1.1-py3-none-win_amd64.whl:
Publisher:
release.yml on beaubhp/culler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
culler-0.1.1-py3-none-win_amd64.whl -
Subject digest:
6d646694541fc8dcd257f6562a98123e551fc28aa8955b68f01bb7734516e6b6 - Sigstore transparency entry: 2014012451
- Sigstore integration time:
-
Permalink:
beaubhp/culler@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/beaubhp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file culler-0.1.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: culler-0.1.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: Python 3, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52e83509a80506312e40131f3c93c905bc6f0f5557d11e0507ce83ac6834e54c
|
|
| MD5 |
74b78be554c849b23837246c828e27c2
|
|
| BLAKE2b-256 |
d2b29792294b0bd60d18aebbf889a73a7be0637793376929295f7220e84f1462
|
Provenance
The following attestation bundles were made for culler-0.1.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on beaubhp/culler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
culler-0.1.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
52e83509a80506312e40131f3c93c905bc6f0f5557d11e0507ce83ac6834e54c - Sigstore transparency entry: 2014012983
- Sigstore integration time:
-
Permalink:
beaubhp/culler@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/beaubhp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file culler-0.1.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: culler-0.1.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: Python 3, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
202ebfe41e5db99901bdb6d4048697d6efb932d223d73b835f3db85b3748b15f
|
|
| MD5 |
19b97931c797542858ba234eb50d2279
|
|
| BLAKE2b-256 |
3167f1acf9239f103e8b96a7924e01746e573985a5360d192b2b0642451f8ee5
|
Provenance
The following attestation bundles were made for culler-0.1.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on beaubhp/culler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
culler-0.1.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
202ebfe41e5db99901bdb6d4048697d6efb932d223d73b835f3db85b3748b15f - Sigstore transparency entry: 2014012721
- Sigstore integration time:
-
Permalink:
beaubhp/culler@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/beaubhp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file culler-0.1.1-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: culler-0.1.1-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: Python 3, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6350852f474a3a520f4f254f41c25bd64ce5982e3069c529c52d07c0744961b1
|
|
| MD5 |
03cee87abf1a70f637e40eb79ed50a1d
|
|
| BLAKE2b-256 |
0d212883f5324b992c98ed434c1b65fd0981a08af327dc6961fb59014041d3fc
|
Provenance
The following attestation bundles were made for culler-0.1.1-py3-none-macosx_11_0_arm64.whl:
Publisher:
release.yml on beaubhp/culler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
culler-0.1.1-py3-none-macosx_11_0_arm64.whl -
Subject digest:
6350852f474a3a520f4f254f41c25bd64ce5982e3069c529c52d07c0744961b1 - Sigstore transparency entry: 2014012566
- Sigstore integration time:
-
Permalink:
beaubhp/culler@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/beaubhp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file culler-0.1.1-py3-none-macosx_10_12_x86_64.whl.
File metadata
- Download URL: culler-0.1.1-py3-none-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: Python 3, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
459266f0cef8c19ffa1bb4c5636a0bc3b9f2774e528ad64c6152d7a5878da045
|
|
| MD5 |
16339832d736fc1aa1cccadd0d730a18
|
|
| BLAKE2b-256 |
47fcf87b40357e6c3078460d69e3af9b30ee5611d85511bf4594bc96a4ae323f
|
Provenance
The following attestation bundles were made for culler-0.1.1-py3-none-macosx_10_12_x86_64.whl:
Publisher:
release.yml on beaubhp/culler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
culler-0.1.1-py3-none-macosx_10_12_x86_64.whl -
Subject digest:
459266f0cef8c19ffa1bb4c5636a0bc3b9f2774e528ad64c6152d7a5878da045 - Sigstore transparency entry: 2014012858
- Sigstore integration time:
-
Permalink:
beaubhp/culler@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/beaubhp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6ea75cf14f853039fedb5485bb192917e6c00f75 -
Trigger Event:
workflow_dispatch
-
Statement type: