Skip to main content

VoidCrawl

Discord License CI PyPI Python versions docs GHCR

VoidCrawl

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

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

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

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

Requirements

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

Installation

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

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

Quick Start

BrowserPool (recommended)

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

import asyncio
from void_crawl import BrowserPool

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

asyncio.run(main())

BrowserSession (low-level)

import asyncio
from void_crawl import BrowserSession

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

asyncio.run(main())

MCP server for Claude Code

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

Install (pick one):

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

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

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

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

Wire it into Claude Code via .mcp.json:

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

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

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

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

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

Docker

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

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

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

Or via compose:

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

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

Testing

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

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

Documentation

Community

Contact

contact@cascadinglabs.com

License

Apache-2.0

Download files

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

Source Distribution

voidcrawl-0.4.2.tar.gz (288.7 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

voidcrawl-0.4.2-cp314-cp314-musllinux_1_2_riscv64.whl (14.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

voidcrawl-0.4.2-cp313-cp313-musllinux_1_2_riscv64.whl (14.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

voidcrawl-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

voidcrawl-0.4.2-cp312-cp312-musllinux_1_2_riscv64.whl (14.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

voidcrawl-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2.tar.gz
Algorithm Hash digest
SHA256 bf2f0bc6b93cac523270d66f9141a1a53ebd9e96d46c4e856ae7f147841a3521
MD5 f1abd678394040339e43ec9790832bbb
BLAKE2b-256 79a4bbda342f39a63a451aa4dfb721b1ac0e7a7a8f829e5e086a075632bf2cc6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c97e1aeefd32e5261c66e77e636d8e79dfac43e6701061a787072cde33ff2e28
MD5 73a3c7eb99b6ca95dadb2156d02a137c
BLAKE2b-256 ad0015ca2096cecca68cfc7f2f6c0d70d0c13fdc264c0fd724dbff8d94daec1a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 665f8c83b2fee0d343d898971fd88df8232020e09d8040c99d3793b2621d7600
MD5 d9e2bf5cebc397cf1a59a999c2e3c575
BLAKE2b-256 04f8f801bbf9b825cd5eec17636641eebc91ca90a994d07b2cd775b291d9be46

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ebe15b6d1c4d0431dbd58da7c090693c7a15ac99b7590a46fa514a74b7bdabf6
MD5 036d2be294b973e1f7015d4654a3d5d5
BLAKE2b-256 a9787808f95a608a659c42f2b861b2ffd81f8743cb930fd1aee6e106bfe6aeeb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddd61b6abe05119681b05a6f0ab7e09b212e6a94e796032f2aeaec7fa54c5a12
MD5 60a2301aba43a4773a870d319fb6ceb4
BLAKE2b-256 fa1bcbb04add35d5b68fe085a0972fc3f7e4b82ada054577d60529309544a819

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 76e15dde1648a30fd3d7156e34af0bb6bac788d4d2e17acec2a9739914763463
MD5 e4093dea1c81ba9ed0ab7d7a19952afb
BLAKE2b-256 e40927b61f626f8d303074ef1360fbb2a3fcbcead33ad2c963373f749c5115af

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f879f8175fc0587611cb537c89074d038daba62f3b3be27108cf3665605f9ca
MD5 169eb569da3fa26bc8699d20a499ef9a
BLAKE2b-256 88df284d3b3bddb1d5e932a6caf732b639a954648ab6f95335e64abd8749a304

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 878c648560ee8b8eebfcfd6b9f097f62baab9412dcd68870dd38a68c1e5aa259
MD5 ab2b167355b69a481d8bdb4cf408c24d
BLAKE2b-256 5752911fc478f1af6a9ebfe14032bce4b450e87f86bbfc4fc7433e1921fca3cb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9e151bf4fee9c4551e69bfd6568341b750e12a529f2fc9ab0de60a861ac4851
MD5 061dcdf33720aeb991bafff60fe283ad
BLAKE2b-256 9a6419f158d9167351d3ad9597d9118583982c7453264df752a99540e47a93e6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 61660751502896efbd296f0efbeaff1ff470bc0d34ffc919df1ebc9fe7e8646e
MD5 4a5b7e45f3c333ddf7fd4f04fe0b48af
BLAKE2b-256 c67d6fa7df5f62d7cb61a651acfd41c464519d8d6672bf9e1738553fffaeab4c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e825b925dc1dcdd265f3886210f355395fe16fd0def0ac6658cd50c36b48840
MD5 fc92d46a1ca0b93fa390f2cbbd1bf116
BLAKE2b-256 33df13f6c7936fc854b3e51c930deaad48529e1903dd1c75fa66f6e42e62263e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa048996f0689b16a7f6e6af44e562764d3039edf28d8ddc9680ac214d733afe
MD5 f8cab41e5719baa422b870e143c34b27
BLAKE2b-256 f239d29e21c27d6c72d00db1d731c7c11f4f718b875f0d125816093ef3520e7e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17c51c008ffbd495cfe83a1e2ecaac1eafaa6d5fd95bf165a4c1a6d172dafba3
MD5 5d3bc836f67053ac9391be900fb6b613
BLAKE2b-256 24c3ffdb7ea603632cd2c30bf1282ae83335ba411ec6dc47c719304a8649c180

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b958166c0bb7d8174565021f867b034d1e05c4c2ea84f92412e80ef0842f5bbe
MD5 f3c502013fd8d42b2fe4562fc24db8f9
BLAKE2b-256 524415cdd67dd75d42889ddb3a0d805ffbecfdbd3b890347acb4ad44768c7d38

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10f025014b1f91c95dc0e233883c6a3907ae1de5ec8e64e0f400705891a06540
MD5 e1e896876f2cd68c821f31254fe6566d
BLAKE2b-256 5f1a456fe1eb145bf45c133fd6f33afd168e1a89e3ec0e4c4ee4f8a12955a1e2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 037aa0746194d5d71b325a28768843bb9a2adb2ee243bb219b6d3e485a4298e0
MD5 0f41571c4f69a581918c7eaded1971f6
BLAKE2b-256 f2cfca23ecfc209c3245ebb10bc07a4301993444ad13c0ba2973f7b0708ff36f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0af4918052b1ddbe35945a15e2376823ff828ecd4adee104b32710b4381a555
MD5 c5690fb08220bcbd2c80e4967edc31c6
BLAKE2b-256 15fb76c1c2ca2bca79d0c994afc35fa328a1dbfb17f11613e689d2d8aa9f03f0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41426de920004aeac88fc35d8a605a9da7a2f414d6b740125494f7df94af654b
MD5 0db416b25104f29c0b5e425553686174
BLAKE2b-256 34abe73cb749fb5ec827f5cec31a42b6484f7c1a39f22ede0166fdcc4f7cae51

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5bab990a55814405be84e6c43498f2a233f6a084d62cfde74dfb04f7fa0afe49
MD5 f228ef1f21a822727de525582d152d8a
BLAKE2b-256 42c02cdbff5fd326598c4c8d1cdaec9c114566ec00f8b90b7e2ff0968ff3f87c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6992299dda1d9fb57e5a461bc20de801b7a500614eb719e806d74c523f788329
MD5 8f7fcd53c1579c5a3b85b506b17b07a6
BLAKE2b-256 1b2b36116536886f427b02534f6021c838454dc4a278f9463a9bc070b3c24786

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a51d33e4f8cedfc29878f8ec7edce8a12f8e7fbc573374fbfdc64af2cb86d37a
MD5 aa5350f02615ea626d331fc9dc464099
BLAKE2b-256 411c72f0875b514acc77a3816cdfafedc0f1d0d948575ca830aa6b2ce9af090c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43214170dc082e300b5570c587f31b670590ada3a106f11e2e6744a36c73c029
MD5 a9ef205040476e2e6c74b6fc2666ea5b
BLAKE2b-256 61fa35ac6da5d741adf7477fcba6b3a03ae802a6c77c08b91b9606f47b854a44

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6bddd72a34520c7a30c72d18b893999b7a262ae5827cb889cac15f0b316a32ff
MD5 dad3e8b3e0cfd4cb8bf8a76fd780aacc
BLAKE2b-256 983eb5185c7831a6c95b9bdee123a07a83793636b832b39a0e05de83302af13e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a07308f234283c0859c6ff9cc0180d5615df96750561e8f143af7f2ab1ac247
MD5 90322f6d9a87c5e8d71a51e2b231992f
BLAKE2b-256 5292ecae1746d67d7de7110928d28866b156f13899166ac738bb7d77bd18009d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 487e239cdbb3319a0e90f75e6417069e5eedc901f5ecf658d6da4fd3fea9419f
MD5 9304b056e92081a30dd58794529c5483
BLAKE2b-256 f056177b92a91d19a228b23aec341750e4e1a54ed85a85a06475dade123d9b42

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d73e8588a6b70303538f7d151941063f9fe947e78972e83ba6dec943414c4520
MD5 f8933959145219ae6f5ab9fc9305f440
BLAKE2b-256 89735d0c0a12bc57baed884636e74e89d4078dc40f1dd630cd09d9413d7ed799

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 afab422dfc1a116b82af81fc4e9b0389586d349f4d1743126a7ac839cdab605f
MD5 825685146e2354b172769e851cafb0b1
BLAKE2b-256 c435c0b774fa897569d6cddd03ea30a55a0012dbe8a6ab347f9b12c31723e870

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f3eefccd8f94535309668fc5a547a09348dd948190109861d2124b39f6de93d
MD5 873ed995d7bdc727552c7a5aa7108a7f
BLAKE2b-256 b40b1f15b237455634230f3e440a282f23f308942ddfa814599f6ac20840abc8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ba3ed765d388fd806fcae597dabdd1487d7cba7b700e4df0beacc6ba5697541
MD5 e3e71b00f49dba0f0148d626a672d92c
BLAKE2b-256 a6f931868d4bcba59b6d8665177e94574f02ed1e0c6a31162c4b4a42b510da82

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f72e233a2b07514b842ef3c4fc1dcd861117ef3ba6b7116edbc45468ad01b903
MD5 3e22aefdccd77587fdb65054da07793f
BLAKE2b-256 1fcb1d37b80ea28dbcde762215e49d21f0a7702d844dfe73e5c3f40fa0fd6ed3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf4f1d496b488c9c9ae18df52c3a917128b444c06f9167f7caac365861a33a0e
MD5 851d8ec18661b88e78ead50f220afd41
BLAKE2b-256 2d235722161c5dae7c6b50c903b69d48b9ae0739983458a902cadc1b3bef7f0d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2876b2c8df720cdf5c2fdc9500d86da66c0432b567d9a77afe4fd6d43bc1fa9
MD5 f9c0b13186f004aef1fc44afd7a58d90
BLAKE2b-256 d7e3a0af19952bbb3ba7ef46efacb6ae950216ad26f5a314851db434409db233

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2f67db3dc1e36cdb7eff27420a2b5f466eafdaed184662b0623c8a7510951b8
MD5 250e9d19f0bdaf496f81bf26cfa0f615
BLAKE2b-256 e7a6ab9cef66abb82d5d50ed597534c71725b7e5258e232c5303904f3f4aa80e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9a367e8446d1ef0df48742558e39a8d118a03c8b5babaa21581a357146b052a
MD5 07057548db83085595b2ed56eded5ed8
BLAKE2b-256 d4aebc7eea56ae4a7a217a3d4732ce3202ead83107553cb48eabed3a4404dedd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 982ac1c64b8b6c1d95972cd7f3d92eaa14fa6c678671d9ac89a7db02c16e6155
MD5 ec7d035d83ad5725a12a320dce2be8bc
BLAKE2b-256 6a0be9d177f9f4f7efc2289e7a4325debb5c42bd8af14cbceafa280158ff3f8a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b4e0eb8d9189b2e3fe40d3f5f76db2ed01255feee015b105e6bab13364009755
MD5 d58859201930029e77a147cf0869f1bb
BLAKE2b-256 1edcf8111633b244fe16324d355dff330951dacfc99c2c4b668c360ce3618226

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f76591239d78623171705f95c045735dbd050b5c815f5a4cd6fb3577c54a074
MD5 32fd8b2c858e1d700e073e4c6ae3b08f
BLAKE2b-256 6a605af7ee19983c5809610bc62150a430e1b8c84bcdf7f35a7c12038b613c9d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5945425c99dbfb2cc355281d9dbd81b56c590cd9e6402da88be791850b6f6796
MD5 aa235392c400edd9f96d87897835dc9c
BLAKE2b-256 3f999bfc217b6d723373e7a4c6466f8f5f1b58667c75ff89191203f9e3eb7b08

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1c4257c0a7e1621c014cf8d2c8f42977ea97ec3b34a6b91475d5c259a51d744
MD5 76921cd456164396829fd67cd329f89f
BLAKE2b-256 5be11a76fa0066c5403d43c51231b23e8d36b739e0d1a276d25ffd531c48a810

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9ab297f9e5bfa3fa4ef5d970b384cac2941a9f83a3e9fa75270091d91960a095
MD5 f67cc63119a60ddad7f2072e3f240af4
BLAKE2b-256 8a3d89ab633653ab84547eaaf0ad6234cc51f1652d48e6d32cbdee226f2b9c93

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca4343938ef2f3b1bfa9633adeb9868f54da3094da663f72830080721b322360
MD5 b898d37f7c660fc844e6db784253b61a
BLAKE2b-256 3477880a167f3cf2d8fea6b4e5547242b1a84fbc851102f13598d80913d9b651

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4804b1b402d55a5da552ffb0f432a3a538b3b741cc32f5dd37bdb10e8cfa10d9
MD5 0a43e8e30fc96b3f402a773780eb91d2
BLAKE2b-256 26ffae9e99945ffdb763114733ad11a7a8e0ce9119b02c7a551a196130019b2f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 986fc31757829f56bd33f76cd0c805a18dea7781dda22ec1eff1fc48cb8cf69c
MD5 8ddd8ac0f4625a6ce53947f9404a4245
BLAKE2b-256 e7b18b70d1ba435da2560e1f07b6422dd0aa3dac6b8842e281e9f886e66a9db4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 5b9ee7a0f3744e510e71922c6f86901021136c54f0c35275eaf2398fda2fe4c1
MD5 3b1fb1a57dad5da49fa0a128bba91820
BLAKE2b-256 08df8ee681f2155c121f2196cb815be660ec17951dabaeb6c0fdc2a82d512b66

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faab9f2e389e7fc1ac3fc72a23d244c0e738e65dc080b84aa555ab66b4ca8a46
MD5 4cb3fd95eea33bf5bdd66b7d2c8f91fd
BLAKE2b-256 a317fb47c6c53ebecabff98a3e982d8dabb04634736699e5e24f733e846ff3d5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d008b5daf4431f90f89bd448c0191162549e7c3a965c8478d0f930dfbae18f3
MD5 bc5469c811125f8fcd3e34a4c1d0cb22
BLAKE2b-256 f9067f66f9c7febf7518e6566b8eb6f4d5e290932859471acda993066343db8d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a8cb7823bb773773ff2c37c66e0953e6c53e11f77f18b03da628af184a3aafb
MD5 93d0f43a887b2fa45e8b2a90dfca9c6a
BLAKE2b-256 5849e19afa233a017ad7491656084379ed51a26810a52c107575451de00d8a25

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a33be36e86b84ee0e3c3d7a39e0ad47e3cf6eaf8889974b0eec4217547a65f3
MD5 dfaa5d9c887c724a2ea6406f625e8622
BLAKE2b-256 3ed0d550ac0a7ac3395086cd53ef18c2d9728d7882babd08ad627c67d333f5ec

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 401bebce63385b6ea5c9f75c3cb2a3a30dbac3b6aca99adeb4ff4845edd639f5
MD5 650a27676c718f8d8ba4fd718a5ae232
BLAKE2b-256 d51e5019eb6ce1c86c1ec2a3d9c457b8e0aaa1cb01daf3932912558df8dfacce

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da42971aad6efb7f351da59a3fd1c63bc420c2548d5911a235f6d8cf739eb9fb
MD5 85e6f39bebf4498af0d91f70dda32bf4
BLAKE2b-256 e10ad58d20d80297f634fceb894c4c8e613493517ddb007bf7269c62e773af7f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc1083154d50c962ef1d12a77033bdd16c83513433c20893a8a9131fa3dc4841
MD5 0a5f94fec43604127967ac9324b5f063
BLAKE2b-256 69f9ec4e3588d28e60a762cd69966842048457ee3f282987f1dfb7a3e6a2f6c8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6f5798138f326337f502d23f92a227383fd77a4ef17ece0763f093f96305836
MD5 9e6b7cc30b5dec1c161983e1e5dab505
BLAKE2b-256 749f9d459a2685da51376329b034e69f3f00d3e9811045bab35eef86b5995397

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b09e53e83aba330adcb074c3da05d95fabb3e2b4c8dc4d58c7ad7752bf540269
MD5 c3cffc57c3d70a36fb1c4108e35f3dea
BLAKE2b-256 f853e2b4ce676bee7b1e1e52558ae2e49c745da87b2a44c3e1bfe32f9a6eb50d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab4f51007e5e7e79ab085db2d2f4c90b1b4cbbedf34768891d819857b225677f
MD5 41f55f69d68683d64996318451c8a0b3
BLAKE2b-256 31bd7aa09903392bf397f2f63fc42e3df23c874f312c742e6263eefd44a2e081

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3c1de01327bf6eb2724ef3bd9d3748a9eac367b0e782d2e9c7790ea8eb147f5d
MD5 99490210701a9e090859a507919c1ccc
BLAKE2b-256 14d932dfa4c798237acaac59cfb788c1383eb1c2ca3b64c6dcd2c01ec1886ba2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7daa8ff9e77b705aceb2ce75e71e3bc72e7c8a4c4b8866b13f7b5a2d110c7c0d
MD5 9f74287dd57c3bf88457f45a9a4ae5e1
BLAKE2b-256 719d628e7d08f4861674e086238808829bc93f5f030edf378029183a573b8cd7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 124feca8629ac0b810ccc10fdaabde7dae171aac54c81e1e30a76fc8d0858c8f
MD5 d8e14443d2d4b4247147f34dee5e040f
BLAKE2b-256 a1f2f533d4875eb3377d4df19400be5ccdb1fb973d0c29175dd184d7800624a0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d84448905c08f683b3a9e495e74606ef1ba34bdaf39ab7b927e71ac2c30ecb0c
MD5 0d5e7ecf85f4fb6ae6b993dc8fafe376
BLAKE2b-256 a4b8a3bdd713ee01c7bd7c7cdc6d0f79de9e82d178731202021614ff082832b7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9e99fea8d35499bd3a9895f3693c2f1e8aafa6db48725e03bcd4594ba43c9b3
MD5 8bd68bfda695ae92e33512f0dd58eeec
BLAKE2b-256 31a686fb175952c1eabf024cc56219e9bf6cc33ae01fe51091a7b6829b06eddb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 daaf5db65647191a5da4e0a7c83bdfc133914abe158f22c3045902f5f4c67870
MD5 f2bea1dc114b6eafd0c8e2d2598e961f
BLAKE2b-256 f6d9c9c0f1817d3303c4b93fdae01922db2d3e8c192b5e8b41c19518c04e551d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 1a12169315b13d824e86ebea8a1cf163bd55698c9fa9d0a5cc3014a72036a01c
MD5 a93a2f344298b5250685df5338ec9c6d
BLAKE2b-256 a0c97c16242b873f3bd2c37f7bc015f322554b2df9c3bf16352582482dae9f72

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f63a11991702292a038bf0522e187cc4950fe1c3cd82e33eaf8fdef1c0cd8e20
MD5 efbb0529572428a1933c6358ef642667
BLAKE2b-256 a16f0316826590bcb0eb44706dd90db36ddcd7fd7564ed1fbdbb2103c86e9b2c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6315a0377c5a83a16ad233747574dff5077ed54732efcd1e5a9c04780f82e25
MD5 2c2074cd17d9727d1cc4112df9ea92c9
BLAKE2b-256 999230c3384968310d91961e53a9d426d8d94ff35aa65d929a724a0c3c0f8f3c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b4c7ffddbc092ca29f46b15f681d1ce7d0d1974f5e654a020290f82234fc539
MD5 eb21ee795ddd8cba54585d34a81d27e7
BLAKE2b-256 9931afad1dc1d1aef6210b58b8106ba7dd893a28b224b0ea6fa5f7bada1801a9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a793529c05dd82ec50cfa8f01985b38e7ef97d0faf99a1d8c1592afc8113ea26
MD5 215a17120127c904783c86f538a82446
BLAKE2b-256 770132123367047f1f918d3a602c6f46d698b2049ac31d656766ce9a4ded875a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77906a241290991b5efd54842a03cc6227fdff36cc156c450aa2d95562b9a555
MD5 6c6b6635e5b8d74395d04142c1330969
BLAKE2b-256 4565f1df370dd2c941b2d4b546927cf89f9a2d7e47f81d50a70af61ac2707b87

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daff361ff6097fab6f596a6a4b2e25d763df5d8543d51e248f80a4dafe0a6d68
MD5 d8ed04b1693db5326ab35887734ee5ef
BLAKE2b-256 9a08008e15762a2050b719dccfb93ec9e58b40ff654151fd65ede030c3647029

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a828d2eb52ab5f96ddd2883a1475ae6b68878b90cd9ab69e13b8985892d0197
MD5 ee29ebc65dc558cd5bfa691199743e54
BLAKE2b-256 46d2951b3c3c7531090efbb02b898d41829d9ee498e132b9a50cdeec96856e5d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f1e5461a88a85ca5ad690e9e391aa7ba985dad96a8e131728e8ca867f58a85e
MD5 66c75481c4323b290f8e1493b50dff5f
BLAKE2b-256 bf7fbc8c3b1ac22bd0a49ffad47b896f8526bf70c7cc959b19c9a8228408e803

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 61f65b9bf3960dd77f63a647b459a2f854a50b7e33fa2749e9704bf3285c76b8
MD5 498c9719a41f61906a1cce1999404795
BLAKE2b-256 3bab77c48ff94053531b8c6fff2b8a053b17fac8e220832ccce8bf2481203dd1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8452681b11cb83e2a03a760fb8cbed3e5fd0e60f58b4f9fc0c6d5ceb7eff1293
MD5 9c4652dd8fcc707006089063412e5cc7
BLAKE2b-256 481c0c7dfcfa11ec26a3d881c671928821cc70d968dde43b6b03c5173c98a58b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6f9fe0c1ec62ea36b04c393fc5e7c9c099e6d5afd478eb1e90c00db60006ec5e
MD5 7d591de4b311a37a0f180a58207a7236
BLAKE2b-256 0962bd90e46166cc1e556d110d99d5d44ca525c245464634449b025d18121422

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b744eb8c18007a34b1226c1cdbceb6aff2cd6ce67c5871f540b98746911c9270
MD5 ff438b5a4992ba190223569b973be217
BLAKE2b-256 417542df90c77d9f1b91a0aad129098d40f3b9908ebaa7e4ddc3564a268a933c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1e024394b0e15099708e4f10a6090bb5a234513ca04dfc94d762887ed08a471e
MD5 41fdeb9d13d2f14e707d335e45aaf8c1
BLAKE2b-256 e8d7ee31e432ab2537f384e1f946412e3ac983d496c132171ac881be87eefe36

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9dc19c310e307ddb1b3116c3a0956b035b7d5fe4c3eaeb17d9cb3be73ddbdd5
MD5 dc9e4251f64c0b62102382547fd6152a
BLAKE2b-256 d7eebcd6c9c0458c117a8a7352395d082945be077817f228bb58bdb3f8cbe751

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 641c4170e26f775042a878f7af57eb9417a0a613ef592f31f4235da01e149991
MD5 b83d2119142b50af3f32368bba263475
BLAKE2b-256 5e165fead281b8fda7c751e8d72801d52ab1d24a224cdca56fe9dba28dda2002

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d15d3dbef837f4f921187a6443f94d76fda46384af62e15df8def5eebc78439d
MD5 07c8dce8065869f0215012b857740c94
BLAKE2b-256 cc18181a1f357415b84e13bdf8e2b3a1ef09dbe94c5ff3d0be9a08545065c489

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 0d14f51f2187579fccf666f3a8c7abe3c26a7e20f84bbd08931217e573da1bd2
MD5 bc4ab9830cd0c039286f3011120342d3
BLAKE2b-256 d7c9991cc78fda64b8f8e17108dbdb326a30610217a42905131953aa0a011eda

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64edff4d7c61f0414d48590f019f743e8aac96033b4942d6766afb535fbf4bf4
MD5 a13dd957d521b955b247cec3a50f23f8
BLAKE2b-256 ae3cdc8adc9109bdd6a8390f512f449653da07b32d2654239ab898cdb43d53db

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61d716f15eb1ea8221b59b90752d975c20906cd662be35a469d9516a405393b5
MD5 ded4e62c59d1aea2db76d268c9ad44d1
BLAKE2b-256 a06754a76cb86e03893bf56d49617788fb9973707dfd8a6737f00c246e32f4e4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 000117ea33f5083662aa5172e074079788c5fddd7219003f6ff8318c1c4f9b4a
MD5 43ee667171d5ee16608a0deb542b6668
BLAKE2b-256 83db1f023f62061bdafa74e7d185d128ee9832a8aa3194dffb3d4cbfd23a8d4e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9c872908a788469414949460708e7683a8e4b27192d0cdc13bdf84d3747deef
MD5 d707e08d40e0f5e9a02b984d2f85bd51
BLAKE2b-256 067b7e9ee76afccff2130df1f6bb869b2bcebeeb9d87b78c4b1d21b7ab37a828

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90b915e0df01e63b25061170265aa6cd7e4f8d6107cc7d2d8acd3b2a75219bb4
MD5 94973869592079edced3031abc17a5ad
BLAKE2b-256 0e949d7b12d2630a366c212792afbe6b61d31198b1fb9c41e03da0f59a61cec7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60e722fc6fbf143b4e459fef8edf2de8eeee3a2c61f217c328b426f7fd56a3c6
MD5 2f4f141cc0fa9204f7057ec55d1eda9b
BLAKE2b-256 5a2d3f7808a93a484f3f62a6946f447dd19f8a3ef3e962f1f8b73dd9c2bdf790

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0d80650f1d0727ca3019a2a9ca3fa5f9a51c096e2a12cc599b99b9780a0c3a9
MD5 85d0fb90ffaaf557d40f1836e244daaf
BLAKE2b-256 0e9f6006131326639ded566ff1aba7cd4ced6ea3cba4a091091d4101960c7d9c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

File details

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

File metadata

File hashes

Hashes for voidcrawl-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79f5189fbfa9f377fc00b4356be2b8991aee617e2c06780ece6fee45dd88f2fd
MD5 f45a91f12eb7fcfa410e81ff8b1eaa2f
BLAKE2b-256 6703e9e338dac565de4050ed90abaf68e9728fc2825dd80d95a94b3f04fd8351

See more details on using hashes here.

Provenance

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

Publisher: release.yml on CascadingLabs/VoidCrawl

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

Release history Release notifications | RSS feed

0.5.0

86 files

This release

0.4.2 This release

86 files

0.4.1

101 files

0.4.0

86 files

0.3.8.2

86 files

0.3.7

86 files

0.3.6

86 files

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