Skip to main content

VoidCrawl

Discord License CI PyPI Python versions docs GHCR

VoidCrawl

CDP browser automation for Python — a Rust-native Chrome DevTools Protocol client exposed to Python via PyO3.

[!WARNING] VoidCrawl is research tooling for API design and web reverse engineering. You assume all legal risk for how you use it. Respect robots.txt, rate limits, and IP bans; and please don't bypass them with Tor or a VPN. Read DISCLAIMER.md before pointing it at anything.

void_crawl replaces Playwright/Selenium with a permissively-licensed (Apache-2.0) stack for rendering JavaScript-heavy pages. Built on chromiumoxide with a shared Tokio runtime.

Used by Yosoi — an AI-powered selector discovery tool for resilient web scraping.

Requirements

  • Rust ≥ 1.86 (edition 2024)
  • Python ≥ 3.10
  • Chrome/Chromium installed on the system
  • maturin ≥ 1.7 (cargo install maturin)

Installation

# Build and install into your venv
./build.sh

# Or manually:
maturin develop --release --manifest-path crates/pyo3_bindings/Cargo.toml

Quick Start

BrowserPool (recommended)

Tabs are recycled, not closed — near-instant reuse across requests.

import asyncio
from void_crawl import BrowserPool

async def main():
    async with BrowserPool.from_env() as pool:
        async with pool.acquire() as tab:
            await tab.navigate("https://example.com")
            print(await tab.title())
            print(len(await tab.content()))

asyncio.run(main())

BrowserSession (low-level)

import asyncio
from void_crawl import BrowserSession

async def main():
    async with BrowserSession(headless=True) as browser:
        page = await browser.new_page("https://example.com")
        print(await page.title())
        await page.close()

asyncio.run(main())

MCP server for Claude Code

voidcrawl-mcp is a stdio MCP server that exposes the full pool + session API as tools any MCP-speaking agent can call. Point Claude Code at it and the agent can fetch, screenshot, click, type, eval JS, detect captchas, and drive multi-step sessions — all via the same stealth-patched Chrome pool.

Install (pick one):

# Claude Code user — binary only, isolated venv:
uv tool install voidcrawl-mcp
# or
pipx install voidcrawl-mcp

# Python lib + MCP server together:
pip install 'voidcrawl[mcp]'

# From crates.io (builds from source):
cargo install voidcrawl-mcp

# From git HEAD (builds from source):
cargo install --git https://github.com/CascadingLabs/VoidCrawl voidcrawl-mcp

Wire it into Claude Code via .mcp.json:

{
  "mcpServers": {
    "voidcrawl": {
      "command": "voidcrawl-mcp"
    }
  }
}

Optional: pin the whole server to a warm Chrome profile (so every session inherits its cookies/logins):

voidcrawl-mcp --profile "Default"
# or: VOIDCRAWL_PROFILE="Default" voidcrawl-mcp

A ready-made Claude Code skill at .claude/skills/voidcrawl/SKILL.md teaches the agent when to pick voidcrawl over manual browsing, the click_visual_coords recipe for React forms, and how to react to typed CaptchaDetected errors. Claude Code picks it up automatically.

See docs/mcp-server.md for the full tool list and docs/profiles.md for profile leasing.

Docker

Pre-built multi-arch images (linux/amd64, linux/arm64) are published to GHCR on every push to main and every tagged release:

docker run -d --network host --shm-size=2g \
  ghcr.io/cascadinglabs/voidcrawl:headless-latest

export CHROME_WS_URLS="http://localhost:9222,http://localhost:9223"
python examples/basic_navigation.py

Or via compose:

docker compose -f docker/docker-compose.yml up -d

Available tags: headless-latest, headless-<version>, headless-<sha>, and the same set prefixed headful- for GPU + VNC (linux/amd64 only). See the Docker & VNC guide and the Docker Config reference for every runtime knob.

Testing

# Rust integration tests (serial — Chrome singleton lock)
cargo test -p void_crawl_core -- --test-threads=1

# Python integration tests (requires built extension + Chrome)
uv run pytest tests/ -v

Documentation

Community

Contact

contact@cascadinglabs.com

License

Apache-2.0

Download files

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

Source Distribution

voidcrawl-0.4.0.tar.gz (203.2 kB view details)

