Skip to main content

Fast, deterministic cleanup passes for pre-commit: local imports, docstring conventions, string annotations

Project description

sweep

Fast, deterministic cleanup passes for pre-commit, written in Rust on top of tree-sitter. Python first; the engine is language-agnostic so more grammars can be added cheaply.

sweep enforces the conventions ruff doesn't — one docstring style with full conversion, justified-or-hoisted imports, house naming rules — and declutters LLM/GPT-generated code: narration comments that restate the code, docstrings that echo the function name, parameter docs that drifted from the signature, type declarations duplicated between docstring and annotations, stray emoji.

Each rule is one independent pass: it parses the file once, reports diagnostics, and (optionally) carries a fix. --fix applies all non-conflicting fixes and re-checks until nothing is left to do.

Getting started

As a pre-commit hook

# .pre-commit-config.yaml
repos:
  - repo: https://github.com/hmsgit/sweep
    rev: v0.1.0b4
    hooks:
      - id: sweep        # check only
      # or:
      - id: sweep-fix    # check + fix in place

The hook builds with cargo on first install (language: rust) and is cached by pre-commit afterwards. A Rust toolchain is required once, on first install.

sweep-fix is just sweep with --fix baked in; any CLI flag can also be passed through pre-commit's args, since pre-commit runs entry + args + filenames:

      - id: sweep
        args: [--fix]                      # same as sweep-fix
      - id: sweep
        args: [--select, imports-ban-local]    # run a single rule

As a CLI

$ pip install codesweep       # installs the `sweep` binary (see Naming)
$ # or from source:
$ cargo install --path .
$ sweep check src/            # report findings
$ sweep check src/ --fix      # apply fixes in place
$ sweep rules                 # list rules

Most repos need no configuration: defaults are reST docstrings, error levels for the three main rules (info for line length), and line length from ruff's config when present.

Developing

$ cargo test                  # unit + fixture round-trip tests
$ cargo clippy --all-targets && cargo fmt --check
$ cargo run -- check tests/fixtures/hoist

See Extending for how to add a rule or a language.


Rules

rule detects --fix
imports-ban-local import / from … import inside functions hoists to the module import block, section-sorted
docstring-style docstrings following a different convention than configured; wrong inline markup converts to the configured convention; fixes markup
string-annotations quoted type annotations like x: "Foo" unquotes; inserts from __future__ import annotations
docstring-start multi-line docstrings whose content starts on the opening-quote line moves the content to the next line, aligned with the quotes
docstring-line-length docstring lines exceeding the line length info by default (report only); at warn/error re-flows prose

House-style rules — opt-in, off by default (see House-style rules):

