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.6.tar.gz (180.9 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.6-cp314-cp314-win_arm64.whl (10.2 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

voidcrawl-0.3.6-cp314-cp314-manylinux_2_31_riscv64.whl (13.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

voidcrawl-0.3.6-cp313-cp313-win_arm64.whl (10.2 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

voidcrawl-0.3.6-cp313-cp313-manylinux_2_31_riscv64.whl (13.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

voidcrawl-0.3.6-cp312-cp312-win_arm64.whl (10.2 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

voidcrawl-0.3.6-cp312-cp312-manylinux_2_31_riscv64.whl (13.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

voidcrawl-0.3.6-cp311-cp311-manylinux_2_31_riscv64.whl (13.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

voidcrawl-0.3.6-cp310-cp310-manylinux_2_31_riscv64.whl (13.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: voidcrawl-0.3.6.tar.gz
  • Upload date:
  • Size: 180.9 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.6.tar.gz
Algorithm Hash digest
SHA256 3af947ffe597dcb72956f2cf7e35f09f643db219bc01abca97d83d517cfbd9e8
MD5 c9181e39da2618a81454af2e1ca87a8c
BLAKE2b-256 0c9da17e84f5aee6c5f0b3604909e2e901afd3f030635161df9b36f6614e96fc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c40ea5e65f4b260041af6f5c7499046237233b3f10af2afdb06b4172b17f2781
MD5 36c10797c2fb19544f247aee842050c9
BLAKE2b-256 2ee9785a5e0b79cd4a4be0b5b7b12b0e6f2c24a1c9a7a60a431beedf2f98116a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3b5cfadcb56cbab6b15cc7f75ec65b9a2f2257e0d9f1583165cfd0e9f4ae7f4c
MD5 860a4d8c8287395f8b694c2136e04752
BLAKE2b-256 d7b91f25797bfdb92a8640fc45a947aa76040201da78db81e243b2aa91858358

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2297c00ed6bed58d3c072d7f0fed4186636b5d6780e22f97911fcad2aa8daba8
MD5 918f45a253faade1264a2760083fa76a
BLAKE2b-256 3f63d203765e6ee3298dc456e07b0152b0d4572e76b51b2d2bc643266456be12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65f1f02a1e96c3ea8adaf10fb382be759f303fed59a2c28ac014cf3dfc2e2665
MD5 c86d34fd3c82173cf550944238d0feb2
BLAKE2b-256 85570f6c0a0457cf75b9ddda9cded98031280d5b47eca7604395047c4020ccf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d12be6dc673fd277e7266f44c9ee8af9e84f1f26ca5a2fc845c5baa3fb96f5c5
MD5 7270f47880b59c897b2a8bcf6a945e1e
BLAKE2b-256 fb4e1c02f33abde04749e5a72edb2726f5ae9ffd6f1bcc179b6c31745c15dd70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f86a8d26dbea6fd16618965c7b7bcc79b80efb4929f16b5466839c253b6d40c8
MD5 c1f640b51a29e596ce9cf23f0c9f63a3
BLAKE2b-256 6b6ad4283c7880a8f2876e3fbd2cb8bc9ca060d51256e0eebae8ff02896e81db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03a377ac32c822225d05d2f2becc9ebdb0bbe563d4d8c36feed163ce7076f52a
MD5 5e7df7d5f4b4c60a9e4dde7589e6078e
BLAKE2b-256 677307b77469494d2f11599518f4e5e49aae524fe2f3038b9ddb290b9ae5fe24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ca7fa8fb1066fd8655626d70a00e45964f660e06770c243c37672f325e1e5e1
MD5 d2d9fff69b9a35ddf6a78c2e1675f063
BLAKE2b-256 862d839a66bac7942aa596e28748f3a7307eb571f411ca6c8fd4d9f1047e678c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a18c9f7c0bce70cf6a3a93b0ce01433d7eb96fa4bf6b95888459abe5a64aed15
MD5 ee85663e6766048ef4dfe777ab5bc4e0
BLAKE2b-256 ec5df2a47048aca88b0625f665b096fb162dc9225b8ce55bf7bb5693a146db28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95d792b6487727bf7277b1d329bec7b79c3657aa4f3841f02ab5976b46271a01
MD5 d4a216ea2872d402e6a1f2655fe871c0
BLAKE2b-256 9b4048492eaacf0331da07f83d117e4ff04e272352de3a41be81c812909f4fbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ca282c39865ab2184c65c2a3d67b207fb7c50514846e9410b30ad790d7af7bb
MD5 aafea32d2f20e49a3f3873cf2faf930c
BLAKE2b-256 c05568f903059f3dbd9ce4c05e38521234e61ce0fe71f666a6b0ac27219ac32f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4241da7f505daaf9c57ac7c1d9807022af276f8b16196b2ce48232e14747edd6
MD5 1a390fce46e5247bc900cde2d5173872
BLAKE2b-256 f533c33220d1dbcee18be1922f84196b78103e0156e4a28e4e2f6cd384455dab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb304ae06e4efb0100ffc3deeba137f82d6400ff87c98796f88ec8197863b493
MD5 c12b92daee181ec8bf3948f4b338e07f
BLAKE2b-256 156e972050a37673a4d1186ae830d98472690bfc206470c28e60b7a5b4e21cd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c424fccea3c1555ce213a61a7fbc2b07ff7db684e18c720e1d4e7bcbf981dcb1
MD5 8d46bed7b68aca350a9e07cd79045657
BLAKE2b-256 fde53d139255081ca19e429df900649f96223e56338fdcb43c3eb70267f0bfee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffec92ddc326465d4af87cb9148b96a7c8986a8082df97f07e89c5363e940b33
MD5 e86ef61d1a886d8609bde98d2ae7c908
BLAKE2b-256 65de8c6eed4f0a9a42ca7b9b2bb616231a629b549bb64f500b1b03a3a425ca60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ea3b6d283ef7767c885f4b23b50ece436648ce861a53d9d4e08d9ebdd4760b1
MD5 3308b2f9429084d0d38c8b562c6ea6b5
BLAKE2b-256 9a088871493d5c06c6eb30f3aad987377e4d103cc267016971e3fe6f12e2c7af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 084a31db666602e730ce44e7af1214d7d60b7b34b6a9ba128b0a87ca0577e374
MD5 e36d00328994b616fb8c1fa7d40c39d5
BLAKE2b-256 1dc8828878d08a7369c7cf9dd24caa5a83ead33e1bb7944a36369d7c871d9ff6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 10.2 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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e65c58581071eb4db23c05eaebbecfaf3726a9362066c5f2e266b8b90d36f5c3
MD5 dd7ea8250f068f8d30f0105dda512e41
BLAKE2b-256 4adab46b75d2bd1ff2a9edcf3162e691c94297b351ce8692b6c302f5dd96b646

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5891a4c1149ef32fb0ae08138e368e04b5b3aadefb950501d25ea1f1c3ab48bc
MD5 0e1a6c599141e5c81dee37debf81c21c
BLAKE2b-256 2f961155e5171f0d3ce69daca3b68f8b330e97fc430a73dc1b71c98c46985378

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 689af0578cf62a21d27756d5b39718fb1f9e6677fe991f835679bff4cc8b4e69
MD5 7ce00a5852092467762d375890325e84
BLAKE2b-256 fcb626c297cb926772a5ed534b28456d2f7199f143bc98872a037b256a400a1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66e443491a4fede8a7f1f6221d4a0ff08858439342c2b4f767812c9ba98b9566
MD5 21d702d79cef56b801de872c008d536d
BLAKE2b-256 0e5d22f45cdc1a21e6e0c07633a651c1dade4e8172064e149f573af514a91caf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f23325faebc24f96cf464b9475be53fba920a1bc75f8b0387e20a95268e3f2f8
MD5 5ddd1f5db56f3a87b3a5be90cd37e95c
BLAKE2b-256 55a387c1dc39dcf53374cc588cff94d8e2389b4206eada724aa0413a11bdfa38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fcd171023cfb21ddbb3fb4f37b10ddb09f85e71ca5c9925bfdca4b5d6c0a7e1
MD5 c867f3cf129feab3af610590f6aee34e
BLAKE2b-256 9de1a51fef0b18a61f7a75b46ea579adceb15a70828048ad69ae784dfa154979

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac88754c307b3673e504b40755158f5fbc99645ef9773a21e7065217a931ca27
MD5 650550a1311c129df4d5923a30cdcd29
BLAKE2b-256 43c2f2b6ef2930419dd87b064e9e11f00958c7c7772e48275025a57e789dbf6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53da047caeff8df6388eeb0a2c32abaaeaaf697770cd910ec4ed785764320db3
MD5 95b1cf0f3f093ea3ac49ed5ce88bd9de
BLAKE2b-256 1a9aa3c8b3eac5cfec68cf2c245361eedbdeaccda4bedc6a979fe5a73507933f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 80867629740fb717cb8168600c7cddfbf65aedb90479d89822fff5666709a84e
MD5 b22938d503a91f3af0d66face7b7f4d4
BLAKE2b-256 4eccdb4d8c1358f27474c866104607d203e829a1a5e6c13758feac682360661b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dad32a93d26f381c79e545170f9ad2d23f1317935596a087daa56751e33fb2ed
MD5 c0b883e4bed791e4440b9cce34d4290f
BLAKE2b-256 6455423c8247f95654d3a3877ac0d12ba63259fc5223b82906094884ad8bc0a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fee4dd31c44f9e54e84e1962dab45a354dd1152de5dd316107004d87d033c5c6
MD5 140c3d6d1128e1e1f9632506fa41028e
BLAKE2b-256 9e8c01a2b193f0cad4d69eeb7971b91115c6eb62540ae66dde374361bafc1178

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcd33e7e76c815f79eb695f691dc5149e70cf8fe719dfd80c0af6ddf938b5b9b
MD5 6ebcbedca229eabd09407deedd650890
BLAKE2b-256 a6f2b010ffc982e9cd84427b83a533b0899e752028a47ffa24322420d1d5a0e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99ea3002cd4374f823266ba77f903e220e6174a82a6c02e67903d52fea1d6701
MD5 ee3819f664c1b759284cb47e7b938887
BLAKE2b-256 6ef718f4140fa562f739280227f74650b5c3b93d9b7d778e2b2d0736847cf96c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a767217ec8fe9929be0783bd2c6291d56b6eff1de5f4f164bd0641194311eea2
MD5 60804cd524e004e24e5c1709bbf60d77
BLAKE2b-256 730d8e5b8fc6897dd091d1e06f894121216bc66c14536d5098998c1016fdbe54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9508392369e2e6b8d47ffa76b7b4f306e671835c2796181280c71a273db791f
MD5 dd0597e17e2706f67056e85d5d932a7b
BLAKE2b-256 2a971e9f6a3eb241ad862f3c6839a573766ded330c229dafcd0d5caef28564c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ac540fe68896b26e2d0fca60e7b6c4ad63f2e4cf52ebdf1dc14e33966c22bf5
MD5 0a0adfc8bb7a9265cbe62b7198e67212
BLAKE2b-256 268e09c5c3c6177af13c01114a12545a7c18db8c55262ae79240ff18157bae01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c47ba5ae9185831c85de92b8143dc7861b9ff8f7404183bca7f2e85e88ac8bf
MD5 ab74264cf3f42af2e15638fc39d7332f
BLAKE2b-256 ed774139a1f7729f2c60cbdd06bd5264395f0f71e1a0e892fdfa8941b6ebfb4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 10.2 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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0ecea9bf73d17e91f09312c3c2071f1616c3734bae9712c421c1ae6f7bacd7fb
MD5 b7614230f228023d74bf827858f0a8bc
BLAKE2b-256 8014bb3236a02cd36a78dc84c5b646f679b107f2fed1b8bb137757940078e05e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0466169f2fe75c7c524c926f48ff74265d2d14d155d7ef233d7257acf8dcaf83
MD5 089010f538f7c3da4dc34a98142c1426
BLAKE2b-256 a59d8c4c47bdc6cccb11f058f432919be21bbad2ef0413a6135d34aba1dc435c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1c67e2bf810e098aef41a1c504b545391b0cfe338cb1059e8258a2a5950aca8b
MD5 1fd5105fa30b04aa7537bf189adc298d
BLAKE2b-256 d7999d84f9c080f2257a49c626b7880f6ceada653e4993a3585bdac44677e85a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9c4a5aba083c14cb309da25c403452db27bed5a7908674b7d2852cf2c0ba247
MD5 b392c2c39ddf8591b168b19834a601a5
BLAKE2b-256 7c9a2f51bc1b21b71488615a202529c63c552ce616355fd297c327343b5c172a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e18a7668b72c9deb393b32f9cb682d2f6ff4549cb730ff9da765b04c5ade3c4d
MD5 0fef6a586533ff4768a2504a4e316a79
BLAKE2b-256 9ae61c12554ac3b077241303f344108b36ba75f829f52a199e49d285c222c372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d36630a86fbf46eabf61415887b91fdfd290335026ae96dbbc04a52e983ec4b9
MD5 855726777cf04325d723fd53d0e2d4a8
BLAKE2b-256 e7caf6e27b1722edd569e7c0d9e31184f4d00ce53339c9d6cc2d097aba61da1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6f9c8f8733c961cd31b5ce4f9df4c4b5dea26592e8fc61a2685c5b7fbef035c
MD5 8ae5dd23359a0a1f6c367742870ac036
BLAKE2b-256 cc333900214204f46846cb842d00b8f6716fe0467a2d88616a2f0f988f74d961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 441b64f5f166edc535a847f16a98d3efdb527f5e2c504dc16cf414593b8ab5cc
MD5 6b8b9a133566aaedc646b2423948b8e5
BLAKE2b-256 2c20bc7f58ba373b544ca404499e6486a65921c942d08eefc569e0612d4a0966

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a35f4ae9ad95c47b65464256f40262f78b7bfe5b08e2398de23fcfdf3880f91f
MD5 d29cf97e7e27c4a69faa92f3dbac2c2e
BLAKE2b-256 5cd787d4ba33d2c9c7876140fb7d7a23d61829b129085e0184ae8d85450ce965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6612a4b8b5c5b9996770ed0a41c697f787423a72a2e196e0adedde3848d842e
MD5 ea09995467951abbf85c27644cb872f7
BLAKE2b-256 b4767157231cd97f4b90fd5464457a9f4b3263e55de0b501a2d6568076bed042

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 840f63262d222879a6e75226151bca71e4d90abacfdbe5f00e733caa0759509c
MD5 b2e1a5d1f03214307dbdcc57a9aeab37
BLAKE2b-256 21d2b231dd76165c24e452230c71c2ef847cf5f5c4f6922a34738ad7fdde7487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 090da4a521ab3a0ed7d007d5f723a9a2f558d525281620f8d022b0bc6ea7fa4c
MD5 3877fc46d9451052500fe1f998187311
BLAKE2b-256 fef762bd16d5a475afa3f237934a36b619151b08826b7fb739bfceeaec7610d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fab45647ca518fcae26ca5ddf771178c105b141aec00ae64d283ed4714786ff3
MD5 77a79782becac7dfb29b17f83b221524
BLAKE2b-256 1ef2647d1dbf9c4546f40bb6758831d15ee5d9cc8af52ad770e77daa007ed97e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e5885a66630c9e2c662668d4802a819ba6b9d6f2d5f4ac1bde4e19e3868f8f1
MD5 621fafedf9cf6a1c90d2ca06792298fc
BLAKE2b-256 bf4b5f07e6635c43e870c488b6198ab9c7cb1342ae6d82663fb39397d7eff7e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd16c2b39200baf90c3a5b333841c023ee5b0b9becea8afac714523584ed8182
MD5 a7ae4c9ef3c49be5a15c0e83f18f61ea
BLAKE2b-256 90f611ba9bd0da30fab408ef1fa94ee26f36ae28536635b1fdec9be731399bcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 251c326ce1580e6d1c631714d49fb70e0350812343a55acfa88a18213a36477e
MD5 903a58069ccd84d6a7126d90751ac9c3
BLAKE2b-256 74057060f2142a4bb1166de3df8c875f7e178401639d5c1839209694b3e3b065

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c4b748c2dcb6b85a3072e378a3e377520e819135202c39cd1beb587e03ad111
MD5 28fb6d047015e85be6d7126591364787
BLAKE2b-256 999f3fcb6d940964ecef82703deed42d7704bb704cf64f4fd9cf9f2790b3801a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 06550810c759d3c06d9f4657d05eb647cc4974d8f9226871c2ba4ebab2ae19b5
MD5 ffb5f163b251ad673881baf5c542c693
BLAKE2b-256 cf173b0b881d350bca1b45004d0d849c48dd2cd23fadf4e1e65712f17badf0fa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0fb1ce9d82079b2585d5648cde1f18f9f84a64675f72e09d897fccec9e57895f
MD5 3d014efb82d9c4f605b43b244b7f1a32
BLAKE2b-256 7b3e8df72e07a0b9d88736f47e8a38fc079dffc2e6ab107457b48e3b973c8f24

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 066610637bba7156654290f82462e558b62fafa719bf872a8df00eb87447f42d
MD5 dc48f90bad34f85c0a762391635a8584
BLAKE2b-256 caad4fbc24711d661704ab0fb261ca2ec3f025e86d2071275d1078837b22a8a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fc4a3e1044f88bedaf8401309a24a40b60df5c9688e4648bf85c630ab4e115d
MD5 59a5e358802642a90850e2649d60cb29
BLAKE2b-256 e5dd11ae679abfb912fafd7e60687b64d64f31f09afceae4ed7cc4f875d3fb0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c470f4990b893bddee79ef625159a3100af31fc744146dee6c8b7f4b7ab9023d
MD5 cc508191ae759d419ffe5a2ab48dc638
BLAKE2b-256 0bae75ec2e796175058dafd860eb01114eb0bccbcc758fbb0f9f22164f003b1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bac3c32d0ad9ac47220580e8a7877eb59ed00ac456d556c23e2e461a79555e2
MD5 93b191f6648ede1970819baf8ab9d89e
BLAKE2b-256 4236beba07a0e25afeb64b7ee4947dc5cf70619943f528fd03d5ad9bbe5244ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3c3a6212f9823d8596c17c59432b15ee23e97d4e5a52cad3a45cdb2b58f3e96
MD5 2239d95b13c1dbeb7f6c5fe9a02c0d56
BLAKE2b-256 c5ea11b03acffe8875f07c10d21592bba5b3e57e94fec758d0411ccdada92a57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40f334990e22600a68c37064981ad57d61eb70755934313c8689e754b2b673d8
MD5 25c80c2b297719e3ad26eb341388b3a0
BLAKE2b-256 810ea292ece4645ca4aea00d049de0b16fab386aa35f20d3d7cee02278324406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 33655328e9d5a39bad672ab434ff520fe26a179d4a1a71f5d5854cf4a7eae0ff
MD5 9af596ebe8b4b4d8ac327788e7f911a2
BLAKE2b-256 dba063bb502becb205726c369d0c9ed1065997dddaedba69bbdfd9d760f3b5f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 741c4b1ba81554b9d251906348254ae20ff29b25d44af40460135c2134e9742f
MD5 10e9a85cf1f147a3802b0aa1511eeac2
BLAKE2b-256 722582170a9b9f252953ad22c5f7900fbb3ead38e169563c3f08f26699dedcb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91286e6898d9fcf82badd010663fa02d14c43517bcbb111476368aa12690922b
MD5 52b37e4f20ffe4e8c60fe82bf6999244
BLAKE2b-256 cd57d1eb6ead800b39c65c5c03d8b7953293cf6c55beea6b4ba72a6e24ebe00b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2686c792a0b5441e0e8002d6693355795e2ff9c2bb2183208a221f7a9133284e
MD5 4b13027c797f083c9c666356a31d234e
BLAKE2b-256 721af7fa1b3780f2ed911facb72e0e266d1886facd77c9f1b5c79dc3446c7328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88404f286a55234443671a2846adacb49502c9dd8ce7b6eb8c6c41e13a3c5535
MD5 6406e66eff3245a275d26c6891b4125c
BLAKE2b-256 4016b432ca6cd11f18a3515646dc7f6be22a6684f4189763f5d3d172ebbb0afe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd990e13a5b51f433c25182dc7d03074362d782096c912a7f2fae6cd0bb9469b
MD5 0ca5609450f9db6cf9ac1058c32d637f
BLAKE2b-256 dd62d4d7b1921622fa3d5e5d8b4461ebc61393e92a45d0a6f5e78344996c7870

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edc0771b78c4a12b650b8ebba41d48dc5a8346aa807ccb5dd4e1ea134b656f9c
MD5 1b45a7f68f6e0b4ade7ee31b6141c5fb
BLAKE2b-256 caf03445f45d1ae46458644dae5f8b4b69a201e75daeaa4ab916dec6c64797ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a84df40cb553b607523e3d63068bdcd1ed7785afb7c5c34aa6f2ca542cb3e30
MD5 c6041a052431cd477934f68da262463f
BLAKE2b-256 486e7fe1175fb462309117b6b8bbc90f923eade40f79cbffb1ab94b2d205c9e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc27352fe4eb4fa6e4f3ef6ca1db6d9403eca6952ddb8946b280c5aa54ddfa5e
MD5 fb44f0f0344726362d8b4df5395a4006
BLAKE2b-256 fc5d4f383c273928e21f6aaf2960b25a401e64bcb10f07963abb9388aa351272

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e16525c12ddf5f5dbfd31a4f085c8957f74bd9563276da81f081ebc2735a3539
MD5 c680977519ca3389fdac655a901dd4b9
BLAKE2b-256 eacb7d41a43f0bf91513c136a49d1beb3d3e99f7096ed22748290737ab5a7cf2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f1cd6d961f4e5f02314a3faf95eca3ab1427fc6850f604bda916a95ac3918e1
MD5 f07af9df65b5c7e19a788b47b3754217
BLAKE2b-256 18d1241c599e9eee4829ac44aad7101c4dcb9c8cc37e076a9b1240d11b5a0f5d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 58e3f5089a0267bd4b7cbe541004df679769b1224551dc17746fa961cd6f17e9
MD5 978577f3ea3b559d84fda8f4d730c7b4
BLAKE2b-256 a018e9caed615208eee86218e52a3c85874937a796dc30770ea6130690805b39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b497705e1b1155f9425978fcb6ae2e6caf14414fe4df43a0f54902fae8e2516
MD5 20bf288da23a06e585c0f5b8680c864d
BLAKE2b-256 2873a310cc4599677827ab3b74535e89ac9791933c1544986bd3cd417eda46f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8d2525a00bb4c48cc5743e15c3c9470362bc2522777e9d3ce209f7f56810759a
MD5 6e2117796a999885472f85e6cf37265f
BLAKE2b-256 328f59234e99d8d160e725cdcbba736ef36ff8c31e8bcf2ecfce38a12498d393

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0cbb5800edd6c3f6d38f02544b007715217aa3243d98ac139c1a59c2ca614cc
MD5 f69c14e4f5ffe2560f2509c8fe34bb19
BLAKE2b-256 09d0114626ae0e55929bd1f316ed4e1f62756ecba0e7ab5a5afb42b8a3ab155a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 580ac9e54a26ad0995fd391085ea78720ffd2762a2fdb6fa17b92a46b07dd402
MD5 c266637d139e1847d92723fc45e2e611
BLAKE2b-256 1d74214d732a4d3ac70e6875c8ba0390e91762108b425838bdf5cdc1ec03cec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a4c3c9ead8f679d1217313efecb6a718c5a9f301ae84ba48fcf8961d99fa372
MD5 da91a16384378ad6703eb61262c6561f
BLAKE2b-256 b977c844dd53c6e3737d22269fd63a59ef2a12320a917c9da83859705aca673c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 5619554831f25badb827eae40d5cb6ff6741624daeeb56b6c503a74e32ce6361
MD5 8edbeea2baafa09cb625fb6431ecb6f2
BLAKE2b-256 bff86f654b078dc652999a09653c7e5d626f379954b2e3da94179cd0cf7bf778

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f99e0686932c82564714acd22d85e9aeeb905ae6f8449ad095440c4db8f4fb5
MD5 4261acaa9d233af75948fbbdcadbeb17
BLAKE2b-256 cb1cfd21adb8525d73eb1141a19cd2f039216df8253e7257e9ad5b05278153ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2685589f7ee4d9ba4197f9a998addcd10ffc84cd0a30a91fef1c6e77ad822146
MD5 917aae6eb140147b34da3ed067228ef0
BLAKE2b-256 a7ec2669139c56c1e6bf2629efadb56aba200e1e0d99d176f613e6380ab6fe3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27d3634b4569468c91aeef5cfe43e9df4f6dd602b1910b3e4fa8371685758c1a
MD5 a458f0b7b1b7287df653a622a81b65c4
BLAKE2b-256 fe05bbe3582df84274befe640afefd98826ac19d7839c32bf1151658b0d75015

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70af73d22fa23a24926e95210203a0b7856ba55562cadb80ef42bb3de04d63f6
MD5 62b916f800bfecc898d34136679e5011
BLAKE2b-256 67464ad143db830b1481d5545d5b3cfbbe775a44ba1ebc3ff09520e4aa5d7d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a92361a5531151758ccac92b9e959866dfd76028b67b8b2d2a8ba8cd7601e786
MD5 bb563d4c4497978f38f1a0a2c7630154
BLAKE2b-256 0666696423bc76ceec6d67c4c41541952024ab7f50ac5b9ae2fc03269b722723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf38eda98c01de30bc8122551088b65856ac3678fc6a3a6a4f17b44da3efb528
MD5 2b5d72ced0ff102d4eb8bb4c16f993a0
BLAKE2b-256 f6a09364913a69c7efcf24c388e787ea60a56c86c67d9a4aea19e0f97889f9e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9cd574ac7eafb787773fd39686ae9d4a07f674c9b01f4db400f005eb0f95044
MD5 df286a66fccd4dc0d0cd644e9f105bd0
BLAKE2b-256 fb64bdbc94eeeb6b310c3682e84999502c6960b00a9e55de7ec62adba6f960ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c5daa22756aabf84a395ecc8b754f7afd029093fd438bab0b9099683427c946
MD5 70f8451a60f185f924c0a522d82c94c7
BLAKE2b-256 70b21852bb726b15c95473e650caeba4df6ef8cc789b85fa5cbe8d1131772e64

See more details on using hashes here.

Provenance

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