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.1.tar.gz (203.2 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.1-cp314-cp314t-win_arm64.whl (10.4 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

voidcrawl-0.4.1-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.1-cp314-cp314-musllinux_1_2_riscv64.whl (14.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.1-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.1-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.1-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.1-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.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.4.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

voidcrawl-0.4.1-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.1-cp313-cp313-musllinux_1_2_riscv64.whl (14.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.1-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.1-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.1-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.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.4.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

voidcrawl-0.4.1-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.1-cp312-cp312-musllinux_1_2_riscv64.whl (14.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.1-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.1-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.1-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.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.4.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

voidcrawl-0.4.1-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.1-cp311-cp311-musllinux_1_2_riscv64.whl (14.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

voidcrawl-0.4.1-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.1-cp310-cp310-musllinux_1_2_riscv64.whl (14.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

voidcrawl-0.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

voidcrawl-0.4.1-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.1.tar.gz.

File metadata

  • Download URL: voidcrawl-0.4.1.tar.gz
  • Upload date:
  • Size: 203.2 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.1.tar.gz
Algorithm Hash digest
SHA256 ede79abdc70121d9295751258e5371cc50b358a963ba670a9d61803737c809be
MD5 93b1837eb59b0b178368afc95beb367c
BLAKE2b-256 59b79bf6adc52d685771eb915b5e09599435990db6af272d3c3050439d0b72fc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ee0b92556cbfd50b330da88f9afa09b081c5b3e27f3387df03e89fd29f210a07
MD5 a5eff130cf88c441db1dda56e4906087
BLAKE2b-256 fa27d7db5600e552319076ddad2ccf1bd31236858372f4d07c9399471931c407

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.14t, 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d3a83ca78e233a3420a05bb11a5f0ad2c050060169f68877e0ceef6fb5cacaaf
MD5 1095c82e0d67b929a4b4b3b3a34e5877
BLAKE2b-256 a6aa2961bd15036e6f89e3ba20ccc3f9c65936fab5d8e466023cf52d7ef2330e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9435e7a30b775dcb52ca3f5ef4aced26c10df5c5c934277f3b1928f69b27fc90
MD5 25b04aba313ad3c205259e9d6ef90d7f
BLAKE2b-256 6e05f5adf6821fd1313f31d2fc43fe1c388664d7dca92edd237af54e5a0b1950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 930dbae9463d1651305f26717f2c9408a7e9cc90fd8f55ad2bbf988013f15a31
MD5 16878dca3e54d7532ebd0250486ab50d
BLAKE2b-256 2ee0781dba2c558fda7f33632fce7d892c2c88d0c65d9cdf371c4cc1bf14cabb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b529ad3f170f3d1de95d58c82208ac4310c7b4d2ca0f5cb69f2a937808fea0e1
MD5 3897994754213b45bfaf77ed2dc1f867
BLAKE2b-256 ae6eecf5eec8f6696ce29d2ae02b6976a0626e0da0a6ded60f488d90e782f67e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11f19e9c888332588f9eed75ce54ddf3bd37a0b2f011b9ca78911a90d45d1317
MD5 2337e11abe47e382342c3fcd9425a79a
BLAKE2b-256 0cd26d91413fcb4db951193e6d5ec6efbdc1eb65963e1483baa6489e55ad24f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 541a717d95d4b7575d01b8e371a1a8a68f73961e463cb40b03be1e53aa3c7b94
MD5 8ba673fe462c96ca0bdd047f99225ed1
BLAKE2b-256 3b6fc06fed039117c5256a477651648feb56fca1a7d4b95be35a3c536797a70a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af76673c27d19fd08fd8d39087a265c821d2d1cf1adccb0f61adc85d4d307c06
MD5 91b8df84161d417ed4445ab57770b4d1
BLAKE2b-256 a311296b50294c7e9e899f2665743aac8628b3f09bb2e3495502adda2900500b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 501fcc2f779a2679232c187c007ca48cffa8151d7d4e58e0deb0ef7e340a735c
MD5 59339c4a67f952be26c73e108bfd96e3
BLAKE2b-256 9bfbd1f3b825525916a867ebaa431b63b7ac77b09855e06f7c54db406d13fd50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a7bb939dff7f362d37d6fe15182c32b97ec5746f458569449860d35d161b888
MD5 426b9c30c63e36602ee7221c601fad00
BLAKE2b-256 5520001a74a56170e2e77eefb5e1690894437c4f4c7a09648c0940ac6c72563e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 edbcca8df5b0c8f20fbb07ea1ed897cefcb162e8e6556b0d1ee5e239d01c43a4
MD5 516660063aa3d35356b6d21731ff6a2e
BLAKE2b-256 108dcb2ba2dfc35f69c09ef40a56128a2f083e517f2c2c08177823a215655b58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05b57512792d75f4eb91c5d15b408d7281efde90dd0cbb48792ea878cf756c24
MD5 188057b49e20e452cd2a6b6f9f465db9
BLAKE2b-256 0020ddb533ceb355364ab3f9e396a3c405f3691b87ab1b4492f48bc3329bd635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c2e897358287959af5d486eba1e98ba7adacea4572821c5bdee0f544ea6c71c
MD5 51f9bdc8ac31a27fa93a4bad40c67ec6
BLAKE2b-256 b36cc06ce14e248753093c4e6ad7e7c1a49ae1c2191c322d285d3f6faf738a18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fb9f4cd8fc302fd1eea810903df36a4b6f7f219837a32f6094935e7b86521da
MD5 d7e22fa784fe933cc9bd13711bc09e9f
BLAKE2b-256 b78c863e853cba709bbc6dcec90d0c1df814fe77d8ddad3b88f6b9e6c9d2d668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 64b4dec4792aaa171ea342b5a63be54feaf455dade6b068aa24f3a090cc5ef23
MD5 f49a4e999a7d39ec6843c2ae0c929e58
BLAKE2b-256 bb96bc7fa23ab454166255b9cf2b38c230d678aa12ccec5ccd1ef9d291e0ae77

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 49ef8303d25360eab6668f45ec6ec2d14b9af14a4e36ca9396dad83e9ea90b73
MD5 4121592abb5f120f32c97089ba2798be
BLAKE2b-256 e35dd64061127721c30b53af8541b932b69cc958690ba0ed89109d5e5439d547

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 26f8b113e43a6b41eb4b37f5e25dbc153ef66061d672f5508f941353959d981d
MD5 155c655057732c277fb94e42a518a19c
BLAKE2b-256 c839bf9c00060c903c520d0d98511e7c61d1749824cba2239a4aa16ef74f1f20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2011bf712a50f6eb3276f70be892afc28ea6ae128ebb0367f5e258f838cc6f0e
MD5 037df1b148cfea3881a8713385e7e320
BLAKE2b-256 6043b1fb0258fe78f2af8447fae37b87cec5a4bc50ddb8a90e82f8cb05f3208e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca61ecdbd339f825ee5f503aec692541bc58c6d08f5fd28c69c61dd2c6f91b3b
MD5 28db0f67d4775be5886d40252bcb1896
BLAKE2b-256 970ed724309b7194daf30f9a14a282757c2ec765b7963b831312a5ad941179de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4756abc260aa21ab3da449dd4e35d8866584ced573342132c842187ffdb52ec7
MD5 df6955fa6e8236e59e30ac2ad36d647b
BLAKE2b-256 ca60833b9e7c3055f3e6375c718fec945f1dcfc192d155f28195bfe82beffcc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b083a0e71edd52f4f122a7d143cc761a8d969be09164ab44c6c697eb287c3cc
MD5 a32f06fae031c7fe977585b9d31b4c70
BLAKE2b-256 a039466f1842c5c4700004fdb8ad713b81a46069665bc24f16af3fd48e03f069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 103f210afad72e6967a0f0bcd6b8f01362fec4909a01d734fd189d3bf02aceb4
MD5 45b1656e261211d79722b79a6f5520a6
BLAKE2b-256 bbabf73692361633094b3c9a7a36d049316ddb36cdff1e103f64ba0c16fec03e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58fa2366bf26e079074a59fe7bdf781540f52f941d49104ae3694dca280ba881
MD5 fec760f5c5c45dbd8f7c656be8a3134d
BLAKE2b-256 780d97ac26d52256a51cf7de90b99ea19bbaa81ed1951f2e063286f3ff1e2b84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 f8350c0aaf40b0d678b82ef9b49d62bd8c152c9f3e9f403fe8601aa7d34b4f4e
MD5 fed5756edaaf5d3496197ab3cd39a67c
BLAKE2b-256 59abf70004364915d00d66a33940ec35f11794427f03ba458f8a124d6d96e406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05ab811b61be951b9d06ed0c88728f8f85eb5f06cbbeb0cea6d0a390d53a2924
MD5 76390cd10955afc94283b871376d0a9a
BLAKE2b-256 dc6a41e45a19f4f6ba0756352cb4511854b8e988c8e588dd195bb2da20b06fba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 392066f6a7d36636a1cf16872d6c96d079656c228181ea41f1dd7822e58a8e6c
MD5 5005432cd4eb1967bf5eb7c4305f003c
BLAKE2b-256 2cfc86ebea34a0c7e08efd8826224e367a9c8b11d58328dbf9d34b025a1cfaab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 618dea369842d8679bad85905b7ab6bbbe16eb1be48e0134363c894f51cc2228
MD5 dddb63865e10d373e34974fe2e04dfca
BLAKE2b-256 fc1debdf90bb4a088dc22ca58c40a31691786bf9c0e0795ff323c32dc1c8e087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 03accac1e82676b6fe9a2986e18730016061561e7e8f3988c9300288214132df
MD5 7769f440f9bf6ede5c8fcfd454698635
BLAKE2b-256 8571135a7de1ebbe98e9145342181b5992f6c3594996eeb05c0eabe6f2832941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c94b75d083861dff25e51384eb4995b80757827baea3172e4b0018bf0930c4a
MD5 ef8fd22b214745e199490bea7ca3ea86
BLAKE2b-256 05853deed7ba8a41a535f0124401bfcf4dc90085811aaeb2d13ba20a8d82aace

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 747179a266928aac300ca1426df6293b39f4cd3a4e63f225f615f3dd9a281f4e
MD5 62e64b1e42afa1253c693e86698da431
BLAKE2b-256 235772684e2e453c4505f45f232bec0f93c9f19a081c21831b7e9986f81e6dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18a2ca33c22d76d2cdac691fa00611483ae8bd12474293952bf45065db10f5bb
MD5 928b1f573d5881e73c62598829fdd1c6
BLAKE2b-256 803a8de91c91472e85f9b28b98732174b494862e556ea7252581d597e38a8300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ef28b14d6c1a8cc91c7faeb60ac74c8b65737e3ccc3534acb3556e7f7e91ea6
MD5 8e9dff2cc8927f75d1982ff2bc9dccec
BLAKE2b-256 750c3eee8c66bdac57cd6d171f67d9b1e33a42d7dac4ceaffe2f408950a4b333

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6ff2e7ea0be6a217bfaba81898d30bfeecdbff26119cbf3ea38468cddb0df48c
MD5 cdacdedebd76a8a6e260fac6a307a94f
BLAKE2b-256 6f24132fb253e6e26ca22877170cbe1d5648553db276f5f777f49e98f3c44b42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d76dcea754b7e9c7b020ce5e6271aa05a1cb210f8534b125a471455f1725cec9
MD5 2a6b8cc0f77f657698f0e1bc2a65f0dc
BLAKE2b-256 b4bc08cbec68c7c3d23474f9be23bb60b1e09346accf7ae0221b74e1d4a8dd08

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ddf8c0b9949c42fec46fb2764e6a2a33c2f5a8d6d45c8eab494a18b2f8138cd3
MD5 eac99ac8e8ec3624ac82f2d48f2f9944
BLAKE2b-256 067b0fc524cee3a368f515243868cc60ffa4c49246181a93942f359e6be77db4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b68b980f0e0f6dd7090bec3df8dcb76a76006e07e28761dd0e725eae591b7c9
MD5 f867c6e8f69e97e2f87ebd082c3c6613
BLAKE2b-256 db7b27cde9291e1a7de97d8d53bf4d9ced300f2a8f8a78e739ff742ad24ccf9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 449347d1f5f2214ed2230e2dc89a59b6c3a0203ed11be298eefe55b13e81acda
MD5 1aa97ae779df6eb0139c443603a1ea5c
BLAKE2b-256 7c9ceb408f17f48263d5b7f5d5831d98b4f09f952cb3ae1500fb8762a35e617b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34e220ef6c0cd8f77c153aec5775e32fd4f2d80efe2b575f9aa7bed59694b176
MD5 950e0862ecb9250ebe78a8794d0dcc2e
BLAKE2b-256 c914cc873044308afb87b40ce5911692aeda363ded5b8c20eff3d75c9d5c72e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c6a4abb38603b2be78724b350a482d16f5173b8fd2ed40b9b66ece2936076a4
MD5 3d386de2f8f15f309bc7c42e1fde9826
BLAKE2b-256 250d8063c26eeb3f0d0419efd76619e5779798477974f6246932cae893ee20c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f19c824d3edfc98cc9133fd1a54490431eb06f371930d7e0e603773fb37a7b56
MD5 c44c1b40a68ab9ab393b929c444dfbda
BLAKE2b-256 81982fb9bcaa8cb1174feeef9e7313ecd17f8a0cc6f1764e3abeddd022c1b261

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2707409cae5428ae0994a282cb9de0ffb643bea945459262aa1ca616ddc7d492
MD5 1db7692edd3905da24b993a17a331e89
BLAKE2b-256 8b5e9ab97a3c68bb6171e24a34432965bc7c4867f3c81682953e0e5bd3fcc8c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38dd0f78a76c81cabf733c484812b1f1379082d83ca684e17206fc77e34d5ef8
MD5 2c85e6e6cfae850bf8a82a3ae1e11d76
BLAKE2b-256 ad745acb04a6978419e54e8c47edb5f1a4964a4fdb17ac3661717ed3ee70167a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b3e39b7353ffb0d4e4e8d693c0a533811dc142dd57e99321773870b3e422fb8
MD5 1f237287ace2f1d6b135ae055c1295e8
BLAKE2b-256 ad93433d7e5bd3de205b39f31f23a032562cc6a227486f39b5413df76f832ab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 010e6cd1435b735813323befe66f906114bc9307e9c29338663c389b068aae56
MD5 3a03d317505eaf47813c69b3749161d6
BLAKE2b-256 687232c0de0548d8d7a1a6dd829268c6ae7ed10781802872a466ab5b7aa5279e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a269c590687345613f846db6c2970e6346105d84de8ee71d43260b997dba11b
MD5 a34812252bd7736fe66cff6e237bcbce
BLAKE2b-256 c670a31745fe860b2faa99218cd25296baee1ae37453e35907d0f835593addda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cab0b590e965888dd155ae4251837936293ee3242bafab1102efc8fb8b2904f8
MD5 f5a9f2b4f7321538fc87d781ad50d7bb
BLAKE2b-256 966789ca0f20a3168868db26f6e2e1206717c499a727ee9907379c9cec9be024

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ead40d61f4f4835fb796712d0ec3889446010e3629dc052b9df2ca18d0b6997
MD5 7eccac4b000b0944c708f479ee99aced
BLAKE2b-256 ed32d75cbfc88837522b11ce25ad7fca4f8d919c70bbdda66965994f1dc24318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f86ff6c22690be0c7cf59594b6e6deadac6f6174176c7fffb3a3fd1cd8ff4de7
MD5 b5c87d083e5a0b78ddf2f407a7631a26
BLAKE2b-256 057524e02efbca45b2cf2f39bcd6744c2e58adf24b15749d6a04b75cb132f991

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61f9b2b9313cded1890039c696f3f8feac95e517adca622ceb9da7cd81870333
MD5 a5865f8d6f462272a0ef3b2e0187c019
BLAKE2b-256 b8c0e3ceffa79fcfc42144131cdc40edeb59f556baa182fe4c11ef5805307c3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b2748458ce4ec6c50d1f6754959555a2abc47da6a9486200374632dfd6d4fbd6
MD5 cea6f2b4e0a7347eba370503c7135b39
BLAKE2b-256 351d5000d3dfa6c2f49c8281185b60feadad3a8598c9f64138a42a1b3a75ef18

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f1fcbed44652c3961039f7e590eced6e4b06d354ba724e9b014774e89345d1a
MD5 2d28dfae706f5d5413de7cc0ef194e4e
BLAKE2b-256 33c4dd45555cff783d600404235cc3bb4c0a3f623dcc37b5411160ecedc7d36b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 baf268923053ec0af79d3430b924c20b7028bef7d3c1dca0a4b721c8cc8a1f56
MD5 ef1c27f4ac984c17a08fafbeea79861d
BLAKE2b-256 5a203db95057968b39e10a6c3dbcf6e547475cd87f7b7c773b66a2bed9303588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4719096960023db91724f5fd45b46f03814a674373270fdde3087a3312dd172e
MD5 d8e6c83863ec3f164d4e7a75f30a00ff
BLAKE2b-256 4cc93ac976aa827bf2b5ec91f9a7b0fc21c83dab1d0a800fc1236d2b9e2f6a7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fc52a72e712a6f730096c3434d95b2afc1cfd3cf41c0b340b91fa0105fde3f92
MD5 531e73a43add9b0ead96c72dd4e17c81
BLAKE2b-256 06faba5a6e41776ab6f8138a4f4fd618f994718809097a89dc8760c9f3080a7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 812891b564525e62f299bb6316a2a52a6d4a4ceb0583d0a3781e9dca7b6b1684
MD5 eab43a96f1d7f05e4f464fe0916037c6
BLAKE2b-256 80363fda5ca3eb0cbd99da76672d8f4d1c38a3c3d2a53108a66c56cbf6cb7732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e16be89b575ff4a96e6e359136090b413341fad18b4bbda4dbdb3475128ab5fa
MD5 3103cf14465589c84b4ae849d3e8571f
BLAKE2b-256 71d406c4ccf431280b3e7e42b1c3fe9f83eaff263e0d7d7e43484cb48250ee39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 181db2f4d60fa4b0fd48285ac91752546f3a94b94b818fc60abdef6fef237c6c
MD5 352a0773f8aeaff9a1311016993e9ced
BLAKE2b-256 fc41604a6e15219d11a329ce0e28bc3f2029b40ca0e7582add8ca6fc76e3db55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 494cef1883d9b59e123e9f2a8e72dab77f97f4afb03db9fefd55b6e65a292bb6
MD5 b55505b9f8327941bd10d629d079c939
BLAKE2b-256 cef203b9f7d76ae57898b9651923c40213546ec8dc9e520c15b1cf97e0485cc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb4dfc386a42d7a78dcfecee50784f3059ea8283abc06ef2b209669f47571f93
MD5 1393a4be12a7997b09eabdb1f54438a4
BLAKE2b-256 40d96f66c355e13957873fe95a5db600c555e890810adf1cdd36faceb1630955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6948b7e9c9e8bbc892e821ea137542f009def0738c0a35586120475fcbec14be
MD5 a0a5ec27c9057a6218d19a8fcce32acb
BLAKE2b-256 13664596b20079339d73b2cc81df59656b54e68071c92ea78455c577aaa9f165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dfa7b928b7b8fd01be1cb7274184badcd1cc34d3f8e16ff1cb30c8e8272cdaa
MD5 c000e9952332d75f9c5a2706731717ba
BLAKE2b-256 832774dcdb21094ef0f395350a32466b3a41602cf6af6c66327bb83a6a24864a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccdac0633d491d8d701c9fee3a8af7e668d2d1f76e69f502e5b8e17530574699
MD5 70ab98864b23bc7a5957751061c5c2de
BLAKE2b-256 a49a46f097a6abf605c938a3e6728b62a6a39630459ba5bbb5291e6643af8acb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1d1fc5762d0635bcde2d7823237dcf93d5b32fcf290bb0e53c4d5c6b2f09092
MD5 2b5e56be96a1901e711d8f14b738f1af
BLAKE2b-256 aa8ca3f2c388f09cb430f24358243aa17d377bdee13784fc77322d28fd81bb3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2db9d161d33328d820405dd514da84af50e5d344e7468c8d509942e62186d9f
MD5 3cc2cdb2f37fec897e2e8a7fa276d491
BLAKE2b-256 fb40c8083d1dfaa618e7c52c5114b000e03134e3ddb7e474b1f1c09943c3a7cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a501c51ca292251a144e1ea2708ed5e7a8965757ea6b2b80b752dcd0cf6b1b4d
MD5 0624beb14297d2d96b83805e75fcae71
BLAKE2b-256 473f2196e116aef0ced650ca0a6506105281646870a1f6bd11045fbca31c8fd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00179ca277fd2cf7bb77a62740b6b4b2341cdc3b548a5f5ee08fd06d972094a2
MD5 9f6f5af15279013e7cc61ec4194b3a54
BLAKE2b-256 ea2f39aec136dbc73669d09dc0b5afd9d301cb83a015f4f545a7bda731b21120

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2d71541e692233eaefe10a13c8cfe3e61802a2498c1b98ad4bac56b48dd89dc9
MD5 64dcb7e40a175781e795f8f981b7441e
BLAKE2b-256 1ebfa849cf70b33db091e7c743d70f90bb8cb2135d9084218c98bd2da75e1ab0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5545e5bd5d032a7bdeb1b8d1636daee7f1cc25504af94ce31991bb32c64185e4
MD5 70ff3aff64fb62106567bd7804ed0bf2
BLAKE2b-256 5b335370177cdee86f27409cfb9e91b0333da4ef729cd91f79c05725462d74a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ef67cba912571fb4e153db7699f238d52e8e6e9a0542be8e8d18107fa0b5531c
MD5 436ca36ba8c75352c6f4c57ee9225486
BLAKE2b-256 1cb4fef6e2a39d2fb6ff1791fb82945a82c11e21e7eaa408d77a3e1f0b2cb362

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a1275d4c13113e359a9ad4ff987909a99bfeebff1d044d0e1417bb64a84401a
MD5 846521e101fd426f55a25b059bb4ea1b
BLAKE2b-256 64c77ddfeb0a8608d0c641b2fc5e1653a76ef6e8f7683f1a24d85a219a685b37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5449d7d4952e70c22c53adc6bb71d5f9eb1c202ae9933d630be36f654caf8429
MD5 161a5a225b6e34a1f521b6daac180e41
BLAKE2b-256 20ea480f69291708e9954e4682d245b8fabcc96df0062b9c8039f96aa358ea87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cef39a14fbe034d60a83a01de421da49d7f0fc8dd09e259dae9e8469cf6bd41e
MD5 34df57a9a323fa4af697b08a392944ad
BLAKE2b-256 06c7fbb63ee51306ba27611edf05196b5457877ebb4df36811a714fb1b962868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f01ee45a50ca67c006b14e2805e1de3614c10c9f6dff59aa4de25a7eacfa017
MD5 4fcb1a6fc52d7cb842cbcc043c058db6
BLAKE2b-256 1b492d0b0d5d4d493537655a999abe3fcc28e477c4beb44396bbf020663c5d45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96435efdbf513f3606d8eb2c4e7ec3f1fd1e6d5eabc8ec90e56e48551f827ea2
MD5 1e40a64504394a0264d3b93aaa2d7048
BLAKE2b-256 8a0aa5795fd5f75c8f5186c30d6accd83b7e182bb21fc0b5dcd6a1438ad9165c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ffcd8aedd40d839998ea5bed698b4225e20f24623121286b2ab3289f047f4d00
MD5 2687dc30ddc617ce0e0a63cf847901db
BLAKE2b-256 efd7eacc5dda7ff63d4d11458e0a0d5fd08e8c97db334d01647dfa14fce80728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e44c95aebbaad3c52e5f4df4a73f8c1386c233364d53e91dec85eaa8ed7e6d4
MD5 1a85c2edb4834447e4f2f63058586364
BLAKE2b-256 1ee3328dc3171f71d6fa5b5cbf2390413684caaf63389a5d5ea70dd70599d3e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e4081091174cb91cf2f1541c8130123b55782d7144e9904fd820baa5d711b0f
MD5 2fe68ea07a0a1f9e99fe60a3caeb15b2
BLAKE2b-256 dac39f42608fd4cd76c45e7a6a7ecbbd6f006369f2d38e08f7c380b37bd903b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d86c2c58b3ba3ae5484268dea45bfc1b7e32b81d6107b674c9de474a9e967554
MD5 4d15d1f5951027ad5d5af97c2cd14522
BLAKE2b-256 aff043dc204e3ab43273f9de98bd785644106a44f6e8e668dfbbe03f6f8d0e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d047a3ab60838e2108ed7f5af07721733b713f1d0ea5fb8b475753e7eb70ddbc
MD5 ce7a3dfb7c1162d98c09e90f19438676
BLAKE2b-256 366f4848ea663608287868da8c20457ddf1344528938574724a3e3f6a4e8a038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0787b8b3a5ab536da5ed20a573c0f24518a2bf92ad3159720f6b298fa23da4e8
MD5 aaec08f12096e50127405f63c6e238fd
BLAKE2b-256 df5703f208abddd323d18bdd7a06e2fbc8b6fe0db97eab3d1a9c65d93dd0072a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91726fa759e5d14518eb06f137ac6505b77e8541b4fec6a9907ac5f9357191ed
MD5 f47c6db5a421ee34252c20b901bbaaea
BLAKE2b-256 68e24c52279f1549109c9ec968b51c04d574ab4cb745700fe37ef0a9961fb4b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83f9b907fda4d53f218084165d06b9189cabdadeeb5259c5798746beb0085f01
MD5 5df353ff5c1800dcfaf963e058c8f772
BLAKE2b-256 05431aa7a3689429e50250c509314c8d87ccc99490d9c747304e29e9efe4c0b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24b9f5f42e1bf7dbefd2398cdf89bfbfcfda31a50bc1e469d89e83ba3ff88033
MD5 b060b1dc856b2a9d754f6e24309a6911
BLAKE2b-256 6a9477a39a13d552124e0173df1a2ab664ee76ae2caebf386d3c7b3958dd6b87

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 495e9e83977e3709d336d20cd8ac9427a5912a6f8aff3805d2e2a45d676bee59
MD5 871f649e9b16b43f12db9a87f35addc8
BLAKE2b-256 2ad300ddf8d3ce0cbc3d290313b9257909532b6e93887014e5b869e6663d04d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 277c6ee00a9d764c06525996e63f90612a6dd4082c5446f1ccaa75cb0b38317e
MD5 f90c8724ad768df247a9062fe0b28b44
BLAKE2b-256 5a9805f8aad8cad794990a9728630c45578b72e8d209436abc8243988511a5b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.4.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 278d89cf460cd910c6a399a894a5de5acfd55841392115c8357ea5da95583ff4
MD5 385ce9912175461c3e4ea393afaa5905
BLAKE2b-256 037bc859f750f16d26995e62fc0e64f6be1d783815205f350d7c3eb211144bfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85b6273b5f40c6accf0d628c8467ed0ee94042aa1da0f28aea40d33a903b9e06
MD5 6441f6187ebadbc45b00a5cdbe200f2a
BLAKE2b-256 8f523728ed2bc8fff1fb74f67eba36b2409f9dea2731d6dd4e64899d393fa5d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ed53986fa3cc856995f7f20e3dec3d7a35beb08492097c526512f30ccf7449ea
MD5 30f16152a1ad12074ecd12fc5bbeedf1
BLAKE2b-256 9cce68438c0cb7dd00a7fd81a6c667852b9231287225c87a4df8e76cee1d57bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8986728fed6845c442aca359a5314eb4cb45107ac1a92242eea0fa6737f2a15
MD5 15a660b542dfef060ab4f8572418b9fe
BLAKE2b-256 b71165c71c43f9f4402a1a910616dfe0cc29eb409a18191930aadc4a45611502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99e76b7fea694b4e3a9b45290236aa33d3769863edb19d1ebdc529b522105606
MD5 03d4045c220918c0025665b76912ea77
BLAKE2b-256 2a0c0684bcaa8b414273cc3dd7a3067432fd7943f2b9dcb473e4370eb579bd1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bb98beea9d1069df5be0787d1102aeb03c59ff4ab5e4360fdd83544cf03a580
MD5 c3679abe7f85827613333cc1a4749e52
BLAKE2b-256 65a4e46fb1a1becbcc543439354e75f49d3da7660ea1a946a4108ee7b8d218f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 464e8b0870c20eafc120b3cd908e02a2e2c8aff97ac7d4cf50017777c49cc389
MD5 44e60cb50ba5ca10f7c432e4f551465b
BLAKE2b-256 35df945d96fbbf133d7473481c96737a7ebc0d6367bc847b02a3b16946e77b59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b60f650572bd3bea2b7c6c6257da83d25bd6b65efb793086e0ee7b5bee5cc88
MD5 f1b96f1d662d808a24696310b98e1877
BLAKE2b-256 4aca192d50407852ee8524513bf05a12f38957a626ba3eafedd6ff36bd037383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bd9c9ec95f1d8064db974631c86af20e70a27b69ff64b3e5ac4d37e7bc52170
MD5 559face8a126ebd4c87e0767ac4b8334
BLAKE2b-256 c5ff9aa6988801db5dbca7528fd4a212ce449d90441fa8a52d530f32dec12046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4f9ea05c9757bec2abbc37a58cdd77c23fad5e6b072c758f9a6156419f35a85
MD5 45f1c6f24942bbea88ba2f46bb7d9475
BLAKE2b-256 925467e3b8ffb7ed2826a8948172f77afa8e139ffe9bbece4ba922fbe20f812f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84169b56fa9aae5cae1b181678c679e710ca46ee0058be0da8970693edfcfa7d
MD5 69761b65848070a5394dd93cf2f2cadb
BLAKE2b-256 a5220e9fff32a645b5a98b5817fb406bad39f42f27929da5bc0e0b023eaac54f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27ed1c4d56fd174162d7a8d250c16700e74cc5f4389309b43ab2a6e522ee6ed3
MD5 d76c6400093d0e72b05e6c9b1109f70d
BLAKE2b-256 f299a12d2a7664424a562b69c02ebd164f797b535b6ddb866e8d9b0462feaeb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26742e91c1846b5ea2c7f81d9e610acdc7c3dbb227b85712cee4858a2ddda91c
MD5 75e475fba193cd07b05a17cd88ce7fcf
BLAKE2b-256 42b20cb148e656745d8c702818078a45d183c65cf4a4751d3774769c8c329308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f001b7b8ced31f1798c8878acf9398411e253b687ca0c12bfdec2c308d9b669
MD5 65805b0aea0407910859441ab47d9eed
BLAKE2b-256 119d212451001bdde4b24ba143d13127eb3ff7722a401f5f9ca51a40ef2dfd02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3ad0b9ccc9a403573206d68e7e7e42bc8630201b03dc321eb9c8b16fd82511a
MD5 ded38cd8195ff3fca745f2dd08eb29a6
BLAKE2b-256 dacf05f2e173c84a6f6ea586d124225a8f8e11b0310fde9f62f024c27c3ef9c0

See more details on using hashes here.

Provenance

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

0.4.2

86 files

This release

0.4.1 This release

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