rule detects --fix
dict-style dicts built contrary to the configured form (literal or function) rewrites in the configured direction
annotate-module-const UPPER_CASE module constants without a Final annotation adds : Final / wraps as Final[T], inserts the typing import
casing-enum-key enum member names not in the configured case warn-only (cross-file rename)
casing-enum-val enum string values not in the configured case warn-only (changes serialized data)
casing-module-const module constant names not in the configured case warn-only (cross-file rename)
allowed-emojis any emoji/unicode icon (pictographs, ✓/✗, arrows, shapes) not in the allowed set — enabled by setting allowed-emojis deletes in comments/docstrings; warn-only inside strings
comments-no-echo narration comments that restate the adjacent code (# create the payload) deletes the comment
docstring-sync documented parameters drifted from the signature (stale/missing entries) rebuilds the param section in signature order
docstring-no-echo docstrings that only restate the function name (def send_email(): """Send email.""") deletes the docstring
docstring-no-type-echo :type x: / x (int): entries identical to the signature annotation drops the echoed types

imports-ban-local

Imports belong at module level. Function-level imports usually exist for one of two reasons — breaking an import cycle, or deferring a heavy/optional dependency — and both deserve to be visible and justified:

def build():
    from app.models import Model  # sweep: avoid-cycle models imports builders

Everything unjustified is flagged. Under --fix (at the default error level, or warn) the import is moved into the module's top import region:

  • Sections follow the common isort layout: __future__, standard library, third-party, first-party, relative. Section membership comes from an embedded copy of sys.stdlib_module_names plus the configured or discovered first-party package names.
  • Position within the section is alphabetical by dotted module path (case-insensitive).
  • If an identical import already exists at top level, the local copy is simply removed.
  • If the import was the only statement in its block, it is replaced with pass to keep the code valid.

Warned about but never auto-hoisted (the fix would change behavior):

  • imports under try / if / with / loops inside the function (e.g. try: import orjson / except ImportError),
  • relative imports inside functions (almost always cycle dodges),
  • import lines sharing the line with other code or a trailing comment.

Blank lines between import sections are not managed; run ruff/isort formatting after --fix if you care about exact spacing.

docstring-style

Enforces one docstring convention across the project: reST (Sphinx field lists), Google, or NumPy. Detection is based on section signatures — Args:/Returns: headers (Google), dash-underlined Parameters headers (NumPy), :param x: field lists (reST). Plain-prose docstrings with no sections match any convention and are never flagged.

Under --fix, mismatched docstrings are converted through a style-neutral IR. Supported fields and their mappings:

IR reST Google NumPy
params :param x: + :type x: Args:x (int): … Parametersx : int
returns :returns: + :rtype: Returns:int: … Returnsint + desc
yields :yields: + :ytype: Yields: Yields
raises :raises X: Raises:X: … RaisesX + desc
attributes :ivar x: + :vartype x: Attributes: Attributes
extras kept verbatim Examples: etc., kept verbatim header + dashes, kept verbatim

Conversion is lossless or not at all: anything the parser can't represent faithfully (unknown reST fields, directives, flush-left prose after fields, multiple NumPy return entries, f-string/concatenated docstrings, non-triple quotes that would need to become multi-line) downgrades the finding to warn-only. Summary and description prose, multi-paragraph descriptions and per-field continuation lines survive the round trip.

Inline markup: when the convention is reST, the house style is single-backtick spans — double-backtick reST literals are flagged and fixed down to single. (Strict-reST purists note: this is a deliberate house-style choice, not textbook reST.) Roles like :func:name and doctest lines are left alone; no markup check runs for Google/NumPy conventions.

string-annotations

Quoted "forward reference" annotations predate PEP 563; with from __future__ import annotations every annotation is lazy and the quotes are noise:

def fetch(item: "Item") -> "list[Item]": ...
# becomes
from __future__ import annotations
def fetch(item: Item) -> list[Item]: ...

The fix unquotes the annotation and inserts the future import (once, after the module docstring) if missing. Strings that are values, not forward references, are never touched:

  • contents of Literal[...] (any nesting, typing.Literal included),
  • metadata arguments of Annotated[T, ...] (the first element is a type and is unquoted),
  • arguments of calls inside annotations,
  • f-strings, concatenated and multi-line strings.

Caveat: code that inspects annotations at runtime with typing.get_type_hints() behaves identically, but code reading __annotations__ raw will see strings after the future import lands — that is PEP 563 semantics, not a sweep quirk. Suppress per line if you depend on eager annotations.

docstring-start

Multi-line docstrings start their content on the line after the opening quotes, aligned with them (pydocstyle's D213 shape):

def emit(scope):
    """
    Emit a change event for consumers.

    :param scope: tenant scope of the event.
    """

Single-line docstrings stay inline. Closing quotes are never touched — they may share the last content line or sit on their own line, whichever the author wrote. Docstring rewrites from other rules (conversion, rewrap) emit this shape directly.

docstring-line-length

Reports every docstring line (quotes and indentation included) that exceeds the configured line length. Code lines are ruff's business (E501); this rule only measures docstrings.

The default level is info: report only, never rewritten, never fails the run. Opt into rewriting by raising the level:

[tool.sweep.rules.docstring-line-length]
level = "warn"   # or "error"

Then --fix re-flows docstring prose — greedy word wrap, paragraph boundaries preserved, budgeting the base indentation and the opening quotes on the first line. With re-flow enabled, docstring-style conversions wrap their output too, so a Google→reST conversion lands within the limit in one pass.

Never re-flowed: bullet lists, numbered lists, doctest lines, reST directives, and :: literal-block introducers. A line that cannot be shortened (one long word, a URL) keeps its warning and is left alone.

House-style rules

The core rules above are on by default; these six encode house conventions and stay off until a project opts in:

[tool.sweep.rules]
dict-style = "func"              # literal | function/func (shorthand enables at warn)
annotate-module-const = "warn"
casing-enum-key = "lower"        # lower | upper (shorthand enables at warn)
casing-enum-val = "lower"
casing-module-const = "lower"
allowed-emojis = ""              # presence enables the rule; "" = no exceptions
comments-no-echo = "warn"
docstring-sync = "warn"
docstring-no-echo = "warn"
docstring-no-type-echo = "warn"

Notes:

  • dict-style converts only what it can express faithfully: non-string or non-identifier keys, Python keywords, duplicate keys, or comments inside the literal. Splats pass through ({**a, "b": 1}dict(**a, b=1)).

  • annotate-module-const only annotates; whether the name should be UPPER_CASE or lower_case is casing-module-const's business — the two are independent knobs.

  • The casing rules never autofix: renaming an identifier safely needs cross-file refactoring, and changing an enum's string value changes serialized data. They warn; a human renames.

  • Constants are recognized by SCREAMING_CASE or an existing Final annotation; plain lowercase module assignments are indistinguishable from module state and are never flagged.

  • Casing rules take a table form too: casing-module-const = { level = "error", case = "upper" }. LLM-noise rules — the four at the bottom target artifacts that LLM-generated code leaves behind:

  • comments-no-echo flags a comment when every content word either appears among the adjacent code line's identifier tokens or is a generic narration verb (initialize, loop, call, …), with at least one real token match. # create the payload above payload = create_payload(...) goes; # deliver with retries because upstream flakes stays — it says why. Works for standalone comments (covering the line below) and trailing comments. Shebangs, encoding cookies, URLs and directives are exempt. Heuristic by nature: run it at warn and review the first --fix diff.

  • docstring-sync only fires when the docstring documents parameters at all — whether to document is a style choice, documenting the wrong ones is drift. Stale entries (renamed/removed params) and missing ones are reported; the fix rebuilds the section in signature order, keeping existing descriptions and stubbing missing entries.

  • docstring-no-echo compares the docstring's words (minus glue words) against the function's name and parameter tokens; if nothing new is said and there are no sections, the docstring documents nothing.

  • docstring-no-type-echo drops docstring types only when they are identical (modulo whitespace) to the signature annotation — a richer prose type like mapping of str to int next to dict[str, int] is deliberate documentation and survives.

Other notes:

  • allowed-emojis has a single knob: allowed-emojis under [tool.sweep.rules]. Its presence enables the rule (at warn); its value is the exception list ("" = flag every emoji/icon). Detected: emoji blocks, dingbats (✓/✗), arrows (→), misc technical and geometric-shape characters; invisible emoji plumbing (variation selectors, ZWJ) is cleaned up with its base character but never flagged alone.

Severity levels

Every rule has one knob, level, and it decides everything:

level shown --fix rewrites fails the run
off no no no
info yes no — purely informational no
warn yes yes only with --strict
error yes yes yes

Defaults: imports-ban-local, docstring-style and string-annotations are error; docstring-line-length is info. Relax rules to warn (fixed but not gating) or info (notify only) per project.

pre-commit normally hides the output of passing hooks, which would make info/warn findings invisible. The sweep hooks therefore ship with verbose: true, and sweep prints nothing when a piped run is clean — so commits with findings show them even when the hook passes, and clean commits stay quiet.

Suppressing findings

Suppression is half the tool: a convention checker is only trustworthy when its exceptions are explicit, scoped, and reviewed like code. Every sweep directive therefore names its scope, takes an optional rule list, and carries a free-text reason for the next reader.

Quick reference:

directive scope placement stale form
# sweep: ignore[rules] reason one line on the line, or the line above it silent
# sweep: ignore-block[rules] reason one def/class on the header line, or the line above it silent
# sweep: ignore-file[rules] reason whole file file header, before the first statement silent
# sweep: expect[rules] reason one line on the line, or the line above it error[expect]
# sweep: avoid-cycle reason one line on the import, or the line above it silent
# noqa / # type: ignore (bare) one line on the line only silent

Everywhere [rules] appears it is optional — omitting it silences every rule for that scope; [rule-a, rule-b] limits the directive to those rules. Anything after the bracket (or the keyword) is the reason.

ignore vs expect — which one?

Both suppress identically when a finding exists. They differ in what happens when the finding stops existing:

  • ignore stays silent forever. Use it for permanent policy exceptions — code that is deliberately and durably exempt: cycle-breaking imports, wire-format enum values, vendored code.
  • expect turns into error[expect] expected finding was not produced; remove this directive. Use it for temporary overrides — "sweep is right, but not yet": migrations in progress, TODOs with teeth. When the refactor lands (or a sweep improvement changes what fires), the directive cleans itself up instead of rotting in place. This is @ts-expect-error semantics; the resulting error gates the run like any other error-level finding.

Rule of thumb: if you can imagine deleting the directive one day, expect. If you can't, ignore — with a reason explaining why.

Line scope

ignore, expect and avoid-cycle cover the line they sit on, or — when written as a standalone comment — the line directly below:

def build():
    from app.models import Model  # sweep: avoid-cycle models imports builders

def load(x: "Config") -> None:  # sweep: expect[string-annotations] until py310 drop
    ...

# sweep: ignore[dict-style] kwargs collide with a keyword here
legacy = {"class": "warrior"}

avoid-cycle is sugar for ignore[imports-ban-local] with the reason built into the name — it exists because cycle-breaking is by far the most common justified local import.

Long directives and line length: a trailing directive with a rule list and a reason can push the code line over your formatter/linter limit (ruff's E501 has no directive exemption). The sweep-native answer is the line-above form — every sweep directive supports it, so move the directive up instead of fighting the limit:

# sweep: ignore[string-annotations, docstring-sync] loaded via plugin registry, hints resolve at runtime
def load(x: "Config") -> None:
    ...

(Foreign markers — # type: ignore, # noqa — are same-line by their tools' semantics, so this escape only applies to sweep's own directives.)

Block scope

ignore-block attaches to the nearest def/class whose header is on the same line or the line below the comment, and covers everything inside that definition: the signature, decorators, docstring, nested functions and classes.

class Flags(Enum):  # sweep: ignore-block[casing-enum-key, casing-enum-val] wire format
    RED = "RED"
    GREEN = "GREEN"

# sweep: ignore-block — the whole vendored helper, all rules
@lru_cache
def vendored_thing(x):
    import weird_dep
    d = {"a": 1}
    ...

For decorated definitions the block starts at the first decorator, so findings in decorator expressions are covered too.

File scope

ignore-file is only honored in the file header region — comments before the first real statement (the module docstring doesn't end the header). Convention: first line of the file.

# sweep: ignore-file[docstring-style, docstring-start] generated, do not edit
"""Legacy module with pre-convention docstrings."""

The header restriction is deliberate: a whole-file kill switch should be visible at the top of the file, not buried at line 400 where a copy-paste can smuggle it in.

Placement is strict, degradation is safe

Scope comes from the directive name, never from position — so a plain ignore next to a def header covers only that line, and you can still suppress a single signature finding without exempting the body. In the other direction, a misplaced scoped directive (ignore-file outside the header, ignore-block not attached to a definition) degrades to plain line scope rather than silently widening.

Interactions worth knowing

  • Suppressed findings are not fixed. --fix only applies fixes of reported findings, so an ignore/expect also shields the code from rewriting — suppressing docstring-style on a def keeps its docstring byte-for-byte.
  • error[expect] is a real error: it fails the run (exit 1) and has no autofix — deleting the directive is a human decision. It is only skipped when the expected rule didn't run at all (excluded via --select/--ignore), so partial runs don't cry stale. A rule turned off in config still counts: an expect for a disabled rule is stale by definition.
  • Foreign markers: a bare # noqa or bare # type: ignore on a line also suppresses sweep there — those markers mean "tooling: leave this line alone" and sweep respects that. They are same-line only (flake8/mypy semantics) and never block- or file-scoped. Code-carrying forms (# noqa: F401, # type: ignore[union-attr]) name that tool's rules and don't affect sweep at all.
  • Chained comments parse per segment: # type: ignore # sweep: avoid-cycle reason applies both.

Configuration

Configuration lives in sweep.toml or [tool.sweep] inside pyproject.toml. Discovery is per file: each checked file uses the nearest config found walking up from its own directory (sweep.toml beats pyproject.toml at the same level). This makes monorepos work out of the box — pre-commit config at the repo root, one app/*/pyproject.toml per app, and every file is judged by its own app's settings. --config PATH overrides discovery for all files. Everything is optional, and every rule is one line — a level (off | info | warn | error) or the rule's value shorthand:

[tool.sweep]
exclude = ["migrations/"]        # path substrings to skip when walking directories
line-length = 100                # falls back to [tool.ruff].line-length, then 88

[tool.sweep.rules]
docstring-style = "rest"         # convention shorthand; level stays at its default
imports-ban-local = "warn"
docstring-start = "warn"
string-annotations = "warn"
docstring-line-length = "warn"   # warn/error also enable prose re-flow under --fix
dict-style = "func"              # form shorthand: literal | function/func
annotate-module-const = "warn"
casing-enum-key = "lower"        # case shorthand: lower | upper
casing-enum-val = "lower"
casing-module-const = "lower"
allowed-emojis = "→✓"            # presence enables; value = allowed characters
comments-no-echo = "warn"
docstring-sync = "warn"
docstring-no-echo = "warn"
docstring-no-type-echo = "warn"

When you need the level and a rule option at once, send a block — inline table or section, same thing:

[tool.sweep.rules]
docstring-style = { level = "warn", style = "google" }
casing-module-const = { level = "error", case = "upper" }

[tool.sweep.rules.imports-ban-local]
level = "error"
known-first-party = ["mypkg"]

What can be configured

key one-line value block keys default
exclude (top level) list of path substrings []
line-length (top level) number ruff's line-length, else 88 (ruff/black's default)
imports-ban-local level level, known-first-party error
docstring-style level or rest|google|numpy level, style error, rest
docstring-start level level error
string-annotations level level error
docstring-line-length level level info
dict-style level or literal|function|func level, style off, function
annotate-module-const level level off
casing-enum-key / casing-enum-val / casing-module-const level or lower|upper level, case off, lower
allowed-emojis string of allowed characters (presence enables at warn) absent = off
comments-no-echo, docstring-sync, docstring-no-echo, docstring-no-type-echo level level off

Value shorthands ("rest", "lower", "literal") enable opt-in rules at warn; on docstring-style, which is on by default, the shorthand keeps the default error level. See Severity levels for what each level does.

Values discovered automatically from pyproject.toml, so most projects need no [tool.sweep] section at all:

  • first-party packages: [project].name, [tool.poetry].name, [tool.ruff.lint.isort].known-first-party, [tool.isort].known_first_party;
  • line length: [tool.ruff].line-length.

CLI reference

sweep check [PATHS]... [--fix] [--strict] [--output-format FMT] [--term MODE]
            [--select RULES] [--ignore RULES] [--config PATH]
sweep rules
  • PATHS — files and/or directories (default .). Directories are walked recursively for supported files, honoring .gitignore and the exclude config. Explicitly passed files (what pre-commit does) are always checked, excludes notwithstanding.
  • --fix — apply available fixes in place. Fixes within one run are applied together when they don't conflict; conflicting ones are picked up on a re-check, up to a bounded number of rounds.
  • --strict — treat warnings as errors for the exit code (gate CI without touching config).
  • --select / --ignore — comma-separated rule names to run / skip.
  • --output-format full|concisefull (default) renders one block per finding with the source snippet; concise prints exactly one line per finding (the header only), handy for greps, logs and dense pre-commit output.
  • --term auto|plain|color|hyper — terminal output control. auto (default) colors when stdout is a TTY (NO_COLOR respected) and adds OSC 8 hyperlinks on the path:line:col location when the terminal is known to render them (iTerm2, WezTerm, kitty, VS Code, ghostty, VTE, Konsole). plain strips everything; color/hyper force it on.

Findings render ruff-style — location, severity, rule, message, the offending line with a caret underline, and [*] marking fixable:

app/models.py:21:5: error[imports-ban-local] `import json` inside a function; hoist to module level or mark it `# sweep: avoid-cycle` [*]
   |
21 |     import json
   |     ^^^^^^^^^^^
   |

Found 3 issue(s) (2 error(s), 1 info).
[*] 2 fixable with the `--fix` option.

Exit codes: 0 clean or only info/warn findings, 1 error findings remain (warnings too under --strict), 2 usage or internal error.

Files are processed in parallel (rayon); a few hundred files check in well under a second.

Fix semantics

Fixes are byte-range edits. Per file and per round, sweep applies every fix whose edits don't overlap an already-accepted edit, then re-parses and re-checks. The loop ends when a round changes nothing, or after 10 rounds. Consequences:

  • fixes are idempotent — running --fix twice never changes the file twice (the test suite enforces fix(fix(x)) == fix(x)),
  • two rules editing the same region (e.g. a style conversion and a rewrap of the same docstring) resolve over consecutive rounds instead of clobbering each other,
  • a fix that cannot actually change anything is never offered, so unfixable findings simply remain as warnings.

Extending

A new rule is one struct implementing engine::rule::Rule (src/engine/rule.rs):

pub trait Rule: Send + Sync {
    fn name(&self) -> &'static str;    // kebab-case id used everywhere
    fn explain(&self) -> &'static str; // one-liner for `sweep rules`
    fn check(&self, ctx: &FileContext) -> Vec<Diagnostic>;
}

Rules never mutate; they return diagnostics with optional fixes. Register it in langs/python/rules/mod.rs, add a fixture directory under tests/fixtures/<name>/ with a config, input.py and expected.py — the harness runs the real binary against it, compares output, and re-runs to prove idempotency.

A new language: add the tree-sitter grammar crate, create src/langs/<lang>/ with its own rules module, and dispatch by file extension in main.rs / engine/runner.rs. The engine (diagnostics, fixes, runner, suppression comments, config) is language-agnostic.

Releasing

Cargo.toml carries the SemVer version (0.1.0-beta.1); PyPI and git tags use the PEP 440 spelling (0.1.0b1 / v0.1.0b1), which maturin derives automatically. scripts/bump.py owns the mapping and the bump logic:

$ scripts/bump.py --beta          # 0.1.0 → 0.1.0-beta.1  (or beta.N → beta.N+1)
$ scripts/bump.py --rc            # beta.N → rc.1          (or rc.N → rc.N+1)
$ scripts/bump.py                 # rc.N → final           (strips the pre-release)
$ scripts/bump.py minor --beta    # 0.1.x → 0.2.0-beta.1
$ scripts/bump.py patch --git     # bump + commit + tag; then: git push --follow-tags

Pushing a v* tag triggers the release workflow (wheels + sdist → PyPI). The same thing is available in the GitHub UI as the bump workflow (Actions → bump → Run workflow, pick level and channel); it commits, tags, and dispatches the release for you. Published versions are immutable on PyPI — never move a tag that has released.

Naming

Internally everything is sweep — repo, crate, binary, config tables, suppression comments. The name sweep is taken on PyPI, so the wheel publishes as codesweep (maturin, bindings = "bin") while installing the sweep binary. Releases are built and uploaded by .github/workflows/release.yml on v* tags via PyPI trusted publishing.

License

MIT

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

codesweep-0.1.0b4.tar.gz (85.0 kB view details)

Uploaded Source

Built Distributions

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

codesweep-0.1.0b4-py3-none-win_amd64.whl (1.5 MB view details)

Uploaded Python 3Windows x86-64

codesweep-0.1.0b4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

codesweep-0.1.0b4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

codesweep-0.1.0b4-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.1 MB view details)

Uploaded Python 3macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file codesweep-0.1.0b4.tar.gz.

File metadata

  • Download URL: codesweep-0.1.0b4.tar.gz
  • Upload date:
  • Size: 85.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for codesweep-0.1.0b4.tar.gz
Algorithm Hash digest
SHA256 88f286c72c89528d5ff1fc4c5b95ccb261ad3a6a202f916bb00f87a285403890
MD5 a282e4e9c82c493cb7471aada50e4572
BLAKE2b-256 3c2dcd5289eaac7018c9faaa3adf91a1c797ab4920c8aaccb0cefe1289f87fb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for codesweep-0.1.0b4.tar.gz:

Publisher: release.yml on hmsgit/sweep

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

File details

Details for the file codesweep-0.1.0b4-py3-none-win_amd64.whl.

File metadata

  • Download URL: codesweep-0.1.0b4-py3-none-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for codesweep-0.1.0b4-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 3aec2863450a19b1c7333c4c601df6844078a2114dbdc9c19176ca9dbc325a00
MD5 d831f0c7485e053ed4540b9999ffd9ac
BLAKE2b-256 27911f6c8922f16476e4e4e4f05f395a4c3ae40e31d53ad5017a95d08c605970

See more details on using hashes here.

Provenance

The following attestation bundles were made for codesweep-0.1.0b4-py3-none-win_amd64.whl:

Publisher: release.yml on hmsgit/sweep

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

File details

Details for the file codesweep-0.1.0b4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codesweep-0.1.0b4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a72cae9288d4ec388b60c8bdf661c9f288a02017659fa5961b3cb008bf048f30
MD5 7e93cc0d5d9789b5a47546ff123f3502
BLAKE2b-256 942277468248ea17090814452948cb4d6ad2239b1a38bfc7c8f9fb76bd8563ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for codesweep-0.1.0b4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on hmsgit/sweep

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

File details

Details for the file codesweep-0.1.0b4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codesweep-0.1.0b4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 541bcb9f0d880032885fc33322dea0ef4bdd7b2fd5b479885ee80c346913fbd8
MD5 faeb4b272fc583084178b3c4f78f65c8
BLAKE2b-256 0c30af141bd80ac20fca09c164cb9c64a90a8f70cd2aa80160c4fb2a02b327af

See more details on using hashes here.

Provenance

The following attestation bundles were made for codesweep-0.1.0b4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on hmsgit/sweep

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

File details

Details for the file codesweep-0.1.0b4-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for codesweep-0.1.0b4-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 847ae84d52b8675152ce7662f0a2dce5b0316883181b361ecb5d514cee48f45b
MD5 90e8d7121b0be0f67bfe6a5f7afa1c56
BLAKE2b-256 dc3f9c3d29d88fe4eef7124dd516feec8723072a7b833d2de8f557a8ffe1c6d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for codesweep-0.1.0b4-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on hmsgit/sweep

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