Skip to main content

Rust-native CDP browser automation for Python via PyO3

Project description

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.

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

Contact

contact@cascadinglabs.com

License

Apache-2.0

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

voidcrawl-0.3.7.tar.gz (180.1 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.3.7-cp314-cp314-win_arm64.whl (10.2 MB view details)

Uploaded CPython 3.14Windows ARM64

voidcrawl-0.3.7-cp314-cp314-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.14Windows x86-64

voidcrawl-0.3.7-cp314-cp314-win32.whl (9.9 MB view details)

Uploaded CPython 3.14Windows x86

voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_riscv64.whl (13.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_i686.whl (14.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_armv7l.whl (12.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

voidcrawl-0.3.7-cp314-cp314-manylinux_2_31_riscv64.whl (13.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (14.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.7-cp314-cp314-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

voidcrawl-0.3.7-cp314-cp314-macosx_10_12_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

voidcrawl-0.3.7-cp313-cp313-win_arm64.whl (10.3 MB view details)

Uploaded CPython 3.13Windows ARM64

voidcrawl-0.3.7-cp313-cp313-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.13Windows x86-64

voidcrawl-0.3.7-cp313-cp313-win32.whl (9.9 MB view details)

Uploaded CPython 3.13Windows x86

voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_riscv64.whl (13.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_i686.whl (14.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_armv7l.whl (12.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

voidcrawl-0.3.7-cp313-cp313-manylinux_2_31_riscv64.whl (13.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (14.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.7-cp313-cp313-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

voidcrawl-0.3.7-cp313-cp313-macosx_10_12_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

voidcrawl-0.3.7-cp312-cp312-win_arm64.whl (10.3 MB view details)

Uploaded CPython 3.12Windows ARM64

voidcrawl-0.3.7-cp312-cp312-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.12Windows x86-64

voidcrawl-0.3.7-cp312-cp312-win32.whl (9.9 MB view details)

Uploaded CPython 3.12Windows x86

voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_riscv64.whl (13.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_i686.whl (14.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_armv7l.whl (12.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

voidcrawl-0.3.7-cp312-cp312-manylinux_2_31_riscv64.whl (13.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (14.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.7-cp312-cp312-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

voidcrawl-0.3.7-cp312-cp312-macosx_10_12_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

voidcrawl-0.3.7-cp311-cp311-win_arm64.whl (10.2 MB view details)

Uploaded CPython 3.11Windows ARM64

voidcrawl-0.3.7-cp311-cp311-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.11Windows x86-64

voidcrawl-0.3.7-cp311-cp311-win32.whl (9.8 MB view details)

Uploaded CPython 3.11Windows x86

voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_riscv64.whl (13.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_i686.whl (14.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_armv7l.whl (12.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

voidcrawl-0.3.7-cp311-cp311-manylinux_2_31_riscv64.whl (13.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (14.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.7-cp311-cp311-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

voidcrawl-0.3.7-cp311-cp311-macosx_10_12_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

voidcrawl-0.3.7-cp310-cp310-win_arm64.whl (10.2 MB view details)

Uploaded CPython 3.10Windows ARM64

voidcrawl-0.3.7-cp310-cp310-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.10Windows x86-64

voidcrawl-0.3.7-cp310-cp310-win32.whl (9.8 MB view details)

Uploaded CPython 3.10Windows x86

voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_riscv64.whl (13.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_i686.whl (14.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_armv7l.whl (12.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

voidcrawl-0.3.7-cp310-cp310-manylinux_2_31_riscv64.whl (13.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (14.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.7-cp310-cp310-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

voidcrawl-0.3.7-cp310-cp310-macosx_10_12_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.7.tar.gz
Algorithm Hash digest
SHA256 2a994c3b8c16eac1bcf777209c1712d8497f028f816b00f5fcf8b8f20a6b4263
MD5 1a2fa1409f0af68776d8ed182910537f
BLAKE2b-256 6786cd2f61fe9eaa7a1a3d1cd83b9f228020f396ad8b446f15ce2f8bfbeb4b79

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7.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.3.7-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 10.2 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.3.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 930b0d08d973608aecc1377fce102ea8d133632b095fecc63583cedbf4f28893
MD5 2dc23d3553ae9ed22dfc0a02912114ad
BLAKE2b-256 60d2b859a84aef87eb50f9709112bb487047a58d391e4a40dc0c105f89d665eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.3.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a3faf7e5cd483a32fbc28952bc70f0d6601ecbb3143cbdfc949c2cd9509d8a4b
MD5 1692516ddaf8aa0d1e51f03ddb315e2c
BLAKE2b-256 d8e6866997c5d2dff17578d6591ba825191926bc73732b7dc2bd90a924429cbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 9.9 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.3.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2febf44d4afc1f1da72d96bf29eb1ae318e5a93538352ba009d3b5470b12a1fa
MD5 17985d3379515c34a5fa00b486cf9461
BLAKE2b-256 263624064b207e009abe6c18ede47c4f6b66d1f625a2b90c843e22747a456c0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60b2146cd63a567232ba05f75d51329280850ad11121f6ad4b6cff2b89e46198
MD5 00829c3c22e2e427b084b5665fe3d2c6
BLAKE2b-256 955c94e928cb1680e557ec5c86f192da614a078bdf359038a0f1c1054cb82645

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d74e0305334af7ffaaa0257935f99fd05fbfc522629b6d988b829e81d4079e55
MD5 27176180d0e86f577e15d4c0b4758815
BLAKE2b-256 f91480a60556a6cbf42b6f96661d6fa86b4f04be72c270e9204ad37d5ae519f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77e2fc5c79c2bb0e8ac24b830acdbad76f8eef262052c18a5252904499ae35c0
MD5 32158bef4d179b874518a402f6a63da1
BLAKE2b-256 36135fabb297e1685fbcf5286df5ac24e003b5ec1392541d23f25e8d7c52d279

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ef7aa06f8f373b55fde021eef61a999ee8def54491d71c6822e5e55c2c255c7
MD5 2cc3364baee70365949c3900324f8743
BLAKE2b-256 39ebf9aa74ec990064ac0698253e6e3de597c0843ba948d087d628cb69c56c5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46c7856537268a635b20ca931b526a7de30ba50a7cea1fdfca104f4b543dd011
MD5 d56bb46db7d49f8f6bf311f54fc90344
BLAKE2b-256 fd9ea1884423d1465bc86b39b2eac0708389bf9a64c44562c4cdfc8644bc8c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d1f1ab90b865aa2cf7f987fa641731522b387069618ce22c29ba0e00fa8cb7bc
MD5 9993759bfc0c2ce010c318420d15ea64
BLAKE2b-256 a58430cd44923a55731bc593458c1dff96912e4e42a38887d109c791ccb32516

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06eaabe42484c74f3f68ae4215c86e98d862f93a9f2b7dd9d4269e0c832d6b88
MD5 778a0ff24fce3e1228eb61d8f13016a5
BLAKE2b-256 17ab65a4d500ff139bee0a03d69dcbeb0b4617c3a777382456c075efa8ce247e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 489fe54f1abdb1b7b88cb83e4b3a00b6e13b487bdf825a6bdabe69e5284ef06f
MD5 fd8edf8dc774b6cab5646e92a2f3730b
BLAKE2b-256 b23493a488f0bdac1e4bc56208ac8b2478326cf579827611c5c5dd70e9933874

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ad5a9f10c20964a967b93c5f82e6e7ec836310fa8b5e99e4fb264159dbd81f9
MD5 47f86ec35711f0046c57887982b89920
BLAKE2b-256 b516bcde9d904ff14df458a3d5c80c7cd552ccd4a498b1fecc214326fbaa568b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1c761af40c415a4419d1dfcd5e3e15ba99007703ef7bd96b1f2b906b1f38c03
MD5 02f241fd226c367147a18039f057429b
BLAKE2b-256 383f119c0c527285d2327b0e578605a4162caf50e0ff4a3de6a4fc00e2708829

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b95f9644fd60b807cbd9c52b7e9793fb9720628206696fc8d8b843139310b77a
MD5 7496949548488a3158686aafa0cbd41f
BLAKE2b-256 b179f7db6a4a6e4888aaa76acea6c653300189855967f617faa0a01e8c2d8f87

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d0deb1f80faa97b39eaaa018b2df4f75c4b2ebc4d7a59a625f656719f3a91dd
MD5 d34a1316ab24ccc7a6ff5810fa4f5a93
BLAKE2b-256 5de9170dec13aae432fc92603011d51eecb69da92591f42dd153297b6981ebc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dc2d8aa61dd148ce98408e61189bc556a5784a36bda674254570528f44d0482
MD5 9ebc6a36691853f15156f0e884cf7c76
BLAKE2b-256 16a31904098d2ce7c810ae2c10978329be68e9d9231fd6256bf613cce47a1f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f7cb8373df621e78064c4cdf4324e6914c0bb9a4cc73b6ed8d32232653b9031
MD5 85528130f17ddb53f416c9cbbf6b542f
BLAKE2b-256 4278e3e5b730488f2f33e1b6e801f01e772f9e4a437d99b2560972528b514be5

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 10.3 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.3.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2f7fb67a7261a5b1684532da318aa273e4af04aaafbd2a30d15a336f34d73d06
MD5 ffc4534414138d2278c5dbbe0256fdf1
BLAKE2b-256 cf34f9c4c90e4d26847ebb467f23e32c4b67f2f13bc459cc43230b8c1390d01a

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.3.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fbd86c97f3932a3d494cc60ae10dd1acd480a22d0dcc2f91437ef698c713fdf3
MD5 174a05783be25fd69a1991126e61fe8f
BLAKE2b-256 3387b81d16d668facc5c0cce70649edf16405e25ab5367edbf08e3f5b5f4d00b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 9.9 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.3.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7fd311e797a18f8bb3923269e8fbdfcf2de886ad2ae61fcc81cfc3d3b014cc7d
MD5 4e8723e6f46bbe4bdb24eded9f35a1d0
BLAKE2b-256 eaaa162eeb452477f9fdd9ffc0ffc507fd793128899bedd5c5f6241dc1680bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c41b5b4b8849c5d1d5b952ba22ebce2c1650681c1f1e21b2e1916726adebb801
MD5 f3570aa0a4f4195435758dc22a9416da
BLAKE2b-256 bf699d7c7289775be8d9f29a615eab3dc7d92e83c4d607baeeb56cb990cf6484

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7c1e982f41eff9ce127c576a7c7b0871c6e3627312d91c1f520b0824739e9aa3
MD5 9c25905c8346c057a75866a382a803c8
BLAKE2b-256 4212edc5cb0824b51d59dfa750bbfb0341d158f339dfc0d1c7e8e7f7997a65dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d369381a44beda1dbe206150e905080c8e8562c91d023e978c654ee6af9d033
MD5 42277adc54aac35d306c3bf94c11f19b
BLAKE2b-256 458db8342f44cba520b806968607b0af5e5af6579ba059c492c0371850e0d989

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd32c70f47b078be1f4d5ddb16ee1350e50c1691aca70d2904649ccfb45722a6
MD5 b8b6469388a0bba564f49dafe3c8aed9
BLAKE2b-256 aea790b33cc77523e1a711e14526628734c112abf40df98417525eb4cf70cbd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fae09a4200952325e878876af572fc7c784ce10170f049cfb397342efd8b0bb7
MD5 e799bb23d729b3f4d80dbe54f1078e4d
BLAKE2b-256 1547e5a01e56aaec2f17d55e6298a0d20e865859dd9cfce52890e0a6bab3bb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 f03de929077ad4d1850b5c9f7c771f86f1ca54049694f02725b7f11b63050472
MD5 5030568f456445e5a84c3ba515dcd89e
BLAKE2b-256 8252a156bdcdc8d2d38e07d69e8516be26e6914d4969856e2314da121316f4ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71e8d4e8bd103ca62725172ad9adb8567d997baf5dfb97b45fa326a3a22120cb
MD5 c16d6143705a084cbd2fcae9376da48d
BLAKE2b-256 a86bfb61bc55f1613585860dc0e36fa8b230b5556cfde5ae4ed2a75667b66aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c6aea264035cb4e1200a79af86ceead4671ad450d1941cc486e893cb076ed8e
MD5 ab60badec182f2afc3aa265753b42df7
BLAKE2b-256 0d53a0251ea42cd62442d620b7babd7f30689d041da68e180d9760e4d636bcb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b9b2fe25a0c17af532844c2e8e613a2fd5c640db1c751a5dc8a794a03f9f201
MD5 8c12cc7c648188977ab0c49b6dc74f63
BLAKE2b-256 623ae83e4640076e59a9343058071ba3deb55f964951646736519cbdd330caba

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b204d55d51bce1ffb783f239edf845cb9c42ed2e74b237d738e89c78a269c4ea
MD5 5bcf9edb810a40b763d56cd8fddcf588
BLAKE2b-256 af83a7c256117056dcd6ff945c68f3c81aae5088639a4fd4055de1de60a9f50c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92652408194564992e3439b45e7993ad3e8fd0c99f5371e4889c1cac72354d04
MD5 de50e6de666db104e61a981064a93ea5
BLAKE2b-256 dbd387fbc4ef3c85a022c66d9f0fe7deb7ceb6efc97db4282449742ff87af803

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b701ee2670f12ad8dcaa5228d3a42ff32af2a7326fd2ac634e3b8ee93b6cf881
MD5 8e2d18cfb3986b76b89fc0f3ddc0205d
BLAKE2b-256 745cbc7b6d39d0fcecc7ce158f9e73346d835036fe5a50d6a90a6974e5c5d4c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4219af93b41e576aeef619d99b576455bf8bdfbedc1744dddbb7579b90318c12
MD5 b0b945a9066d5ebb03befaf6d6b6a00f
BLAKE2b-256 6a0903e8ee53feea7c272f35d3b28231a9dce72fe9ac9eede97fae6fe78d382e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 332516c5189e6b6d6669ed9ee2a2d30192b9cde2e125064f97852e271355f624
MD5 6558d4a97ed3268db9788a094a23f57e
BLAKE2b-256 54fa9cbdc2a360f70d9e8c669bb9bea5c71e280250a9f5429950520c3d9ae5a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 10.3 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.3.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 860517dcec39266d625d023fd45b3c310d3f309b4542330b1f1bff4aac3b029c
MD5 a05de2d9c5be8b7ff922e0d736875fa6
BLAKE2b-256 b83113b1063d88e6c56b4f7005448f17087f8076422ee20c17aad10744a92ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.3.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f930a90a566be8a9d84f5dd4cb89479a03f479943b4225da338f2804b241e737
MD5 606b84aef3d3b3dd598f2d3b60f80e7d
BLAKE2b-256 ca842771a271cb1524ed398ce5a8823e5a8cb8fdfd1022a1049be19ce4417860

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 9.9 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.3.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1f2edaad53fde6c0ae76f9d1c8c0ebe2986f48e01c3be8108d25abeb1282b8ef
MD5 3e1039604b657fe6a187189468fcef73
BLAKE2b-256 f2bc2ce07ecde0d411a083db62488031ff5d2dc31cc6cc0d20b0f3a24708526c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9ef54feccd4f66ea8d64426f8d2be3e5682eaca55ee4a96a7c7e25d658d9ec9
MD5 173193d2e1deee38750b8fe270280d03
BLAKE2b-256 ae132f67b1f1a955df6d8bdb84ddf074628e8f2a1329773e5ce5a4a34d1cab6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 120ef8130fa679c78a92e95f8fd95d8df6209300ee1d52148f02825e209f895c
MD5 77cda3b71937054e33cec68217d4c44e
BLAKE2b-256 62237a0465c8529dfacc8e44f121d46d33bf094ded7753219e97d447cd49c08a

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 212aac0a67a1356bb1e3d35044e607351323e1070db047ee5662c25911e970d9
MD5 70cb08f5aa6b00f2f2d1aa9eaaf7b94c
BLAKE2b-256 0a9fe29067d00c74ef5d6e7371d4dd2ef954c80fff0e1a2ed25541dab137b5f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eab22c7d925c03fa5ffd8eaad9a18a1d04faf1a3d433ab802087a5a81de82dc1
MD5 d7638eb3568d4ee1e725250719ba1850
BLAKE2b-256 47fb20e09640dd0413f62ba56fa4c1393c2a75e7e02cbf70d39920933b55e9df

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a94812ca697afddc753e1039c4fd958c2c4482af545297e41f0aedffce588ddc
MD5 04eeced096e4affad782c5f106870012
BLAKE2b-256 2780e1a5e22e4111ec931da8cc3ace7ab9f07d889a30dedd188bbc15572e3e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 11337e9ba0b76e1cffa9e38d9ede76a6bf52d88d05a05abf9a6da64199606968
MD5 79651253e5f4495fb59fc4c4e6426405
BLAKE2b-256 207dcb2e1e042e3fcfa7288b2f28ad921334cd2cfa3cc43e07a9c07db1b60224

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4bb3cde56fefabb00bd9cb8a9ee4bb65e9f860300e430236d7ef07a5e5ccd0d
MD5 563a5c5e7dccb2b79e6f9bd9c0742797
BLAKE2b-256 a0fee92d4c136ed75524e5eedf30d8ec0e77351551a484a184a6916f1b5238dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f2b38e9990f43baca727517730101fdee0551cd955677ee1e54db94d34876bc
MD5 ebc266237d4918bb2e50a2e5437bf77b
BLAKE2b-256 dec1ba9e51775b3dcd71c8eeb957401c82a176c6591eec08a3f6326e0bc76d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82ffbb6bc0a5a9c0a2c4956c20fec35fedd04c15261c38675e5253dd8e0e5312
MD5 9308fc99e5141a8a69fb372e69bd8f3a
BLAKE2b-256 eec2b8f75d297b161088cc6b6aa85df9febbfee9c92b81a2f429f98ecdd0883f

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67987a13f638b8a8ad1c5f4627a59b87c80adce625c4a7be73a3e959ca7c1c24
MD5 8dcd681f40d4df6e8db903b023a60c65
BLAKE2b-256 a36747cb876090ace6ab413911eb78bed693b84b699ebc95addf120d77cd6e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7018ae8758812beadee9dd283aef359c156feb5b649558e602f19990af1d813c
MD5 6c73e10f66aedb523026891609dfc7a8
BLAKE2b-256 8c9e39d10b5f7390fb2907928edf44163bc2642bb9ed8c4e5d1cb8efe84f1460

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 665ff3b7c178ce30f6ba174246f36842e663048678ecd8e4e3282c940e7902f2
MD5 0aa4ae757a2e398a806667648167354f
BLAKE2b-256 05623e883d91bb521eabf7682f255ee95f16e08e9ac98316f0694f1ef0f61986

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bba48ea90e84bec57a6d3cc3e7cd2a6d02ce03312ac5dd68ed99fe832c9fd31
MD5 7b5a198d675005e20484c878c7402f8a
BLAKE2b-256 f5a15a3384b2b55d05415d783fb8768a89d4f3e35c99a6cd8759da78e8304f88

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 857ae5b3163bfe69891e28ae4b2dcbacf89c49ca4828fecd6f75f7b5296f1c0b
MD5 998d6238826ac9d87d49a2a9092cc353
BLAKE2b-256 e17e79ae8dacaaa670bbd0df4a50001bf4735ba3603fb518e64a013059580c7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 10.2 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.3.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e3de1a88dbd0c6afd84f5522c2a339a3b5a013d11d508aec7b523c06db8852dc
MD5 1bea9e9a9c7725d34bb0850f00493f2c
BLAKE2b-256 2ffaf4f30bdc38bdb7ef1207d0fff20ad009f3b896f30371add4d0db9ed0a2ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.3.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 25f42f0b12ddf26b5b36a33fbffc4f2811ae193717a32b9161667846badb0a90
MD5 1de24a1763ccebb9e23eb52578c8bd64
BLAKE2b-256 7148561f389c02f8ff6b0853e84454aa7f232477211cbf8203f20e63eb8887c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 9.8 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.3.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f459c001cbb8ab29d0888f4a7d3dc347207aea8c81d9a1178696b6cfeae9e6f3
MD5 1fe1395faba36e14822bae47560faa8b
BLAKE2b-256 862b1e7263287ac10b9c57ac97dc133ec9fb561310578f5bc24f131c56ed57c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee5fa841d02d090ce2eb1b7b4b83b0a96bedbe5203bf81d403723e0487b5bb6f
MD5 e8311018f21cd6aee34aba231c95d164
BLAKE2b-256 f06e8491e4d3c3fd4ab040f3663fe2d4ce162a1b1ee344ec8fe67cd6ba7e2044

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9dd099a853044d16342359504ad6e158cad3a8bdf4037727c834b9bcd1ced65b
MD5 161169a6ce72a37735cb91032b6579b6
BLAKE2b-256 2348e7a3a02c29ff308a2e45d4d80214dde8648523ac986f4540bf201b9e3694

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 371678c2274757f284eb9cb9e2f71b36d11ff461d35beb00aaceb5c2f4e03c87
MD5 f3f843aabe3cdaf649f538ef831df0ad
BLAKE2b-256 a36b5118b93da7bedb0ee53371d3435507cc4f17527638431fb492afc11f95e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa094acf06d187fbf47237ebbf46855ce78e342daebc2c4307bc4ecbafcd5827
MD5 83052bc039d0072d49bb5f52d0c77304
BLAKE2b-256 4ed49cea3db2eb346247276dc49e4b3b864d71753a8d22e6c8cd30650f69d8b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6988829c90ac9cf88711eb9b108f9bbf1ba47e4298c5f76adf890395703529f
MD5 ad642d5e1b62634cd1b017ce0eb251c5
BLAKE2b-256 bc6193a416989992aae49d30a17ad0ac5ded5a6a419a56d4b55cc5cda6681ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 547b5f8f3cf9ed0bd0935134f47348803639e4b1c2d18badd76b43dd2a3484d5
MD5 1a70d24a3eb79cfecc3c01b425c222c3
BLAKE2b-256 5e8e3a5d1b9b04fe785456f01fc1a70730a76507a2b4b2972aec113d845be163

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bda83690a31c17d562abe4b402ceb3b499e8860db739d1f54f15a03d877115d
MD5 a95c066e192627b09a3f90e9116a5874
BLAKE2b-256 cd5f88a86fb8c82240b7a611818e22a6eccfa8bf4f78860c2d38ef57cf64f673

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a51600d9b97efb19ad57a6c353b0c1b3f2a9fef4a8da8e284956810d0f3ce08
MD5 cebd37458538823bc535d5978831a439
BLAKE2b-256 d3d3ea03159baebf4e466c18c4374b89c12d9cddc5f9590628ec66907047fa69

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82a47edebb40f463dd8a4e83c1ca56299c0bba123c1857455f42d7307a1f2288
MD5 ffd5219ef054020111367118448b9924
BLAKE2b-256 e3e912f3c2428781eed8220f032470af80ccd285728bbe495705e571c600629e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1df2f8b4f842f519a2796b9d674d94ecc063ce2f6e6e63434bda4b103366248a
MD5 523110dd3d96180b0fb066d29f404c7e
BLAKE2b-256 12a57a2bdfc1f23ed6f8f2e04ac33cdfbf54dae514ca74800abb36d8788416cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 baa67d4cf0028491e6649128aaed2799456ea5f0d003f0f2913a7f4806d33844
MD5 8bfb1702c2cab4fdd9af0fc7bf5ff2d9
BLAKE2b-256 fec4e30edbea45bc0ca8a2c5fa7ab08179f2efd9ac750ff0aae44f780886e26d

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a5121eddb8f0de9e5be8d43280b78316a873fb703faf92494fdd97fc18d71a7
MD5 3dbf80ff25c354a3a18c1fd2a46edebd
BLAKE2b-256 330580abf123e5d20fbd615782bfba7d374b0971656c7a1a00f0d95592c8b0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03c8d2be1f6f7834f328b25b97ef6fb5b7677bfc9cbe6fa840b77ca81f4b8235
MD5 65c74eaf5015875b9b44c22e0ab79541
BLAKE2b-256 c6c61a0c0dbd27af4fd5ac3a6d732cc223cfadbfb39a38c4085bfbdca9466a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c78615c2c3ee07c9fe3fd5f3185848592c03ed61ff2aa13c444f4c3aae26955a
MD5 c61c37f287192f98276e8a0d138d3384
BLAKE2b-256 c8dd4957f57ea34dbaaba9649765ac123833f3b9c9b0a146823a90005084036e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 10.2 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.3.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2909fe1bfed4d41f4042bb8fed7b1179c95b7994e623bb8af4b33ee7e58baf2d
MD5 3869fd0d86f510be94c25319801f7079
BLAKE2b-256 97e0629c45a1ac16d30ad3a7e04c413c055a12aa75a014615732b9cc92b5e405

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.3.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 250b6e4aa59bcd1c202937aa0f22ccc1339d1cce38c883eea3e225ddaf5aa871
MD5 d9b55a096e54f4d5afac9e187cb4d769
BLAKE2b-256 504f0b3915d8a494393624a145569679e751165e93b89978b7595d8069601f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: voidcrawl-0.3.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 9.8 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.3.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d5193379e7ca41e4d7e5197b731fdcd91ebda959381bfd12c2483a5a5b4bfe33
MD5 071a3564cca1e74bc4e8a9bb94a68e13
BLAKE2b-256 302228de5af78ba5c1ec8aa9a80f0c52543449ee6c12457b7c56be70675d9203

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5bbabc9eb9cd965daf77f660a3a8498f5cc0f72bcae6b5413bdb5a0f899861d
MD5 94588265bfd6534890221aac261fabcd
BLAKE2b-256 8097c3aacebebd41d7a6ce41f29ec56127c61ec9441723f058a74aef886183c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 21f15b2b93451c683c9825e1e6c29730e9ba5816605e0412bcc4b4b7b8cb34d4
MD5 ab1a6a9d4cea9f05ecfcf1e6109e486f
BLAKE2b-256 b309e1ec83ff11de27d89d05b1fe113b43505d607ceca06c27f43a29b5fcb43c

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91767c9362c035e5a0386a70a655d271fbac8cc0a8412c7d3ac561ee5376292c
MD5 1eadddc24bb6ed8ff43c5c4901433bbd
BLAKE2b-256 57072720eba8a60a7ef733e17296cf0e36305bf2ee239ce55e36eac053ba693f

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 74a0f5bebaa5ff506d83f0892692aede517c9654b5b906e0a831edd23339dd0b
MD5 a6b8c3162a20bbe32dfe5d6424860e56
BLAKE2b-256 4b9ea1509d0b3203f7a105c5aae33d4f88c9ef5ff19b76d54567f722cc38b162

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 079ee20e1fd8ba32e5f5970b9111ee16c4f2d8526cc3ec0347f537971c097b25
MD5 31b069b37845c5fd27fb24957b41452f
BLAKE2b-256 758b1e9856d2aae813ed483e4440c8fc0bf5f208db87198512efdc0c997bd4da

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b0c8469f3f2146493f22caf203529ebefc57fe143e6b6ef1ba8c70815a5a342b
MD5 4057e62b3f69737dd2aac363caddbabe
BLAKE2b-256 0e1d42de6357ae5b16a7692ada2f91ee5772117879b0464c2581aa623164c9d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 baad67f16aa176f9fbc1800d29d0bb131b4878817799bef7dcd5b6698da7e6ca
MD5 51a4583397f07384dd43b7bfe8967efa
BLAKE2b-256 988799c63ef412b21063a049f79c79165dc5cca09866e2aa6fa323fb98088175

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18e3f8e47109d6dcc25208209a75d1b78c6ff82ece7058c0f57aac3027363b47
MD5 e418dceedf4e72a02a4844bf7a9546eb
BLAKE2b-256 02949ad7d3b0a80d83c140547eddf8deb57b4bb749f9053755fa72c7d91dde9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06108cc8b61ef3e434f55dfe17988ec67aae91132c84b8611402e8c24dbf61de
MD5 cc87aacabf00bb711d7db0b08e0d2e11
BLAKE2b-256 753401a78d263d9890c4122b6dc831deb44907f4e22cdb58e411a9fb6af6d4b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 778a47cd7fbeafc988a0234a14283835e0361aca0928fabfb1aee3cdd83db903
MD5 c44a105db7a25bc1bb5e4b0b477f949b
BLAKE2b-256 7eee49cd3fe11fe3075ff5edc6e5e4a17166050a64c4387a51e6ce4f99fa9892

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d07630c45553ba40181ea4b1118a2138558379c490c02dd494834083902563b9
MD5 6654183354ad74d0850062d82499343a
BLAKE2b-256 b4d281d1f49c566e4d3feabc9043be0cfe7f4fff8675075d37c672a6664d081b

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b31742b7d9630255038ab9336aa4b4833bea68e68040844884ac25a073cbe6a
MD5 baa4567c3ecf4cde154f9212eaff54dc
BLAKE2b-256 abfc4097e902d8fafad29bdd1f61114ee2064c7b76cbaec5b4043bfd4ee2b869

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 077ae1426bd3823ffa9bcd814accf7d8781831037b3fa7f0293512e7e5e50f2e
MD5 ef1f1072eafd7a65f7105726f250f579
BLAKE2b-256 cfcedd57464aaeef17d8d31de843f995873f791f9457d35bc2b2120effae90f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.3.7-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for voidcrawl-0.3.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 374c84a3e4ec869f0702afe557dc4424e8c2d949494b91366b215b65e0eef45a
MD5 8369b836442b629daf609383feef953a
BLAKE2b-256 922f522b0281d6a6b369801b63922400cc6383bdc6c25891a4f94974a4886341

See more details on using hashes here.

Provenance

The following attestation bundles were made for voidcrawl-0.3.7-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.

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