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.2.tar.gz (125.3 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.2-cp314-cp314-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14Windows ARM64

voidcrawl-0.3.2-cp314-cp314-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.14Windows x86-64

voidcrawl-0.3.2-cp314-cp314-win32.whl (4.8 MB view details)

Uploaded CPython 3.14Windows x86

voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

voidcrawl-0.3.2-cp314-cp314-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.2-cp314-cp314-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

voidcrawl-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

voidcrawl-0.3.2-cp313-cp313-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13Windows ARM64

voidcrawl-0.3.2-cp313-cp313-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.13Windows x86-64

voidcrawl-0.3.2-cp313-cp313-win32.whl (4.8 MB view details)

Uploaded CPython 3.13Windows x86

voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

voidcrawl-0.3.2-cp313-cp313-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

voidcrawl-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

voidcrawl-0.3.2-cp312-cp312-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12Windows ARM64

voidcrawl-0.3.2-cp312-cp312-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.12Windows x86-64

voidcrawl-0.3.2-cp312-cp312-win32.whl (4.8 MB view details)

Uploaded CPython 3.12Windows x86

voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

voidcrawl-0.3.2-cp312-cp312-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

voidcrawl-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

voidcrawl-0.3.2-cp311-cp311-win_arm64.whl (5.4 MB view details)

Uploaded CPython 3.11Windows ARM64

voidcrawl-0.3.2-cp311-cp311-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.11Windows x86-64

voidcrawl-0.3.2-cp311-cp311-win32.whl (4.8 MB view details)

Uploaded CPython 3.11Windows x86

voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

voidcrawl-0.3.2-cp311-cp311-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

voidcrawl-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

voidcrawl-0.3.2-cp310-cp310-win_arm64.whl (5.4 MB view details)

Uploaded CPython 3.10Windows ARM64

voidcrawl-0.3.2-cp310-cp310-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.10Windows x86-64

voidcrawl-0.3.2-cp310-cp310-win32.whl (4.8 MB view details)

Uploaded CPython 3.10Windows x86

voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

voidcrawl-0.3.2-cp310-cp310-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

voidcrawl-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: voidcrawl-0.3.2.tar.gz
  • Upload date:
  • Size: 125.3 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.2.tar.gz
Algorithm Hash digest
SHA256 434b4e84f5ef0bec6e714278c8d46e567810d8e75d1f1405b2161cb092fab41f
MD5 d16a790f2f4b9a3944ab19ac76e6ceec
BLAKE2b-256 de156dbfad1ef1c265d6e606b6b9da2d9090de59b5db67a8e92b1bad6334313d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 5.5 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c8284ebdbb5b9d6c92ffa70752bcc8503a0575c751dd26af0e7446f5b2f786c7
MD5 9bb6c697d88cf45857f1b839db4d0fed
BLAKE2b-256 144b8d7177c4f582f9480b8204ba1f21e8c404ba55c3e13118bd78bc877f2e42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d50d31e8400cc877b619f86645b27924164756e6fd5c9519d2ad3f4f1fa663a9
MD5 eb5a9483d1da165501d40df87b1f3cc8
BLAKE2b-256 bf37d5ee36aef0a1c8f1575747d192fd48d62e93156db83b13d1f8db077ee5f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 4.8 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 93057f29636815d0d7d3d70de8229d5641311a8c5768c89968f8c27ce80f144f
MD5 488d5b6b8fe4e229d4798a947d333c85
BLAKE2b-256 85553019becd42429eda97b448c2a905d66c294663f8abe9237e8f1c5fed2ce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c65bf3bea99b0ad949fcdd23ac6e1cc0da702791050621d9873f08449f6d00c5
MD5 8bc661ec2829fd0fce53280df465baa1
BLAKE2b-256 b2f916ab3a2cd5d76e0e9561bbc504e79acd1b69295a1ea14b7fc4e2f0c0446e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e237adbe80f7c8254a6cb74d6878a06c8ca473169e0edeb154840677c047a4d0
MD5 27ae30c80aa3a37ca0c77236782fe141
BLAKE2b-256 4404e6682e7439dfb4f213a74864616d565cbaa0afdc78b27450c396f90a255f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a8d91f04f31891f63aff64be1b8fefb4c1f7081c7449d59f293382d16718305
MD5 8e8bcab43e6462e0ace5819d9ea49f32
BLAKE2b-256 02d3b91b1d5d5dcebb1e786f9e7ad387ae66b93e9d92c4b0b66a2b385a1e1516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d59018c8c79b9aed9648b6da50c43bdacefd8bac7d5c789593c6e0f5df51fb2
MD5 ac779708450b727da3b95335bdaf5027
BLAKE2b-256 e5cc9faf0271f1e0897b0dacfcc93c0594bbf3bf7ca5b03d15826836cb7ae93e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6bd2e8257692969d940558fd05d0fb95e27d8477b41a75750d15f1ef70d060d
MD5 2908dd6943fd6713e1429962ab4acf33
BLAKE2b-256 f3e8f3bc3a909be12df656a8722040179d628e25605835b706fa413b6443adf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 e5f4f62b85d5567cfba0b3930537e47259e0f3f770ea66996f27204809433b76
MD5 5046f7f484157552f81aa98e9d981db2
BLAKE2b-256 b1c6be5c5bc8e1d68c291872cd47247073e382d0e8004db9c0c3eebddefaa4b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0faa0632809507adfe0f1998bd1afc57bc4cb24396285176fbef0fb37e1bd5a0
MD5 989ef8124e5f6ee99a071c98961fefa3
BLAKE2b-256 f6217a3d203dc20014fbab02a3f698ac055e7860641d7ad99123c26176c218d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3bf71c8151ef78a554a7b63251556ab7738997baa378ec20ba009b11988001f3
MD5 fd8dc2fa6e6f5403918651ce3a29bf28
BLAKE2b-256 199ba67cf98ddc62faccf6c9a744f8bec31b4bd10a88546f6de7611857ed3da8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0928baedfe0c2005c84e981929a20e74831161b2b59436e6c337f4d20c32a640
MD5 d636dd7ce0262654bddd8940b609dea9
BLAKE2b-256 e8d364b36a62c1b61855160a4679dbf387ce56cc7e28e6b310ebf19ddfc874df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2090523e9ba9b8eaffaef2faa37c37bc5f5eb7771f44676819b2389c7a2747c4
MD5 cd6afb446e0097a2c77812382259d652
BLAKE2b-256 413bd53e0052d131d3c56f43e3076936774fb48ff3074d347b6d075a999ecc06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d942edfc64adf8aa0e73a7b74bf0235de09ebd682ab328498bf61ad6842231ac
MD5 d9af17c6ca67eb6d384b6b5a22bd375f
BLAKE2b-256 26d293d83629ea651d37578f99325d6f82a015beff0b1cf5b8e2bfea075becaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a898fdf2e4edc65819f8fb6aaa65a9f2dcf0d74bf2c36063094e1cc07a3904d
MD5 14040e439ccdf3ed0ab1d1ee50133bc7
BLAKE2b-256 01628e1c3ef16f6108df728e2557af79984f99af4e2b2d942194d73530bcf6de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1a5bd677d0ecb9599f6af51b001bb263b1ca08af0f5c0f2d02cf098438b1621
MD5 2ba33bb73e16d65d76129afa487c77c0
BLAKE2b-256 91793efb85bebdb82bf638b82977ac053fdb1fd86b8b4bb03b23249c3c083ba9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84ad1b66f534460e72ac0f96da39800b8521aa0954ffe64566a7523ade1b997a
MD5 e4fc2895e6f9cc8eab9e89b61ce5c110
BLAKE2b-256 7ab58e41f637b569c55d28a0fea7baaf797037b48465dfaeff30e278f46914c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 5.5 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e41a1fef353305c5e1227094da6a936a7677c57f45b8027fbab048d557d7ff87
MD5 7e4716037135ceb14eadbdbc1eafec61
BLAKE2b-256 b65bc8a91b5d1f56c2bb1fdc01949de8560d0d826062b14a79dbe36dc82c8813

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d5259fe873c2dd6acee33dedd8b90375e53561cb72066d571047363dc96ad708
MD5 b494b6d3a53c32d45ad98e03e74eebb7
BLAKE2b-256 556ed7f55c1e86cafe72bb0e7dd9dd2823e45c388148413dc05ebfdece551543

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 4.8 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bb37896dd0f5ff51e9b1eb0553e6e356d02cfef1d72e63c4029e6cd3986eb764
MD5 df2186ef321e779e61967843d1e7975e
BLAKE2b-256 ae0f7a5cb429bcca7ae4fdfe6da92bedcf89030f8927f45e60147c9fdf8b963b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b25d18f7d09a1393e66062a2f0ca4f607c791e9f08e09f027c78c86efb6eefbe
MD5 674cca1f6f1f2f84d60ecb1ec8d8e779
BLAKE2b-256 df443d4385c85d46eba33390667951758642d9cc27aad4785a8ce089a9e3f0cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7ac008e2f1ab5dad2e5b9f9ba2d862ec2aadd8b7af2a2ca5d48c3a29d386b7e6
MD5 67da28cdd55219874887eebfea80a185
BLAKE2b-256 32732385ac8f3411745855fb2f628e40d03835622480e69a1317823e91f00d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd7f7fa415cfeeb65a6b88a4dd8a5640a9ff64f7194bca0cd6df0069f8f424b1
MD5 0a46277608bf81f023f57af61a3907e8
BLAKE2b-256 31a5bedeabc53762b7831f41df4a63b28ae46596f9436e6f71a0ed447a6bc56e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b99171243f17d97155a3658fbac56df3a9369789a03e5d17d093af66f881592e
MD5 3e4fbc2058474cd8172d0efbaa2b0ba7
BLAKE2b-256 4a0f00a1c3d295cd49c5aa076c589dcbd61b52197b9e04e3cd45c44f8744ee77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce2b78254401f19bc56f166fff1da094081d3700e362f720aef521523fd52996
MD5 f78e80f862b972af32bf60b52fc63475
BLAKE2b-256 ade43fd025b29f1160a4ec1b5f9f3eee2d96cce0408b99a81acfc68c5851d6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 499b88659af456f47b8d87f4acbe5e7fbe4313ca598196987a96b89697ca0d7d
MD5 4ddf45a2df9a14cbb3713aeb5172dd35
BLAKE2b-256 ed06186bd605cde53abb52aa7efd0091aa97a1ce1616364d457ca723f6309a3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e92222a62ab07e0d42a938b2f5951a6b45a374a6c65bad29ea8110ad776a5078
MD5 535a24587fbfe3c45c7de9782ac255ea
BLAKE2b-256 231487f5e430afe9c151f9d16bed061cced108921cbc836942d10c109c6eed48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9997228e518ffc8c7a20a4120e520a242100669cc863a6bf952fd245fd91a41
MD5 7173ec13360a5dbe6862dd8a0db7977d
BLAKE2b-256 1ca15281bc5e21f5461f3d57ef5c2918ae83c93250e3ea3ba101fc0eed6f6612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7a958dbccd39a851285217b04cdc237e002f5da24d07ff7384cd6b3e29a864e
MD5 a1f257fdbd3802105166b967eac94d1a
BLAKE2b-256 1d375240bc1c668ecd9b1d1191dd3737a467fc67642a17e0abbbc4318b9387ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82abb41f1e3900e305208b55739d34e498d277bc99de98dd6e6f87625401ba7e
MD5 8d343c8d3df898432f8b61b830244596
BLAKE2b-256 479b8fd8e66c7c1f66433a6d16b8436f359ed98f9651217ecee49e6b4ef4794b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0540a4a1817a24471991133e08ee414a782b7f42376877bb8183ec276cb2f667
MD5 8c4e320427223325493bcd6d36e48dcb
BLAKE2b-256 26aebe5c0ed1b8695287f0a94a31ee0720a58531c263186d8cc1911ffc23be3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9d1f3c3a7760522a548c40d251f6f9fddc1fa534c5de7891c103b6465825fd5
MD5 91cf9e9d6ae1c898e072a9eecff54cbe
BLAKE2b-256 d2bf17ccb7c0fc7d9461097a939100f38483f80ebb4a1565ca5a5fcdce1d0444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83702e1545d6a62622497a498702d662bf62006742d12928905be5e1ed40ef96
MD5 abafeb771a2a108ca89b55d694e3fc10
BLAKE2b-256 3c6586efdc107031db0652b7ce25f7b4f46d04c859fe203acbf834cf3fccc630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecdde3370404593fadcc7987ca724ef702f35ea6a554ec25a47829eddb65bba9
MD5 80154123be23d4efc0f1965f05cc4b33
BLAKE2b-256 fe2c1df9473ef7a158cf5233f752689f85a10b5f73d8dc2c1f664bba3f2bc90f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 5.5 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 72171b3592b4b0aa554938eeee4de8b7b35b0136198112e4edb4991a8c0e8792
MD5 a0a000fe010fe6f88bde5ded70060a31
BLAKE2b-256 3d57389f09db5853f1a3d2132d52b1556c15058dc8ad29cbaab26e53f22b8c45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ebb91b49e8fd8121eb751e1418a90e5b814cecb8ca4eaa4fda635e859e0b3ba8
MD5 0d8afbd9a2a6755079074b96860b71c0
BLAKE2b-256 938bb04ba30cee15912a5a30fde64b36166a29eeed48b0e8ee73f83772e590e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 4.8 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 af8a7e3d15a31c29cf1e8c90a813b033162d017a70eed28e18093f7e53b09fcb
MD5 743a35672e6f3f7caafe6299b97d4796
BLAKE2b-256 45bdc8c42ce6eb3282732d459e00d4321792265c1dc87e32bb7511ddc9f02fb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d83b5f324263f73fbcc9214ad63a73a85035a08cf0bddc3f07f56414a02cc2f2
MD5 730c48a79c7f9e7b88c70858c5959e58
BLAKE2b-256 c34d51f9b369500031196967f208009628ef2576ddcce7b6476ed23adaed6174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ff01542fa8c25ad57efe819c19aa3eb5ff9036315bcdc33f409ce0833178a370
MD5 85787fa9ec2fb8b03cd59a507e2fa23e
BLAKE2b-256 8fe67d008ccc6c14e5970dffd829f9b6998c997f6e466ac3a8aef77bf6913158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b69ae538b013cdaccf3bc5134483101ae63170829ed952bdc36af3d8942c2642
MD5 316b5213db9d343a77a1130b3435fa51
BLAKE2b-256 81773b80e41bc1835181b24d1ce4264ba0c8d8ff3380a01409c1220ed6782222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5e5d1d92942265f75bb35b01f9ae458a4520b09917e4726303bda4181aca273
MD5 c8e6b71843e793e31693c76b3717c382
BLAKE2b-256 10400d4604d2d796bd752bdc5d27dab8157d2a7ab0f017682d02400dd483941f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24011e25a94dea299e3420e542a85c05ec6d32fe779d4565f965258c12b9e03f
MD5 3082f76da2845c77670a2ca2f1cee28c
BLAKE2b-256 a7b8583e88d8c0ccfaf0774e150f61557a0d2b1a60cb6e057becd256a38bbfc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 355978391b93f8f311f9e73e203f17f64d978d074b24e05a31eef0ddc5218df2
MD5 a9204fc557bc71d3fdd704ec565568b9
BLAKE2b-256 9f1b39b7ca3e7e9440259c6779e47e7e55dd646af574c1e23dc3c1f668c850a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 118150c3131659eb81cd91b073298eeaec6fe371c7a69f2029ea402567a70b45
MD5 511c2af355292a88e2fa4e2b9b7332cf
BLAKE2b-256 135bb3a8af4a1278a08e9977d677eab18c5f1544da4b79060b09cf2f9b868693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 14d2e69c2d3ee02aea301e277305ee7ac3dfb7e41e04ef65c6a8f2f837794a57
MD5 2148bb7afb780b21bc3483ba6af93d3e
BLAKE2b-256 80c708f125681a257f8b48d0412c41e9ea32c545fd347bbe0347066956ec6a40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4a6dd0b6d589f88713a925d3fdcad4f2425641f5f397b77962109ac1dacba48
MD5 68867350b4911f98005bde9b876ac401
BLAKE2b-256 ca41f760f4b5be8dbaa3d2bc451d313f6f78010bd3955d50ab8e74c9390e5c3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2bba72120326c880e7bf6bb4dc09a40c748f02657dbafece9f45951b6a4e1e30
MD5 ad233b613ca51de3adbaa87d7a4e3b04
BLAKE2b-256 a86860edf179766c3b90194b78ef9babb58f1512e3005a50fe5d7a1a2babd3c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f272175199cc50aa2a1bc7320c335e982c37c7946c166b3b4afc2d1c3f008d0a
MD5 636b4b48247b8c8873074c3965177a35
BLAKE2b-256 5ebeb3bc0289e7e41d98e4246fe24b45e0dddafea874b3d7edf940d6473609ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26714269cdcbea6fd5daed44b37d39efdacf3c086e543f41043694f4939bb676
MD5 19de95552f022307f2138074d8f21b29
BLAKE2b-256 8737560df85fd076eb1cbd5b39d457fdeac31cdeef7d4c5ff06c077ac43d0e40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f400a53208ecb2ccabe5b15eadad86fb155339bb9cb21ce6399a8df4e749a149
MD5 9cb4c577abaf93b1e32961fe27099659
BLAKE2b-256 a7e60af5ba4ef04273ca75917f243bb5ab857bf148d16ef81ec3acbf33c0732c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3f957384fde495e968e87a1693f1c9f227f297179c3db2beea5d0c4fc018798
MD5 28555259793c770ac779ca639dd427f0
BLAKE2b-256 07469ca1a843271dcca6214d9855c176355c8f6c871ef33ff88d3e2e7584d640

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 5.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.3.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 eebbe7a396ffa4b25d7728cfafa79811b09490632abcba268cda961a37a1ec61
MD5 0e0d66f5d822f2ee553c6f2d46674085
BLAKE2b-256 c01a784046f81ae177f6a90439a5cfb973bb6167ef9ba6c0f55ebd2e4b91ceb1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8692f5636debb3d6dcafb453e3ae83069ff50eb13b30398ebdde879a909d503
MD5 f92036ce2adc5b4c872e903ba6adff2b
BLAKE2b-256 d5b407d30f508359f42074c2eacd7f97d1c480b9526b64702d35aa3cceb3e916

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 4.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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 27aa292813f50024d92e2368cea0599f40d0f6edc6b06b631e9fcd1ae1ea7bfe
MD5 671892bf78c3aa9f97dd3e87e1b0b3d3
BLAKE2b-256 73a82401dd89db1ae59b917cd8c04d5922f2b6703299c55d15f0222a8ce90498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf585d8bfe8c3a2d85b7f3f804b2915d668575df871fc1c7fdd59a305647f4c5
MD5 c09ce5dba077a303b95b7a7b1647b482
BLAKE2b-256 45200495f7214448d58b07863b3964a212c9d23ffb2e6eee44c6b037e90550cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 da6ceb6f475f9c74b19d4a7cc77b5989bb988b1fecf44dc5a4d881bedf6a9584
MD5 64962d703a22b3b50709c538958a42c8
BLAKE2b-256 bd8c7aac92c39c5ec46f63e9706cd59e6672197a393f86bba83e0485a046b9c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b36d1a2af9ac61874730d1cc22ef244572f923dded0b414aa5a4a09c76706691
MD5 a81574e44e1b7127f994dc1ebe0fd642
BLAKE2b-256 15d1f40ea7a21035b4c0eeb91aeab6427e545826aeb69aa68cf7a4c623dba31d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 809c7abd7de8c1b54fc0c3bf730b47cef41c7693f4b6503d8ef12d6a41cf1379
MD5 3cadec79cb6a110ca4584c9d6543c787
BLAKE2b-256 0a61cddb422f9912034c47f059b4123f29d55c673234275e068a10739c3ee1d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45a1aab301385d923520c97166f58e0b6e15f2afbf91ffab29e126529c0490d3
MD5 8a4de6bef38a2a2a753fc7a17e65908b
BLAKE2b-256 ee89d4d6687b1d1b6a030ebc817fc6bdc12bae41ac93e5c26b5b2442384d3ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 73e19e5859449f49f8ac91d24fd8ca4baa8c40fc7dc3451cc06f177f41f92f8a
MD5 64d239ec0868cde73c0782dafa12de4f
BLAKE2b-256 076a372265015c64fd1a08239486142b7e42c2499062517fe39002520e897e1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0875910fd51f23a64f33d7a91dd4e2a12dfb0f6d01952a23d240a47902cfb188
MD5 29bc5d7ee75294d7415ed1ab57c093e2
BLAKE2b-256 710d4bc649fdd8badc80f38508dcc58e4dcaac2076e7211311fe07cceb66173f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a226a4a34386fae7bb58744022294738e46ddeba8b9f473f1f095ca52e0b4dc
MD5 78b3b81354baea153d7e7eba6e3678c9
BLAKE2b-256 6b43cef196b8dede11bbd027c536d5230c50d6045ab3f4a758cbd4fa64ad50f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a174efd12bb94c1adfc85872932075dc5ccee33256f3ad7e0a57bba113abb13e
MD5 6fafc72afdd3678fc50b36b70717b88a
BLAKE2b-256 1e939b443561772f4bb0a688b98653b594eaaba9ae4cfa432d1f73859b02afe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e28e8a74a69627d96811b348839fe666a9a7c05eb71ea26ace1c7aed3d0a22f2
MD5 e8da7fda167f68e7bc48378f904b2894
BLAKE2b-256 2d16d33a6d617b93f5a41b592a95c78cfc4cf06ca0d324b42c62a0cdc0fa9d54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09f45a4124f6af1b99ce4659aed4a961335845def96197803b6200bf9621e2dc
MD5 6f8c11ee38547220fe537d36b7cb4ded
BLAKE2b-256 d0af81d622f7919904966d58f7d476c944c473c8d4999790959d777bf18c5588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9719eb712f94292276cf6e34e6c678c83599d80c748bb95a3d05f3b71713db89
MD5 0f4f5b729d91e71be342f94abb5394eb
BLAKE2b-256 5057582b77222c1df663057207ff9db67fbb5544342b12f21c9464595a221ffd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37107fa90091e7cd1515f64bb3ccf0d4b715ed766c6f86e4214f1ca811697e8a
MD5 7e69ad15e7686fa785b7f8a1c2779ef4
BLAKE2b-256 d7c98b54a0a132ff4e810855cf048f3296e4a55292ef037257f17342ba97fa4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5cbafac0e863fd29deb2f3a1334ad17896ba713938cf7d7148e073d6bcc43a5a
MD5 1d759814c1a07a7f9128eee45dbfceea
BLAKE2b-256 8b44157af356d43e8e3e822e68a862f104521693eaec397b5f0d0dc61ec71b01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 5.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.3.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0b370981144c10a5dbfbf10a64015928d7245168bedb65c52f36f4cc2ffd81b9
MD5 91c410f321a9a5c5492442a438f5942c
BLAKE2b-256 b1e8bbf49db6c2f638f858d3d9c18f0f53f8ecd7697843ddbb77acdec42fb5f9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e8fcad609eeb8257da78e8ab6127be1362c16e470658f7e2af8d03d9f3a6ee9
MD5 c701081373c99ed8e594548cf937ef3b
BLAKE2b-256 160089ec532c3c4cea88e3f4bec3c395a09cf9120c39149354c82747bec782c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1b65e1b370b2e7e252c7636e5030593b0c6a16e4a282adf5fd7c7d4daf072d80
MD5 8dbf9b5c2f9afb6bf6c90a6f6a7d81c1
BLAKE2b-256 f47808998e6725c9c46bfc7af71f0499e06914e04d98ceb84e8026b384662215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9104415a9591918d23ed3fde907e41b88d27e8567a8da83e6efccae797f9e9bb
MD5 0efc8f567186c2cd59553d99e902f465
BLAKE2b-256 5cf51a45053e2e568cc1bcaa4680b43f0f24bbd0f2f44cea61199e329cb81781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1c29604da518c31a6787e5493f61f916c7fa4ce8dca1607ef04a2bacd90c3f11
MD5 a9d8a555d7ce036df0eba8bbcc45773d
BLAKE2b-256 88094b3682be181e6b7b2eb583a5d8c635bc783237f7909599b57752bcc769ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b851e96b1937e1379ea50e663d3c5f76bc03ad5e6987a486f3312337a7fd346
MD5 de6e8201ada7b77fdf6d78582baaead2
BLAKE2b-256 439756177fdd7814eb81ab8470e58e317eb9a124b14ebebeac1f6fd293fce86c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdaaa538a025cc65f2d12287424eadb12a4c984ab9220f64d809b247e8336132
MD5 785af5a31574578ecdb293fd92c06038
BLAKE2b-256 c6539160c9f9acb7cad9438295563f6431349f26e5446a404fddfb9f1af4cf0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db90e6c82b05af7860e8ebdb11eba6ae1a40abf8594d61aa9bc1366f054601b4
MD5 d802008a684e1eb16415518e22aaf68d
BLAKE2b-256 9be177f4c1c7b5f4d28fc99cabf2815e585ca2217017416e5ff0ed7c92afe685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 5cdfc59471e091218e816dc40d032ebbc600af5162ac204e9f5756ce50980da7
MD5 f62348a26b84b9b3a6ca079e2660178e
BLAKE2b-256 8e960bdab186e20cb6df170ea46c827f85909dff0b7290112f73f86b1d39c56f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73c8a35d741ccb34bc93fb8e17627ca873d734036e28749c49933d249df3541b
MD5 c35c11609343c3b5cf5ba71ee0db9ca4
BLAKE2b-256 cdc33a238e700fc75a31f17ff0f85af233300f2cf798d7af099ee9d0b97f8ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f87cc93b9f934bdc2a607d50d0e9fbd90ebe75c9ee26caf92f57b6253a8bf0a5
MD5 1146d0c22aea17783df4a5c7a4ca013c
BLAKE2b-256 9f7c8eaa4381bf89b1ee760eeb1b200df857501f3667f832ec11e6db51dcef3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a171dd57b57e737dd68b9597b0819f9d9b23d7eb4d6a692fdef50d73c9669d5
MD5 0848299ba94ffdec16abb7c13a30abef
BLAKE2b-256 0b4616ae1770c6c5937efd1e05258db956ecf0de58849926f24fb7710e2bd456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 197e8ac49cf6c361b3ad55b8819b03bbf49e4f6741cbdf44f2bd21c7ffbc26b4
MD5 15e6b5d5a866e8e9547f35150471ea3f
BLAKE2b-256 6f4868b1157fccfaf20f410c558e7cb09fdb1fc17c81eecef6c0c506a768789e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6981501f46adbb6d9eb1858898deae5590a08302881b62777bd2611238f35f4
MD5 01d9cd7cde19ecd82d5362be39ed3c68
BLAKE2b-256 70bde7c220f13f4ac2e7f259962bfe366edacdd775c8127cc30a979f866d95a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17b60e85711cdbaaaf1e856bb89be15aa4a172c4867bb8adc677f56b6b6ffe13
MD5 08558780441c342dc161e3e821ef2588
BLAKE2b-256 24eeddc2c8f00b7bb38705dcb1a6ae7f96c751ff6619ba4caf1e82684e4ad78d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49013ef2535a57eabef42e6cc540f86938ef07d09e4b082c4dee6dc5dc13e8a4
MD5 d83414d662fe8f0ad18940ccb41ca310
BLAKE2b-256 9796ee672010dad8f2c23d0cdb90e5b341732439e5be531592520f583b81a061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e1c9cdf97792febecabc99755e6018cc2f828616c7603f27bdb0f9f082a48f6
MD5 a4f98f2e540c5d4807381d899069591c
BLAKE2b-256 7a29c689c7cf5c34e0e82db602267a59ada5a844a691e15fc3c2d14770dab73c

See more details on using hashes here.

Provenance

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