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.5.tar.gz (170.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.5-cp314-cp314-win_arm64.whl (10.0 MB view details)

Uploaded CPython 3.14Windows ARM64

voidcrawl-0.3.5-cp314-cp314-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.14Windows x86-64

voidcrawl-0.3.5-cp314-cp314-win32.whl (9.6 MB view details)

Uploaded CPython 3.14Windows x86

voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_riscv64.whl (13.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_i686.whl (13.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_armv7l.whl (12.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_aarch64.whl (13.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

voidcrawl-0.3.5-cp314-cp314-manylinux_2_31_riscv64.whl (13.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (14.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.5-cp314-cp314-macosx_11_0_arm64.whl (11.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

voidcrawl-0.3.5-cp314-cp314-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

voidcrawl-0.3.5-cp313-cp313-win_arm64.whl (10.0 MB view details)

Uploaded CPython 3.13Windows ARM64

voidcrawl-0.3.5-cp313-cp313-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.13Windows x86-64

voidcrawl-0.3.5-cp313-cp313-win32.whl (9.6 MB view details)

Uploaded CPython 3.13Windows x86

voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_riscv64.whl (13.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_i686.whl (13.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_armv7l.whl (12.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_aarch64.whl (13.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

voidcrawl-0.3.5-cp313-cp313-manylinux_2_31_riscv64.whl (13.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (14.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

voidcrawl-0.3.5-cp313-cp313-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

voidcrawl-0.3.5-cp312-cp312-win_arm64.whl (10.0 MB view details)

Uploaded CPython 3.12Windows ARM64

voidcrawl-0.3.5-cp312-cp312-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.12Windows x86-64

voidcrawl-0.3.5-cp312-cp312-win32.whl (9.6 MB view details)

Uploaded CPython 3.12Windows x86

voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_riscv64.whl (13.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_i686.whl (13.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_armv7l.whl (12.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_aarch64.whl (13.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

voidcrawl-0.3.5-cp312-cp312-manylinux_2_31_riscv64.whl (13.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (14.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

voidcrawl-0.3.5-cp312-cp312-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

voidcrawl-0.3.5-cp311-cp311-win_arm64.whl (10.0 MB view details)

Uploaded CPython 3.11Windows ARM64

voidcrawl-0.3.5-cp311-cp311-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.11Windows x86-64

voidcrawl-0.3.5-cp311-cp311-win32.whl (9.6 MB view details)

Uploaded CPython 3.11Windows x86

voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_riscv64.whl (13.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_i686.whl (13.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_armv7l.whl (12.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_aarch64.whl (13.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

voidcrawl-0.3.5-cp311-cp311-manylinux_2_31_riscv64.whl (13.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (14.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

voidcrawl-0.3.5-cp311-cp311-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

voidcrawl-0.3.5-cp310-cp310-win_arm64.whl (10.0 MB view details)

Uploaded CPython 3.10Windows ARM64

voidcrawl-0.3.5-cp310-cp310-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.10Windows x86-64

voidcrawl-0.3.5-cp310-cp310-win32.whl (9.6 MB view details)

Uploaded CPython 3.10Windows x86

voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_riscv64.whl (13.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_i686.whl (13.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_armv7l.whl (12.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_aarch64.whl (13.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

voidcrawl-0.3.5-cp310-cp310-manylinux_2_31_riscv64.whl (13.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (14.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

voidcrawl-0.3.5-cp310-cp310-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: voidcrawl-0.3.5.tar.gz
  • Upload date:
  • Size: 170.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.5.tar.gz
Algorithm Hash digest
SHA256 c83dae2988dbce372a77652a733ef89f833d658b7e24b7a498987a752d1bfc94
MD5 f68b1f2efc28b0598fd369d52fe9cf59
BLAKE2b-256 27a47e54bd0828bf3bb79cc180b06bb53bdc04268bd2466db0cfba5d87606678

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 10.0 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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ed57836ce1379252143de3e9f9f7ec5874d5232ba6fdd7f9d19ee74fbf97f3dc
MD5 b05aaf955855be12bd50918b2c74fc8d
BLAKE2b-256 b70420993627876e7615d5794310416bbf1a4372a44746750a1f294d5d69e554

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 751948da77f0ae92108b0d395b8419ad805d06a13194a2f9f1eee43859160939
MD5 48bff80cae2d2639cb5391f6156a0139
BLAKE2b-256 cd8c6e967a0f5657d9df2c03a30a3ba9d4834a9499dfd5be50a0bd770fe39354

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 9.6 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.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0779dbe496c1e43799e86dbb71376c97ea215087268df799cd7ec28faae34653
MD5 742b866f0ca2d9174a1e53193e81dbb1
BLAKE2b-256 46a8277332765e567705b3474a31b1a630938304a103da81c2fcdd047788b46e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 402cfaa2c73245cb0f4378d53613a5995eab37d7509559f78e3fddcfab86117b
MD5 2a5112439497e27092b84b4ab6bbb682
BLAKE2b-256 bafaa41ad372478ac2d21ec7324f8c6a6ccf5203a3fbdf81fa8c131a3dd4d2d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d62b65c3159f7e4307111a761e4bef42788213cecf59202352cd9699c59421bf
MD5 a25e90430e70155186eab4e505ad3394
BLAKE2b-256 cc3d6a2988fdc597cc5db461a3f20f012a5d12976dc13510401ae479579f3485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f9f4aeeb0dbf26f2259185f17202ff2908c6e60322590a3966d70e78d76c5d8
MD5 4ab27a93217e283e6bd18830d1bb7e50
BLAKE2b-256 94560c8f31797f2d5f771ac364e48c4581f5e99b46cce9681cdb0e09b620458f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cbd5c2a7a312bf88fe0939e623c77734a5e322b9491c70939a9819893585521b
MD5 42760631992e8c0b96dd6e1fc25de77f
BLAKE2b-256 066ff07bba2b18940f04209518fdfca910d6d96c46a87ff48e4d4c43beae2276

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae61dbfd00c226e4dc02751ccc0e188292e88374142e9737c2fee37a55414e71
MD5 4648b9ed8120aa6fac7dd0acac635bc2
BLAKE2b-256 a77791143dd46e3af00eb8bc365d2c025bf0ad0a708e2d5ca2f977e10ff32a20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 483af2704239f027568ff7b6456cace81f765ab9e1e609e98928b187cdf89f14
MD5 35ab9807b8bc887345d72e0e8a025079
BLAKE2b-256 16136b4b22063c203a57ded3c75ac027a05c310e863993b8d471f613e450c0d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99c0afbdb86b6d229a38d3f577655d5c3148578aed779124b6a637a41b8d9857
MD5 57d75560ce3da1d9bcd55ba74e5a5fee
BLAKE2b-256 09e9bf0be0f9d3af4ee23153aa3ae361bf3d6a6d884f9bd56e7379399ebf697f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05ce4c5d7902589d0414bd74444230643be54d96d073dabb915d68b43d95c988
MD5 099ff70b43f6e6e51f84101a3fc5012b
BLAKE2b-256 b1e0c256736a9c7e28ee0590197294d03872437517e954fdd69de2b7e830787d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b21aafabea11c4906a2cfec3959d088f452bb58eed49d649a50ba057ee7be23
MD5 d6c5180e1ce795a000d2b801ec2d2fa0
BLAKE2b-256 3348cf992a2e9f199186e3dfeed278c3d1c9748c932ba8f48a559e118dc4413f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2035b185d7762ad8683027e32ebfdbf618b24e811b7ad232c79c09f7599bcf9
MD5 5445905be71b673d23f48bbfbf605414
BLAKE2b-256 f5070aa2c8606d73371f22355499fba49591ea5e7e2bdf58be9f43a8c304da0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f29c757b2d236f8bb1dda1ebb97d4f7c2d7b8ebca1d87eb2ae177d3f8fe46eb4
MD5 177c9797d9e9cff317d22815549077ed
BLAKE2b-256 80771cc69583e3388dc8c26feaa1f0a1c3f572be8c66afd791a68a3a4511171b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 575f50a71aa0bdb8ebbaaef7815b1ebee537fd1a69124fcb257ffdf2b97f3d4a
MD5 0ff9d158c70863c7c84170f5ae82b571
BLAKE2b-256 1fb9d4452a61a97f8de94aaddf45041034cc951fc3de76e7c83b0caf21fa4630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad03e4087935772e0c8807cf9a5ebecf61a212ec4b4346ed7f6c11bce81e0a58
MD5 84b25003b56576ca58f0a2e88782fb07
BLAKE2b-256 fe40cdcaf8947275cd2fc6e9a21bfc884861e1025800bbbf94bb721d8735dc8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a018c6e8f0cf828691b50e6ec9dc17741514677b91854c83335fd23189932268
MD5 eb37092a3065df4ee81fb2479116c778
BLAKE2b-256 f97baf3328c1ccf8b2151d9daed855d9fbb056fe702c4c787df8dc8918dbce73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 10.0 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.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3509dac680a0b276de885fe5a42499b48eac359e663bfc8e2d49d47e79c2c840
MD5 388718721f2d5fb8a363efdecc28f98f
BLAKE2b-256 d9195718ad21f3f55d4515d63b4dcc1ce17b01075db32fdfd4db27f7784a638a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 50a343f7b6fefc439f00d807be124b887aba4e9301f06c8bc3dd82ab54a68421
MD5 92945c051d858afd0c5e91247d3bb324
BLAKE2b-256 8f14cd4d9ab15cb26c8350d89a7438296a60dec4c5660cba906cb0d31ad1921f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 9.6 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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b9d28d56b8bb383c267f5047e30619846c4f656ed1e2c348b06d527ee10bb9a2
MD5 56b26d8ecc01fe3600bd44fd06eab5c0
BLAKE2b-256 1720c991de63485033a518bec748657dafdfdfde7793ab79760b3ed38db3f636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 747e26628a298a8c7df57d6fbe5943bec1ac85f6d1af78323a79039115e009e8
MD5 eff14a4dff415989291934dc5d81d5b4
BLAKE2b-256 3b60d922884cd9e77bdc34af0f3a6533f431be438235f99997a3f9cf343e2c75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e65fb2a5ee531253af9ca3adec7faa396c3145e2ff3e0db8b019cc1b94ac0e99
MD5 f6f3387665780a42b3f1dd5262aeea98
BLAKE2b-256 2de465b107fea1dabd10bae393080773487baf47504bc18e5a162ac59616ccb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae2274de8368c6e9863b09a3ffed574c62372d5d234ae19798990ba84a10bb7a
MD5 147f10ec6e154d4746b24252e988f731
BLAKE2b-256 9f47291da0f47dbc331d444c4518e38022df73e3b16ab7fd254767cdd88e441d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f88fbe7459ac624de7d01ddda721731c09339af1f86793c6d68c164b06f05e07
MD5 f3712931b4d26690f177c94097a01a13
BLAKE2b-256 9dd99caac2405f43cee7e561ce241c023a157abda84a641945f7b5fb94529925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6602e721dcb5f2c78e42e2e1c2a92d9a882847a314f6b9875896c297206bedb
MD5 90bc0b7250095dcb9af3df0444c46a28
BLAKE2b-256 f3909861bd04a210ff03d0e29315eaaab83dac930ca0b2a1392f1ac586f24dc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ad74c3723bab05afa0bbffc876b9041d85ed489870c5d4d35a17bd96500fafb9
MD5 4dc38168267cffa2216515cc586a6723
BLAKE2b-256 c71aa4190308e5f739276f42cd45b413744e7fc2f579e3269ece8b4effd7b848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb9f7fbba945cc4fb8c235c9e62af1d20c7e9b2208f716ecb814d1a5dc53aeee
MD5 55a8814425860e0a7a857b7b53384ba7
BLAKE2b-256 7f75d21d6cee58886c3c7db2bd0b0d55f9c1b58a253ec285f7bf5b6181394703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92ef8de94038b097fe3129118a8f697d94efcd7c7e0a2f2f8a9285f6e7fedc1d
MD5 3891957a84c5760d882c4014c77d828e
BLAKE2b-256 2de24016b7758d4ebce95fcaf936ca3a904aa649e8b43f1a74fcf8397ff6166f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa073b4321db759c501deeffebf1fd5f9e5c09b59895e0ff3841cfeacb942bb6
MD5 9b2ca1464441a4daa21a8a499d9f90c7
BLAKE2b-256 9c66b0af5dc1a988dcd4a2f753e5a638e30061a55566fa07a95d8a884fff099b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd1ed840fac3c1bb6ad41a49ecd49e45903777a3875730250dc5d0bdc40835db
MD5 a8e6b6f555f18c7dea5c7e0d6dca5352
BLAKE2b-256 91af135d862b8299c5598aefc6c90dbafd6ec80caa3ba9045a6274d275e125a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e82d6e15d96c6828a00a77c2db599e739bb3c3f941207734cd4a0642aa483b92
MD5 6b5a21d7cf613fe105a8cb82b79e9f51
BLAKE2b-256 1f0e241937417600c664b7fe20750e84c51ffa832166ffb9315243dd67a6968d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de1aaa788889eef8fab5f20cf5ef5ebce0432aace3699a7b1449f345390e8da5
MD5 d882983d374072516d967d863cd13f17
BLAKE2b-256 f5e4ecb96df64ebba527550206b3a1a5781ff53487c3e2d8c32ffbff08f23789

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e38a6e5dbe1c3c498ced6fb8f32f54c13550e9ce0dd15212bf63d67414fbd792
MD5 ed4a440fe7749062a21202636a0a918c
BLAKE2b-256 34a880008e36bb15695fbaf15c149b711c951951918225530bd2287e65cc3ecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45801ae1362ee3b5c0d77975bc453fc514f6af9caff09e56ccf5bec6d75ae4c0
MD5 b0dd71f437e938b2485f14195232440c
BLAKE2b-256 182c5b92873a7c4cc8b28a44c40d082cddfea689b73220793de3597694a05ff3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 10.0 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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a0985482f66277de7d4250028669c731c315a1c810cdc4163ac1ae73c676f0a4
MD5 f3a6018fcc2c2705b131515248ec6b29
BLAKE2b-256 62ef2de517c0d8232c7537a59adf7d8cc5727b39f435c4dc05046c7f9e5759c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3e973153139bde38d3fa9abca42a927fb801b6e3d19d10d4e120adc2bcc656e7
MD5 33a38c02116150ca0b4ee13550342fb0
BLAKE2b-256 86ec34c5991c436b967a559c4b9da433e0728220d18c6ffc0f431bb62047b471

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 9.6 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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 49ad04b39183d29dbcf825269403e8830487a0089093b87f335af36081a88c01
MD5 1f7b385dcf68b2989c408cb30700c83d
BLAKE2b-256 f0ef95d8ca3b5d2376175751cdf74f647aa91604953801c338e87ad1c2d77034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ffc50b5036edb38bf266c58c24a5fc7df231534de26a5ed138b18acdd20e2ec
MD5 bbf5622ccfc1907ddcdb283cd370af26
BLAKE2b-256 62a0665d13edf35eb118e342593aa74017ca201f0e0b9e130a5a45b3e88c297b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dd294c99b225bd9ffd041eb63e2379669630bf3694a83978def35fdb1f19e324
MD5 d08b640d8abfe8d21baa4455c08a7482
BLAKE2b-256 f9b2cb0bcd4a02d018ceabc008198fb72f3371a0e545a79fef8e542aab707c19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ebb571d45905f28ff4c9719062c8f3f0e3be2c89a173726d298aabf3c5c56e50
MD5 300f98de4b204baae56366f89a09028e
BLAKE2b-256 48d62c79037c6bda7250c7c5d9d8932cc9536f12c516e46da916bd152cfc1bf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebd5942df6c9e63363c0651f175d0d9b4a5230973a38aaa98af8d8f2439f8987
MD5 50215f5553c72c1bf6f8f92489ecad06
BLAKE2b-256 62dac478027ae9c3f9245511261cdacd174ef22a6826ef1d132b24bf53cd9f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3baa2803c7b855033e3a3f4201d76e888cfb4e2f380aa1b3b9354cd67ca198c8
MD5 400e68cfab96d391765b10e6ca7f8863
BLAKE2b-256 51e07ef4af385cc06250727452b5229a23d28494be401d66c8c6fe5e604b2489

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 07f1ee01819497bdd217a85d1361297cce55562b0cb4331a931978b48777dc92
MD5 f3fc4d7efb33f05279361a11ceb7805c
BLAKE2b-256 51869cf9cc7e1a7ff7905c7f0e5540e79cdf7d36b5f8770f4199dd78dbf5a83c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2963017197120fc565afee981649ca264f6abf1d968fd6be2c7f240525adf7be
MD5 fe4b9c73c33d1cd8b302f1f7d03fd7f3
BLAKE2b-256 8b0ba734b566a371f9414274d2b7aaadbcf1133da0b2996189c66f424f6e3ea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 025b5c86eea1ed96a4bacc6e27fbfa66864561b1dcd85a58e31564e58e65aa74
MD5 14793c31220e4039bc1ec34403089f5b
BLAKE2b-256 b50465d663be745767f3024db16f0e12381dd5b791f102d8a7f8a08b37f588c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85b72718ed19e816ce9bb02706502ae45409cafbd27990a68a713c07ff616444
MD5 bc2f632a7f673fcdcead8e496836e1de
BLAKE2b-256 cb7839647d4caff57c5a39e4657d7a742ee5d8c336c14fd541ad1ee14276468e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 813b25722cd014d653902453f2d3100465d9a68fb6b69ca2e2f9bab9e1c8a133
MD5 0869b70e00352834704cc3c76219e414
BLAKE2b-256 b6584724b9ec42dc852008f4e8091e6ecf094022fc05f716c4dc5845b08aebe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7cdc86ca31fbbb6c1d57d6f61fc3f828bccfdd44bdd3c9e1b8f91b35f7c87cf1
MD5 1728693eccc46d4141e5b797ef840643
BLAKE2b-256 680a65d4997f9be46066ba8da4018c9756f0e1efabe4a69e939c166bd3879ec8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf744fc3c9ade99e66525e7b67dd9dc1cb35b733fa94b22e4cbeaf9d259b37ed
MD5 902a4a6b24de22ba0471168377c27765
BLAKE2b-256 46586c842b8268f8e363578f83834a8ee172e159ae834f65fd5dac9bdc76a21f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a084447b872a893fd73c5011e9f90a6989267b2e8b9cd8a55b1e780b30041a92
MD5 e92ec3f9d6a685f821b240f2ba8b4725
BLAKE2b-256 52878bcf0910bf18a00da5339f6615f98057bc15fa4095b6a5730e7cbb1f8318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 107718f873c7445efe656b9f128f94dae48f5216510517b8abc1f0ac6b2f4571
MD5 8d3fd405aadb161e5ef155aec2a5e3d1
BLAKE2b-256 786c252f80b4191735f33eb57fd47422439c6f31fd6f02c6c5101ec2edd68dd4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 10.0 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.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 33c35ff4ab8e7d91a1c997bfe45b2d480ca0f2a06be6fb1299829b9035379e1c
MD5 77751e2872563f7f78a50d81a419ba1f
BLAKE2b-256 e58cc944079c3d8cf85bcdecc1260d216c9db7d06ae2906cdf96a0451715172c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 141d9a02de49baa9c1eaa2bf76b109ec23d604cb8ad8da4996fc4859ce7f4f37
MD5 c7f2286bc3fa3eef4e5bb0cca4ed9e8b
BLAKE2b-256 7b473b051cd61732dbed8632e161c749c43c5d7fd546be312e1e7626a4874669

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 9.6 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 de4b7cd2b2a708fd730662f3d888dcd39c81a85e49d6c20583d2d1acf91cc3b4
MD5 8053340afbd8324959cb876352bd658b
BLAKE2b-256 c940a4f90c61143dd1d02dbbcce458a59c972cfa66ae75de2c2b7fc04f93bf80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57c1417e2bfb6bdc39e38baf2c0ac5c3a3b8a7a56d6918b0ee3adc0063ba54d5
MD5 d0325ed901ed96f1404f34df3481910f
BLAKE2b-256 8cf7c6869a5825d93d9e34d5e1c819708fb89524a12063ffb434b936a40814f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 71a00ee476be499a00b5dd75117facf5ad5436953bc02332c64ef3f03f892d3e
MD5 f86fa2277340ce1a0e1daf704dfa68ab
BLAKE2b-256 05ab451df8f1de5abfc99e245936b0a7c3c709e8bc80e72141a672411b1ec924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7934db0de131d02b5259f1c95dd5ce20d1dde3d82b036bfc398025770a252b73
MD5 f52709eb7cfeb8b6cd45584e79025a3b
BLAKE2b-256 07cb81fc7857c14ebe1b0f9e92335ea79ccd253f9b49c0c2035c3836edb40a8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a320bf245c2cf073a089cc541ad552ae5951bad7c175c2059791e11b631012be
MD5 3f099acb0e7034d19ce50f797dad351b
BLAKE2b-256 957a397ec0abaf9c99c70ac6c3c4bfd3969cb3d26970968835ef601fb3e8da47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49ff4024a0300af6e38c04b666762953df5b63d57c9b3f8352fb771548c0a8bc
MD5 8bd3c49182c34a85a15904ac15e92e93
BLAKE2b-256 1d5f4b0481cef6b93179a6bba5cd5a64d0e2aae6640a7f0a95ea0a054ad0aea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 1155b9edcd085b5eda7cef3c5eb0899c047e85d814f42ee1233d24794a59a513
MD5 9bcc4a9ded52caba51b9d84feb81133f
BLAKE2b-256 895cceac2b9baa523a0f16bc93361b8da8d214d836541edad09f8fde9364bef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 251aa22acf62cb0c52efec2a909c1b0f1ff90c57ca5cf4108703d79966fe26be
MD5 8815fc722eb48c6af3814b3485c232a0
BLAKE2b-256 523146db367b6bb1a86f9917121ada12dc89adddb8d5896c151e3ab152baafd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a02c2d64e167aefc64a76b7b2ba9c6e77de62493cc5ea4a756f1ec2a153362e
MD5 fa327b1fbfbed6fdc90dc940115ec1c5
BLAKE2b-256 8b7caa8e97dae37ead627580d093e42c1977aac78e253d99c90dff8714b90522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d695689910dbc953f71e2be1b7a37273fd12f865bb67e392feed7f618dc050bd
MD5 470479f72aa21853e9ac0a9b8e801628
BLAKE2b-256 ac4b443d06111d74da2acfef80f339e87b2c620ac87ad357729296569d5dbee1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17a9ccca5dbcb8d0b222281fd0555ac6a5ad64d45169b61d3e0305a5f57abacc
MD5 5ad5f051a6481e7e2d4e5c8760cd182f
BLAKE2b-256 33558a6c290f78e0d102891977590d3d1c1147863536dc9a4670b5cb4081ab30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2fd7635700647dedc75962aa4f6c3f05e2dabecbb2139c3925abdde5324e6cdc
MD5 827d8ab98abfdc8ef68d72ea23409400
BLAKE2b-256 8279ee6f17cd9c7c25724f3b2ee40c0a034fd6ee8aa57dccbe9a44e462b7a4ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fce76caee267d0009465fc73123bae091fa2274666589644f80a9c3641d25ce
MD5 63edff40432949113e651536448b5807
BLAKE2b-256 bced42de781a07ef27224a1a554279d2f2e63a0d0fc8636e9d16cdf55c334bfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f36609b68b39450f15af3d31128904700421ff2702111e8aa39323e0f7065e0
MD5 3b114b0067733744c34375e653d63a65
BLAKE2b-256 cf2f37df91cbf5b815a2d7b78e4f76bc15d7447d5d5f3e2c4e8905a89c3509ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90f7ad1fbf340e1b1ffed07433459267ce89ffac76b5d3a893528708079cecd9
MD5 81ac56fb50345cd75a8dffadde8b8fe7
BLAKE2b-256 21a80b1fe6a1caf52cea9b6971fdc33f0546c6c692bb3ca0a8640cc7dc338e47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 10.0 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.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c3ba92b127b7d594e3c362ebbf3472916eaa3ef083c040ce778609cb76265969
MD5 6b4ac9ab58688dc49623ff1740ff5d3d
BLAKE2b-256 fcebe5fc64725f83af21a2c7f2ff9bfc05a0050042bd4ed63b3f4a0b4dc0f1c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51c8b42ba79bcc809cea02be31339a81ec78348266ef35e9091959984fbce537
MD5 d34e4ca36744210cadb24242746fc68b
BLAKE2b-256 0f6f9b7dddc0a3ec8dfac8a7082ba6bf89bf6fd869f9e1724fc9806757ab1046

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 9.6 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ff1738fdd4f68ebb96db5976975b68093c1ebdb7f8ee7659f87c3b3b0209e4c7
MD5 020ae48fc3e1ad43d0cd987e82980380
BLAKE2b-256 3b5c5fa2262f45c53ba17f7845f23469cd19a2f84a621480e7ea48efa3e1002b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e256c6019cc4a713884857630a38bed578a71cf9a6b397186ef7e764aa12c3c1
MD5 0682d5107efe91d33346cf081983e90c
BLAKE2b-256 d3bed9086340e774159ea96f921fec2af6ef2f0851f60f20e47212c656962acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ae7cc14551eabcade924bc1ccf1a4b06311200f98fcab12be993fed5c76df3e1
MD5 8e98f22244fac64f88a7137a17b35dad
BLAKE2b-256 66e10e20ef4c55070346ea086d6d267a260d0bb670e6c98d6532f06f40a494d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a653f43584b7ad5c00242413f0d90409dabc21004c2c3980137f59a30361d535
MD5 c8037d74b3d66099a423f46a56a995da
BLAKE2b-256 37ce8d94844433a38d659ca86b4e22b592cb5b00bd118b373d3da2d5df311e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e9e705829ef1a1d4751f2ebe5e019eaee8603df5a7997eac86d3fb5c4dd8f23
MD5 a3f8e3c7ae85b33ab329deb43453e04e
BLAKE2b-256 3b84209723e002022b3b668b54b7461e1b61ab796394f956102af98091d2f270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d47135fcca8c9a3e32df3540f90f037368fd710b64cb1c62ff920baa0e20f416
MD5 1c37a3a392a8223dca839536a8753138
BLAKE2b-256 685f70293e635e3a3c6193ec5dcbdd73e8ca49055fea68d34a30504a2744ee41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 38c7fd4c285d881a4ec8b79c4252ad6b83ab1010e77a8c0c24de6e15832ce506
MD5 48261714075e0e1b6101ba18997d7d98
BLAKE2b-256 2e5454ec613863bb8407fa1fcc02ca70372ef230ab4c78b15ad05de9425d941f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 576b600f4bee8dd586e216afc75da2077a82b6209c1d477875a8d38f8238f9ad
MD5 41b0dc486f3595c81219c42d89873222
BLAKE2b-256 80d72bee484953d1cf461569c0952a9b9ac7a87f7de6151bb2937dc0cf17b4fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20ac8bbefaf75ab300ca36054751d3801d6a6e88473dec1fc5177ae98484ffb6
MD5 58050dbbc3c68c0a2438b5ef6e1c6e0f
BLAKE2b-256 4046a3b3ce9c3a2cd35e433f84139cf1e8b8a19370c455ecdb812f649ae7f7e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1890a2388aed33f5dbd34dc9c9b841aba7c36569282ac6f9c8662cf921b4ad16
MD5 13c29d8985c1c6931e1e9dc578e74ecd
BLAKE2b-256 daa63f8e52a7422cbc6ae453427c2fe447de6d4f013c7916a1c80c0cc391f375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aae1a4824e1476b8934dd696c4081812dfdb8442e826443d7c2f2868cfaa4f72
MD5 4c3db7421f20c5c4cffa2a4da8c6bbf7
BLAKE2b-256 ef38ffcd9014829219535b50bd1e16416fbfdaff5e1b656dc747b1df31982453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dff19e01fdc2ae77c08242e5a029c7b03aa52cfa8c5e04dff9f8f5f310d0e674
MD5 65cef204d4a5f67d2977184dc16599fc
BLAKE2b-256 d5e3b64fd67c8e73aeb76e6463bda9073702adeacc22d9c063dc0ace743188b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2550235db41e247de3b492a3079c3e612f5ab00ac932acbb199bde0513d6a183
MD5 224fc9dfbfbd56ef04c00dab84f9a207
BLAKE2b-256 38cf253db723b81c2b2d9914dcc66b77a9d07693c4caed46b623dbc246db75ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6660ac96f17c56f64ab4f2b345f9d995d926b94b7ad8864050a1d683573107e4
MD5 13de47493e5ed8f1689fe8fdcdc6209f
BLAKE2b-256 e6f8e220d90604ed13c40862e201f38113dc51dad81cff018840a49816698c79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19405ae54c863449fd807f9d37fb75c739d541b029677567cbd4e4e850706e66
MD5 883893feb02189ab0f8a6da40ff68056
BLAKE2b-256 e3689827267f331bf3be86f45a086a1be89397fe6f16282d03d73f6f4024c2d9

See more details on using hashes here.

Provenance

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