Uploaded Source

Built Distributions

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

voidcrawl-0.4.0-cp314-cp314-win_arm64.whl (10.4 MB view details)

Uploaded CPython 3.14Windows ARM64

voidcrawl-0.4.0-cp314-cp314-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.14Windows x86-64

voidcrawl-0.4.0-cp314-cp314-win32.whl (10.0 MB view details)

Uploaded CPython 3.14Windows x86

voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl (14.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_i686.whl (14.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl (13.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (13.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

voidcrawl-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl (14.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (17.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (15.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

voidcrawl-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

voidcrawl-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

voidcrawl-0.4.0-cp313-cp313-win_arm64.whl (10.4 MB view details)

Uploaded CPython 3.13Windows ARM64

voidcrawl-0.4.0-cp313-cp313-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.13Windows x86-64

voidcrawl-0.4.0-cp313-cp313-win32.whl (10.0 MB view details)

Uploaded CPython 3.13Windows x86

voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl (14.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (14.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (13.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (13.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

voidcrawl-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl (14.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (17.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (15.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

voidcrawl-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

voidcrawl-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

voidcrawl-0.4.0-cp312-cp312-win_arm64.whl (10.4 MB view details)

Uploaded CPython 3.12Windows ARM64

voidcrawl-0.4.0-cp312-cp312-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.12Windows x86-64

voidcrawl-0.4.0-cp312-cp312-win32.whl (10.0 MB view details)

Uploaded CPython 3.12Windows x86

voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl (14.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (14.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (13.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (13.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

voidcrawl-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl (14.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (17.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (15.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

voidcrawl-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

voidcrawl-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

voidcrawl-0.4.0-cp311-cp311-win_arm64.whl (10.4 MB view details)

Uploaded CPython 3.11Windows ARM64

voidcrawl-0.4.0-cp311-cp311-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.11Windows x86-64

voidcrawl-0.4.0-cp311-cp311-win32.whl (10.0 MB view details)

Uploaded CPython 3.11Windows x86

voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl (14.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (14.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (13.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (13.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

voidcrawl-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl (14.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (17.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (15.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

voidcrawl-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

voidcrawl-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

voidcrawl-0.4.0-cp310-cp310-win_arm64.whl (10.4 MB view details)

Uploaded CPython 3.10Windows ARM64

voidcrawl-0.4.0-cp310-cp310-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.10Windows x86-64

voidcrawl-0.4.0-cp310-cp310-win32.whl (10.0 MB view details)

Uploaded CPython 3.10Windows x86

voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl (14.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_i686.whl (14.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (13.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (13.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

voidcrawl-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl (14.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (17.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (15.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

voidcrawl-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

voidcrawl-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file voidcrawl-0.4.0.tar.gz.

File metadata

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

File hashes

Hashes for voidcrawl-0.4.0.tar.gz
Algorithm Hash digest
SHA256 5fae3f95ecc4ee1f7bd5473bd466e4b703e73b54d33009f2b896433e148ac4b9
MD5 5f0fe4e7e2043a32b10836f6f9c894f2
BLAKE2b-256 bfaa3cc7054a71a2e512a0d969b380e41f03b3607fd80dcc808535e9a44d862b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0.tar.gz:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4a2246db26a151db9ded7716b00a98385e8e4964ee252588141964f8157018cf
MD5 6e0e8e4c714da64c916c5c4ffe404be8
BLAKE2b-256 a5147db2b428b10adae1541708623de4dfbfb2eea675364f405f02da34711cdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 212b1a11be178086a73899e1c2917286f27d1ca2d7d6caf06139742bb8b1faa5
MD5 a11256c69a49b18c1db64dd7792e97ea
BLAKE2b-256 cbf402727c2b8583c9ec1834dda377c4ebfc4934f38860461d04b16340b3e3bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 78b6db1c3a35cb1ebff40116f4f7a0bdcb8e7745ccc9f107bbfd7768f6e7a970
MD5 900da58a97b19a7b40c96a21ddc46db6
BLAKE2b-256 94428916cd40e7ad4169ea45f396f883ab56690ea79171a2156090b6802cf8ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-win32.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f41dfb122cfcea179f002714045953468dd24f6b82eac43208b18f79057ec8ea
MD5 c83de977cd8d0982fedb92bd42669204
BLAKE2b-256 9c4a002534d31141c9e29c7ef1ca2c016608f9a35db1c60b90b897f232fac71b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 07aad0c440e925a802121448038fb4a65a9f760e4e3eb2e68b2d4bd4b8421269
MD5 ffe29004894d06e5f2948a33b8faab6c
BLAKE2b-256 01f2a8b9db24e0a824c0f70e7c8588571d3aa9fd6f82be3d55d44ae2d5831caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c08dd9c4a2b712169d8784116998cb5584635bb01a8c78b4915bcb4d663cc7b
MD5 2a368adf69eadc36e9aac194e79a73ed
BLAKE2b-256 670ad4e9ba1025105cf0d495f1d6dbdbabe81c9b0b7285943d33ee92469221e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1109ee357978dfa5bbede39edffd4fe694b40553e5de669e52390ee7795d26c5
MD5 40c62107dd2577f38e65839e1e04283a
BLAKE2b-256 0dadf692a0807f042a451e9c20c14899a441e34129d1d04e4b1a92555b0cf0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 588025db22db7de946d4c61fc2c4de5224b694d6115e0424d97a73797c34c310
MD5 bd3d7b3b78546e62e7ac050223494162
BLAKE2b-256 51e42635c9d456340f4e3b8a725d91c99604b66d070bf8c9e896da84c9e6bc6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 1b013c1213eabb315dac3f63d78e06288ddadffb1a4bddf1a38bb95b79817ffc
MD5 4d18b4c9b2f33f2ed47836df928ba693
BLAKE2b-256 e1a5937ce3ad5ec2aa6f087c52d85af8c12fd69efcf8a3fe9ed5d5206faed95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a0d88543d3233b41e09f3ce85a0cb3e93cc35b0be627df458eb7eef18fcadc8
MD5 2e599d2ba1abebd791749c313d3cdd71
BLAKE2b-256 daad6284f1944242a30e42b5c11f65f3fdf0ca338ab36626dba6ecea2aa6f742

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05c7d540d6820c170e51ffdbc2ef8caa4a452fe9616265d875db7dc64bbd6b34
MD5 053529d5eff44b9972bc260cdcfdff80
BLAKE2b-256 e177200e910679096e73170e583698719b4749fb2ff83c6d78d38b1e220873ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5638aabf174a57ceb2d6779601a1e88f4263981790ba96dc3dc7ed85911e8cc
MD5 8fabd65ed729b9b5144f8b827dee4092
BLAKE2b-256 49da02493eab3e4d9d75e9b9880b7db7bdb001141dd76cc5d5a03dc6347f0658

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5325c968ae2217e7f933ac1d4d032e8199527e0d4272233d21084ab5be9bd698
MD5 f602f30f5207a2a7e5b3b5de5b27c5a3
BLAKE2b-256 5d59e3b2e65a6ff1b80831e7483d209d8c3e2bb6fb8b9eb8c418c7967b53aa50

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 442791677d6889abf64a12df858a5c36eec265e8c92988c9f16ea437dc0d495e
MD5 e3524db44efda2d128a4fbe5e773895d
BLAKE2b-256 4e90182f2b6f0f1654df02e9742e5e3130fc573f7b65315ee6589d33e8e43b75

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f17bce42e544ed7e88ea1da183130c88df91a6bfbaf0594a99c405704b45c1d
MD5 aea8cfe2b2c6c9b05a19c57f9ac10e63
BLAKE2b-256 21ba211a9d64c25284bd674d69eda818e8d4bb42140be821298b3e5f08c7e977

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bbb5b4fe01ef0ef7b883de515803d7794e62fd5f3efc94bf53c5b06f6fcfd91
MD5 42db4811089ded9cff67c67da894cbad
BLAKE2b-256 0e912ba2b18d5b980b348c9a01f8e9924c488e83f724e87de5267892b9639515

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddb3504cbe59824f20d785971ef73c1a5bd063989716377852ef3b782445b8d0
MD5 e78d7d28611babce167ce645634a4b23
BLAKE2b-256 5fc51628363a0fee9d2dc33e696fb9031653b7d88dce709a0c0afa2e86cdaeff

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 aa6bedf76bd63285511dbf223d431aba88f973809ea8709f1481bd3c096393bd
MD5 9ef90c1e7ede9c0e54a5cd7c21b0260f
BLAKE2b-256 8148f5979f76b2f4a297ab8e9c749f4cc48da0e71ce513c30f009f10b8d3a484

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d7a75ce915b999fcf341a4ae8e930ed3702539af11a00afeed12f11bdec57bac
MD5 7bd98d542d55c901e8f85438394e6140
BLAKE2b-256 105ebf0f9abac29a3b2b0309ebe50a34644d7c99e22b9cccf43a77769c46aff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 66ccac23f2693b9540f815f84e800f80d2c35383cd4cd366fd429736f687ddff
MD5 87f7b351ebeba05c6e48fe7ce575b2a3
BLAKE2b-256 e9b8b8b766e620505426eebcc9b84373e2db1eb6ed4202563cb7e4bbd1adc16c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-win32.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 265f12ff620cfc313f2b03241d9e3ea9a40c30719651c9ea9351731d4e2ea896
MD5 d41754c0910df9ae9e66fd292850addb
BLAKE2b-256 d5bc8a87acb831c4f8787f0dfa6cf993876d8cbbb313d01613a8ebae52c71acc

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 840d374ef3c77f4d4d4b90ef27fdc7cf326a2ba6f995bdd9acd337c18f22b47b
MD5 bde83341fbf67fe74d5d9a623419bd68
BLAKE2b-256 942ac1519197ce1582b9d8d9add45dbb2d9e8e5fa30643ee5a032f25c55df85c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cde2018d9cfe29e9cc4a8be7746da455824fb1b172dda0b5314a4dae2748864f
MD5 05fb7d12dcb0e995fcf251b0c00b8e4f
BLAKE2b-256 9d099486c5e98092942e7a0351b2373d967982537231d8c96de2ff63d3ad4e41

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd40bd24cafb7e6efa050a679c5fa23c78f6d419939609972114cc87501cd99e
MD5 05127cbbce26c1d1e4f535e1dd3701ec
BLAKE2b-256 3b1a9464b4684cd782b2dcd077073e57151e72ee394d83a3dd6948015b9f2907

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0f91b9273b43f938f387df242514d586ef850200e8c61a03d7619bf309b5717
MD5 030c1510d63921ae82f5a13f1ce4375a
BLAKE2b-256 9be5dc153f5628cc03546d77fb406caf6fe3766e109393f5451ef1b86870810f

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 e43821d24f45e0dcd27c3ff41a08a3865dd58bab54af33888b5d50d70e116f19
MD5 a3250d63932e3b8a8a869aa8aae8d6c6
BLAKE2b-256 2e658ff5219e9678356c6e57f56a2bc54e54da9277ef8a3dcdde392cf5670561

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 598b68a3fab76c5ee1f1a42f1d5063b0d53c86cc1311ab18c2a363212a35d042
MD5 3fd91b0c9c3f834d0d45c5e084ddf2f2
BLAKE2b-256 49e065806b602c4289fa72ce5da7aa574a18ac6186465d347d4ed5804627c495

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31e5dab90c0d71fce47d55f8cafd2a169a985e10016fdfb60cd6ca2db938514a
MD5 1372325791d429e710d64123db2ea618
BLAKE2b-256 f832c8210b0b3e10a86ff4b607e05516967841160ae6c4d9dd0456a2a333d1bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c8894a0836685fe166bdfdc399dfebe2674bb242f27fb48fb55728f8e9426f8
MD5 6de1397e3ac7d11c8581608c30bbb386
BLAKE2b-256 0c31c5258d021b3b4886cea8cb85471318983a00a64c83cc00433b4e0105b640

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80f5687c38d1e979f712f51545220deff781780f3f309cca3f6a3464d947e983
MD5 021e5b47c9abe93295294832e3404006
BLAKE2b-256 76e8d6c2ee58cc4358bb759fc4af375d59b7af5fb1969f7b81be08459b2c7ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9a134e0732dc28fe8abe623c8a7817f0417b16930374a418cd9e08925d536d3
MD5 833890bcbeaebcb419e7debaf34fc4fc
BLAKE2b-256 56ea5fdd00b0bd78ef4bf596b9fa4843e58c652fdb593455152d3e47d2e7bc8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f2c184b87ea1b4e592a70a6ee4e0654f328e51701857028ecfb77d35f62423c
MD5 8fa218e45236521a3638df373e630439
BLAKE2b-256 e5f5c8aa370500775d54f8b607633053b633741af1e60dd48a7afebea5a9378a

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cc5f60aa97d3c1c5205cd279a3d6e0b8c2ba276c33f7231ef465d1f40767016
MD5 f14e7c5b06650dd9b868a02a177a52cd
BLAKE2b-256 fb97fff14492dc15be37bdc534f180a3558b02f6bb393726ac54181a3e15205a

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e0e256e2a22b676576696915db7bafafc8ac35e187dd555306398415d1f3806
MD5 31a44b82873892dbff20845fd080340a
BLAKE2b-256 ad4890d4cb66593a6d3a7d3290445959dad7a025d8bb07a8da7e89d8800d8123

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 25999917b7c7f01143cc30a0c6a207e1410e0247dc2401a8ccd62777aa297223
MD5 12b724f8ec6d955ccd77d5d166351322
BLAKE2b-256 e3633dfafe3930516bc336ef8b365a85615a5e23d0ec5d15d2948bcc1d4cbff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd97230a30d9684b272827abede71be28526d1950e051df680862cbb9b029b15
MD5 90eade663796b20b464f169495188a8c
BLAKE2b-256 5baebc75d94125a16f681744c768307d11cdff50d8d54fae29e7c30166cdf318

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a5603217baf7c619435b990d6ec418201941de54a44d9f12e4f9cab63d6df88d
MD5 03936a5c8ec2d5c4705a8ad78e8a4701
BLAKE2b-256 b7b11e66c1c4a09065bf704d5f7cebb66d1b72d9eab45416a97e95085a2562e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-win32.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9178e4d0d2f711a571ad60dc285bf56c894baeba2dee4d26d23ce51f1a2cf4f
MD5 dd118be142bedc428082ba2a70532b15
BLAKE2b-256 df64973e469f8e928ca36b658bbe0308ade65083ef64d3072f479a35a92e8e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 668a18beb6a91c123e2cceac4a290604c2da4066a28fc20348c04b2474f610a5
MD5 9d6f7596f0e34f54e271e7babdbb7628
BLAKE2b-256 adba74d0838a3e9c69fc384143055cd984b6be62847b5f5ad8b4c35f0c13eb62

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0bd1c8a289f2e176109cbbf3cb5fea3b3e4093257d86e47ec89197de45497f46
MD5 33598dab4d4c9826bcb57903cb573d50
BLAKE2b-256 396cfcc1fc674eaaff364c7105e3b5219e6f12235fe2dd9abe2f5c0353f5c7cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5180cd520f7fe4783a023e695a2c8729d19238f3f73a14399dc73c26cd56e2f7
MD5 3dc8da5490ea37c61e28d24303c1d695
BLAKE2b-256 d115c7029eab1372f88a45ab41291d106f5601a4a53f5c0d0a71162751d5aa15

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef8e08107d0ebaa763047b0c047f41d52dd0ad9f340b764dcb4453e0dac46a62
MD5 bbe3cece837af97407c17d92850175e5
BLAKE2b-256 d983a31301da9309625c8f9e53ff8e8f0b2d3242b3e01a34159e9b70c2ca1328

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 e17458638a1ef33903953f266d82e228d2644ec02303d79c51850731b9b6e715
MD5 f1b520190c1b10dcc630bb269c72d1b5
BLAKE2b-256 edfd9e027eb012072fb381dd02a397b108a6b14fb2e44472122a8eae5b846481

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bf3ffafcd34f0e7a136e39cf16f6468e8d5bb06150ecec59b8a49e4642e0820
MD5 b23ffe01163e47feee44c3abacb288d7
BLAKE2b-256 0ab4f9ae88c5de1dfada075d455c97f03c3d262821508e14df2dcb0b22de75ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f669a7eed656ec0c685b53daf903fada8d6fcca1b3471434043bf5565073c10
MD5 fb7ad4feae5c3564e95aaccc274ef2f9
BLAKE2b-256 a53762af81e8d8100a0699a1b98c34f1d91559027de7296202555fef9cdc754f

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d604a70e8c5b9b75bdc6de458fc8958e178e6c344a34f324c8fcfd8b94fb207b
MD5 929842fd5a59c6725744e3e9309877d6
BLAKE2b-256 c895a1f81e6e630c693319cf18e91db6639b2d1c9aeb842ab9c92c87fd2ba9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88524af6c6186fbf831c87166c4cc7ae77931aaa050125a59977112b1f479022
MD5 0013bd68c3d0610d7e1f657ee53038f5
BLAKE2b-256 0c49cc0898df85ad5444739ed762ca6819e0735f5a10662bf8de3cde97ae46a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d2dbe57440f68eb1b4c7a4c7840295cc2924f7925d055330759903c1de4760b
MD5 3819c559a2a81b0082b134bc1ed66578
BLAKE2b-256 472906c6337ae334cc7ff4da4b551c5f5e08d1dc6633d386041b9eab55ee619c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e61523e8306c321043ae155ecd538c429ddf7b2bf4c88ebb9236757c9e6edcb
MD5 ac4ff4ea118b16ec65e70a7cb0cddec9
BLAKE2b-256 5788e03929a77fbc1dfac8e9df0a4493011643008e5e94f7fcdcb37b467884ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac465209c6be886a9d6046734c259c53115613ec893f78a078ba485bf4108c20
MD5 ad761ad1924229301f6a10f8e7aa67a6
BLAKE2b-256 a4c49c3a5f99d51c1bba0fd1b20a826aa53a7dcf8c11406a8abf48423bca6c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3de174561432e7278b9e4fd1df20adc34bfacc70cdffd91ed8bd2a8b345a21f
MD5 3e3f869338524c429be07aa4a34859da
BLAKE2b-256 e237dbada372a61510bc6d86c4118512e8732f6437155e3a7e2f99740bc4e2b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 78e551a52fdae423ae03ca45a4ed015b193bc6a7d93b330caaada3ec3ed2695f
MD5 782078f343e8c2ad63d886e557798de0
BLAKE2b-256 eb8581d960cfb9d1a82fe64eca4480026be61d080ef8667e77615c3f20bbe7af

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2743aaf199cf5e212cfdeb2c06771a1c097b44c259c538eadca1233901f865f4
MD5 aa30e580cfa9ef82bb2a73bad938927e
BLAKE2b-256 4d2779ba1ffc80664709bbf34fdb8f1209513e14f1c11b5c21ffb36981fa4de1

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 19bb4133a53d460876684d32c93c5c0c64f294d5a9c0d492b13ef8069d898bd5
MD5 c1b0b47cbd4e70e6f488a53fb00df82c
BLAKE2b-256 6f9903688df0723103afa1c9d1b8ed6b1b895a4f6b229d7c16416e7f11e4647b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-win32.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb0435cf8d6cd4c119775e5fa386b1a4ba1bd60e9a1a31e53c4561d5bd3bb0ac
MD5 35dc9c96a0e6ad5a08c3fbbb7a3721e1
BLAKE2b-256 cf3ae2696ebbfdffa0f71d6a74ed597a6023973cf2f908304c827c0ebde79960

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 018dd86b4c238031822df1c3b9a3f3b163cefd3c573bb21fc306989a09ecce89
MD5 13f811057c584db425a83b8813ba04dc
BLAKE2b-256 0040946c491eb61ca65ec1fc31c683b49a0fff348c69dea9bc348315793a50ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8562e2b2b8432944038473e70fd2ddbbb416bed733424bccf1f342c79b4e042
MD5 be506a6eda5eb16309a958ff17d96da0
BLAKE2b-256 bbb91f3554fdf83da4ac7593aebd56e0fc12c0daa85531c9a928c7c3e15555fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ae861c3f4ebbf86321ade70eecb1a3243ef979b209a96e158c6c5faa52676e7
MD5 24d56dfdfc88a1edb41a15862f9055c4
BLAKE2b-256 11ff9577bc1a189fef1fffe666a624194b8848ab18e2a797cdb47f23d41d8180

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 344dd5c5a3f26d15866a5d82dd2db32e7cea43ac4d0a2d736bcc5922d4a3ea54
MD5 8fc7186d6149ad695bfa3f8970a80e26
BLAKE2b-256 e91523f086582f2b7a0434ac90799d1d8a627140ab75bb63f04f01a95b145739

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 e8610c2d10e832321e2fbefceed2f5af3316042ce69de49dd9bee67c7bc18a94
MD5 9dda6efa0c9daac1bc363baf064d398c
BLAKE2b-256 f8d3b3df0048a1c93a097678e0dbca925d0b1907f0d5f8f1989238578fb59aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e67fef0ca4ca2e1ba9a175f4bb5da4c720ba1107a6ea5d47dee97525fb3cbd0
MD5 b9ed8b1eb1a7ec6e42e5a570d4a83795
BLAKE2b-256 b33a736bba015aed837f2aaca3aaeff00f7150dd30bfdc30d63446d3b84beff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b11837a4f135b14fc03872f6079e7a5dde3d51600fd215067d6f1b63c546681
MD5 4ebac50f4161cdddfce267acd6d4efb2
BLAKE2b-256 6a6a00d1c0bd9437e1e2339243c192d3b461c691bdbe0451e79be10a66fb5246

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc024c3fc23eec1a7219ef2c15a87f9f1e3ce2a6c46ca7b398afaa31ae00a5d8
MD5 8128c3229be7e5b184c63b75dfc1ce54
BLAKE2b-256 b3862dece0234c318f7888b31a24e815d8ca991ff6e5fc84e97f9946ed3cccfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a139b4af5ee7c5dde086edb454eaacb0427099fd5f3e75268fb31c130918c10
MD5 a8a9dc653bad5cb959dfa492a911663d
BLAKE2b-256 1186ee9f7a9f26fbe5af86abd3da0b1e23b0b0f503757df2372c203101d5c96f

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94b4fca129b591e3a39a8e5c9d44a430187bddbf1417b75282aad190f9979a38
MD5 738907f4869727bb10e5cf02487203b6
BLAKE2b-256 ceffde6bc7892398bc87392217780446e1766708f78a57524dd89ed8cb9f515b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4adc6bf533ed6d21b7e12086e60290a5492013e1734eae887da73ad4fce8d26a
MD5 03b363482855704a1fa2c7aac90244a1
BLAKE2b-256 4b22d0b6ac77c0e4f17d86eccb86c59cd0adc1a127df0ba614f3e4321299bd90

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76115cb32e279ea5946363a95a519c8bc614d353306e45fd0b1b51e86236f3a3
MD5 6b28d2803b3f4bc476db3c1b9dec2474
BLAKE2b-256 1c5de11c25243fc5e8cd49729a0519a55df010e1904d5eb5c7fc9e49948794a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ca054b8bcf5aadd7dad2a60ce83cbef7e1f77a084e92cd8c1600739fcf7b198
MD5 142e45609988ca4302182dd54db035c8
BLAKE2b-256 6e067bb19767ba52114c75e839805a4bfc66af2821daae687cb2a21810f33bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f23c32d934156e71233f31acfcf4f3ff19700a23645880105f0dc07c0f37b01f
MD5 cc01b14acad97c6634b39792059046b1
BLAKE2b-256 2a6bdd3b519217b0bee69a306aeffbcec24c6e3e1985047313bd199b8f57c799

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-win_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d09cc86fe6adcb96fcc5fff28d766813e32d8a47776de45381bddc1fae739de
MD5 1cdbd9f91cb14f59a69c7246c39c7839
BLAKE2b-256 a9fbd195e48fe28234d58d56563a84afad5210a963e3663a84cf579b88d3e1ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: voidcrawl-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a91d4a51e6de1382401da4627569a8f031ed618949a9c50d0189bed589383a01
MD5 b1e96042a619f29e568146b56a4eb9b0
BLAKE2b-256 4ced18e5f99f39fb60dbeecf0032f768118192d706297a2cfc7f88613fcb6a14

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-win32.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dbe0112fa07463b98f7afcaa16ffd5fc3fe379df105f270c0e1ccdfd8077e0a
MD5 acb3046da7194049dc88ba30c11a0cbc
BLAKE2b-256 5d0ce3e75f8394ce72a699ef02c838e2a41720d042f536700d2fc00b9d5fd976

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3747af3bbe561da30f46029d003b3c85ab7ca18e108c48c4c834472c4da77767
MD5 0aeba82bbc30f05c489f4f1b5de148b7
BLAKE2b-256 292b5ee700ad40920630ddc60328d082f3116f03fed92597f24ec320b994314b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d247aa682d6102ae6d15405feeee74479f85ea21ad39dcb194c6a9a79ef49501
MD5 7314a225089f5df47d2250bb0a1abe7b
BLAKE2b-256 ebac89683cc74f31e7c7ff8d39db3340cfb5fb07f0ecbb12254f0dd4e540ab7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b4a25aa991af085840692a81bc022073612b526ebaec311edb104f3cba59706
MD5 6b25737c21c63b9d9f68890f3905542a
BLAKE2b-256 1d36c99f3a03f5c46256979cb3d38bfe15fc72d91dc1ec3c9f6298032138d4b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60878eb1ddb5b3d480b4f4b42564d8f8f44e37f9d62fb401945f6c58ceb9dbea
MD5 06726d7576614834b08f5a2e72af03ff
BLAKE2b-256 02eaf23a7d4e5ec72c55c47a0742a97c61b91df53651238faf1be60229121bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 fd3fe5cdadd7ec45a360805f72708995256f4add78d78eff4d12911c4ab20e45
MD5 c82781dce9016219e3cbe4bec4205a2c
BLAKE2b-256 4e822ebb1eb5a16890da1956925d4e5c9ca097e09b648f46e64e35e4987a271f

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eddcadc1d4dcc29ba398a8defdad155de82c9eacee26efc18d722564b6e8d8a4
MD5 81a7b5af96f8d5ab0d7e676e308f925b
BLAKE2b-256 d33b62281e2e6dfb72e2a51089a4fdbe6eb20083cb45aab9f05617bcd94f7982

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56259ed44bebc0ff2d24ee2074aecb84576ce5cbc2edd901a8a4b72043ea723e
MD5 095109a55ccf526de42e31dcae49f59e
BLAKE2b-256 4fb338f011e3a2167600e5e82832a6146c261048c665ecdbe46f2e0c1c40223b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f780c40b5e722fcf89e9bcb89985e0637c2959690877091943f957fabdd16991
MD5 27dbefaec7d428ed313ae3e3b923b083
BLAKE2b-256 5ed959622b2467d48e7ea860043b49ccf83ef73495f7efbd587cb5e417c3eb10

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33aa150df87da4c0304eb29098a34ba73b5ed5773120dd30c95b78fec0b65d72
MD5 dabf7add80af7ea73e9751f5ad3df507
BLAKE2b-256 9523365708e07b3c1250c46d1b38664974a3fb393beaee8854297087a2728ea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a2ffcb66bd87cd1d4435e98097640fd8b878c87786892f754c4e92b8bff5198
MD5 dfd2493155e10aaf54458099d594e39a
BLAKE2b-256 7b5fe8bec91f1f362dce1c7bea34e74b5a12300fd61461c291fa9f5e949e2185

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 022fcc33fe9cf2236dcaa670743148c68b29263a00c8b4ab219695e2fe8c717b
MD5 ed193bea2af8521ade50f9a08f9aed2e
BLAKE2b-256 9048ff296eaad56ccf3be55fbb3e8b63cf25bcaa70b848eabba6a818c918fff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c5aedd247fdc07a4770be04e6d7b06e6f1c424c94c5d4192ac116cb52432b2a
MD5 a073b4d90a3339c62f1e415cbec91356
BLAKE2b-256 09ba07878e8a63ba5250efd11452da8da9252ea1263547b52fb64ff4d89ff146

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

Details for the file voidcrawl-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c822cb3d03b6fcbfa39b8a4dd9e6883161a8a86c83ef71432c1c3d093da5b11
MD5 b1e1767071cb2847cd8aaa989770f8bc
BLAKE2b-256 931321c05d6ca7be7d79deefcfa20f641c6c71395f212793555d21e0e687bcf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on CascadingLabs/VoidCrawl

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

Release history Release notifications | RSS feed

0.5.0

86 files

0.4.2

86 files

0.4.1

101 files

This release

0.4.0 This release

86 files

0.3.8.2

86 files

0.3.7

86 files

0.3.6

86 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page