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.

voidcrawl 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 voidcrawl import BrowserPool, PoolConfig

async def main():
    async with BrowserPool(PoolConfig.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 voidcrawl import BrowserConfig, BrowserSession

async def main():
    async with BrowserSession(BrowserConfig(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.

Run voidcrawl-mcp --help for the current tool list and server options.

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"
uv run python examples/basics/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 + local on-demand noVNC (linux/amd64 only). See the Docker 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.5.0.tar.gz (383.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.5.0-cp314-cp314-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.14Windows ARM64

voidcrawl-0.5.0-cp314-cp314-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.14Windows x86-64

voidcrawl-0.5.0-cp314-cp314-win32.whl (10.7 MB view details)

Uploaded CPython 3.14Windows x86

voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_riscv64.whl (15.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_i686.whl (15.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (14.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

voidcrawl-0.5.0-cp314-cp314-manylinux_2_31_riscv64.whl (15.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (14.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (16.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (14.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

voidcrawl-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (12.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

voidcrawl-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

voidcrawl-0.5.0-cp313-cp313-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.13Windows ARM64

voidcrawl-0.5.0-cp313-cp313-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.13Windows x86-64

voidcrawl-0.5.0-cp313-cp313-win32.whl (10.7 MB view details)

Uploaded CPython 3.13Windows x86

voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_riscv64.whl (15.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (15.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (14.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

voidcrawl-0.5.0-cp313-cp313-manylinux_2_31_riscv64.whl (15.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (14.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (16.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

voidcrawl-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (12.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

voidcrawl-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

voidcrawl-0.5.0-cp312-cp312-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.12Windows ARM64

voidcrawl-0.5.0-cp312-cp312-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.12Windows x86-64

voidcrawl-0.5.0-cp312-cp312-win32.whl (10.8 MB view details)

Uploaded CPython 3.12Windows x86

voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_riscv64.whl (15.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (15.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (14.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

voidcrawl-0.5.0-cp312-cp312-manylinux_2_31_riscv64.whl (15.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (14.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (16.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (14.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

voidcrawl-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (12.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

voidcrawl-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

voidcrawl-0.5.0-cp311-cp311-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.11Windows ARM64

voidcrawl-0.5.0-cp311-cp311-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.11Windows x86-64

voidcrawl-0.5.0-cp311-cp311-win32.whl (10.7 MB view details)

Uploaded CPython 3.11Windows x86

voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_riscv64.whl (15.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (15.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (14.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

voidcrawl-0.5.0-cp311-cp311-manylinux_2_31_riscv64.whl (15.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (14.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (16.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (14.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

voidcrawl-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (12.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

voidcrawl-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

voidcrawl-0.5.0-cp310-cp310-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.10Windows ARM64

voidcrawl-0.5.0-cp310-cp310-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.10Windows x86-64

voidcrawl-0.5.0-cp310-cp310-win32.whl (10.7 MB view details)

Uploaded CPython 3.10Windows x86

voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_riscv64.whl (15.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (15.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl (14.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (14.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

voidcrawl-0.5.0-cp310-cp310-manylinux_2_31_riscv64.whl (15.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (14.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (16.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (14.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

voidcrawl-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (12.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

voidcrawl-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: voidcrawl-0.5.0.tar.gz
  • Upload date:
  • Size: 383.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.5.0.tar.gz
Algorithm Hash digest
SHA256 6a53fe0b99dbc8f94407a82e00b5e062ef8885a3731aec1371d69ee40b89c10c
MD5 e557523c753a7dfa024888600b5f2147
BLAKE2b-256 a00fc7cbd0fe74c75dde6722973fc09459a312b7897d4730e927a7a6ba4a0031

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bb4e15949633b96296bb9158a60f9c88838a01421e5a5f1ce2bf33ccba621334
MD5 cc2394d555156548febde040e3ad3d0e
BLAKE2b-256 12d3e867b4d450282a74727addc2a667b4b840e9cded6d8b3d2a7044230290e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 13.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.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0ce17ed1feda77862f8e37e15654d8c115679e2a1586a65d0e78b26255c77ff3
MD5 264cecd90c7d98ed15b171b0ebf4aca2
BLAKE2b-256 804aec68af91e9eba2b4dd7ed86637be0a0cfe11f80d5a5f7732af5061264858

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 10.7 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.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 119104090ea3ac0d9fa26920749641fc6170655848bdd4e0c63e54c6a43bbb02
MD5 7fe3028898243c53926f862c096509e6
BLAKE2b-256 0eff7dd748f4d98028b0947f564f0f7ce55fc2eab194205ae72595539704f747

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35cc12946e42f88e217c233ed1f3ccfe443af87243ad8143270a92adb82147b6
MD5 eaad4adefb6688bed91ca133306ca01c
BLAKE2b-256 9267f9369fbf57f8be342c39e89275ccc1de4fd281bf1eabefba515c5d0e2b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ab4232011542f6a9827ffe7f6c6b57d030978dcd0c75bce6969cb58d228cc299
MD5 bb5c7dde598b7991c0322293b44e4a16
BLAKE2b-256 cb7962ba8c838293eb2146e32f271228dafb9ee08af19680a32a8d96294f8786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec88cd137a12daf874c4b5db31009ea9f982719a6ac918bd7efe0820f4515e81
MD5 150dea47dc6a1868931e358aa9e3fa93
BLAKE2b-256 8cb49d6fb0d3f21a7a5a8f8f1f2c49927f83dc3712220ccd11cc82406dc02f09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c884338d0567a526ab7e906a2fb13f2d42dae91f83e215e8da7df80aa2486555
MD5 296f2ddcaab128096dfc4fa2c11a72f9
BLAKE2b-256 1e19a6ac98065e5503a9a98238d06fea0ca7522d42198053afc706d343aa9bd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d776e9ef1633e94245434ff2d9d63f72691e8baa5989e94a11cf2d56db5ce87
MD5 e113196cae346e89ee8477ab3e8c0170
BLAKE2b-256 b876305249d9f30de8cfc218f303ee4c2b0c841d460abdbef573f076de31dd39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a56967ec4c369eb1c1fabc4066558f708ec2d1f5db897993e2f710e20f1ff4d4
MD5 1bdec76cb9e510486432a1317279fb27
BLAKE2b-256 6ee8cc32bf668ea4bbfbc704f883bbf7b053eb786af4b0aaf942fa4c47c347cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ac489693f57d14152656b36d659139c0e722419eba0d9388960ae97847dd444
MD5 eecd68393509d36c8c4441c56c4434c4
BLAKE2b-256 4de296445ad01789ce2955c87d2d88ecbc61600d037b6f252f484e4192908e95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 822cf982158f64fb17e5c64f3fd95eaf1bec50910333101b7123e86677fc3609
MD5 c4bedbd183d2ade0e49fc464d049310f
BLAKE2b-256 8136de9b0302c2c06f340325fa24f91a85a749a2ebe0fa9c73a0022e78305d18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c09cb41c879292eae7a187d2b14b09da1dfc69c40d9556454899f9c7c5103778
MD5 c4a7152df8be4e72d659bde54d2342db
BLAKE2b-256 1c2ce0c0c6091ac11cddec5d839b4479b9e40e802ede61cc0b4ed24e0caa85f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09690c95ecc60cc6f52a5ea56d54e3021979e65cff55fac52c5d0a1b1f9be076
MD5 58c18abf45389b9ed56d2448ddec5062
BLAKE2b-256 50ba0e33b204293fc45b3f45dff11a06c7d4649aac94cbdfd833b02443e503df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de60e27c2a5aacd82b3440fae27b27d42c1be3eafc2beb3ff0246a914accb390
MD5 e631e69efd633f3fb97a4c647516c969
BLAKE2b-256 130d8d5bd0426cf81ff3b58f2a817daca2158a009bb53d1af7b45674b70296a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c130851dde27349ea3337aef3e8e7ac673f0f4c029aee4663ad64c84cea74e35
MD5 b7e1d9097724ddce29292706b1f34abe
BLAKE2b-256 3c4f37453a59cb7e2d4817de47dc4521711908906830bf01981bbf847e8b8551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39b5e79faadb4bd125296e651bd9713f95cd7e7d2e86e7d666df6d2567ef9a51
MD5 9434dc76dc0b17bddf02e4bccfd4dcc1
BLAKE2b-256 da5af041d23bece220c65ea279e6c788760d8ef435ebbe58796fa25e98dbe34f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26669492c01e8b19687f03cb3559d3d0ecd11fae7f741b1df275f0a3bc1f2fb4
MD5 654dcfe4d9797365f0a7fbad256c3d9a
BLAKE2b-256 54144b0c90d3dd8ec40202596fe6191df1677c53e031649dc2d8bcc5e49f2ffb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 89c94673b1e5bc7235e581924d9591b73e88c7b7914c555dd334029e9c58983d
MD5 61a1253185d94a8ee1d079bf55bb0215
BLAKE2b-256 22443a0240550fc2f1f7195c66e383d5c7cfb9df29b9a080a4fbf4fcf3556ec4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.9 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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c680257f3f1d278965e60e1cfbd84d17bc90d4d1e8a45ad55dd8f84f04bd378
MD5 e07567250ce51d8b10451d74174a1fe4
BLAKE2b-256 fdd340080cf8893455191b4998bc1099fdbbe7dae080a6dd3dec49582ec7bdb4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 10.7 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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3b8a361618ec5dd83c40ff227fae17b07270ac401aab9c3954f7cdf425a370c4
MD5 33c2ee6a28746d522afbcb91314a18dc
BLAKE2b-256 5aeaa225ddb109ab89808f30945c693c454026ffbb4b9c40582480dd1befac60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52f7cd9b0d12f174a1b864b3f6a123d6a3e7102141b3518d9cafda3d887ba97f
MD5 5f71b78f33cb0fdb877168a8d2020132
BLAKE2b-256 40a87e8aa1120de43663831c6b73d9346cb006fdca3d213bfecbd53095b82b30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f89ed8d9dcaabc920c9b8cde7adeabfef9fe9db98b90e05385febed17184fe01
MD5 485cafb7564c155a2fa9f981bdce56ac
BLAKE2b-256 9a067cddb0a965de837d74ed8b2d0f785dff35de1940ad24922485fade2ac16e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c9e1bf676f75ff8308f5a6e0a75e03f155bf36dda199f2d0762459213f4ae1a
MD5 b48ec1110260a8f6c655409ae2b0c314
BLAKE2b-256 fb493474dc76637a72c0ac11b7039bac193ec2098e2ece9deea50ecaf1d29446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a03ffd73fd4cddfb9df75fb01a8863c2b636d13ccd037a528c0090452515a84
MD5 fbfb78a86c28031db45b776945d8f107
BLAKE2b-256 9dc72a27a3910964d3337a25b1f7d7ff64d175718cd8bc3e0d374a73ff955b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a9bc6f3e07ffc72c738dd3b0a5e052b9134ae96d74114d5730a4bd046b12782
MD5 8175295d69635e7b254cf3ece76e8351
BLAKE2b-256 e378b1541f9464e0ad625139066b4fe123084682fc8716f72e2a798929b235f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 366c4efd8e1fbb9649ee14d415c6a0277e30f652a95d886cef1c6a6c46abf8ca
MD5 936d2e2ec7a855c306147b7742a068c4
BLAKE2b-256 8387256658075ae7114aa02df08dc77bc477b93cb20293ded4898c8e7046bd4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1efd5447b31f9cd02354cf46fd652012a78b1c0e7b3b970f26d874ec02ad698
MD5 2c4bf5f5e4a8b6c7c961c23dc9e01633
BLAKE2b-256 c16d65eec6df108ca2a862861be5f918d3235568878baf81d9291f36593a83d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e32eb60df5a879d38b624c902d971c3fd31bd01c6c626d2d99ca02389dbf9a31
MD5 969970b5b8ff0c2ac24aa9fe877009ed
BLAKE2b-256 895fdf00a325c382afd289edd0ccf44cc973fd869794e73592466bff223fa23f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0cfefd7e6cd18f9e6c36c3981e2b5b3f1fac71b7cfdc69e7d0484d8fc684dd0
MD5 eba199261ed93fb8840eb90e4bd5f83e
BLAKE2b-256 3007a632f6b6214bb81584bb3c5e126394c8105d4d166fe0d04292eea530a018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 763c0c085bdb0332219e3d1615031d6ede551ab066606f729aeb5a977d0b294f
MD5 d59abee0b31e63a2006cdfb11a890783
BLAKE2b-256 58d5b4c8bcf2fe669a48531dc3ff8232d8b380863f2e233be81749aa787c2caf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9bfd0869659059096418810ece3b8c523005f802feb8cba9bb11f823f9ab45b
MD5 14cf5e34b798754d500f40e8f8e7bcd8
BLAKE2b-256 170d68d688969229570a56ceaa0fd6764dbd0d24c542dc9857ac45db8215ef8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3ff86768e00afcfaaf2bdbca8bf6d6e500193c77b76d8de8415c4f546351d42
MD5 159c1f2b87962e944222368ba0732ee6
BLAKE2b-256 4d657995215527a1774cd36eef9d83227c042f24703764e5434a02e1118963e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1f4114e5899dec3dcafa2158436b492bc0518d6635055c3d0fb060dc4454b5f
MD5 f82e238482ed9a86c8a8441e7dd8b243
BLAKE2b-256 083be3f2ec803402566d094055729e0959fc2586057bd34b5e01eead3b041a97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 052de86c0c8f7f0b9b8cc86ff06bed7659db62887d36d0b6232773d18b614371
MD5 a04a24cb7021c8a7a3f87f38dfa48679
BLAKE2b-256 e239b5c37891dc4c67c5970aa53f44461066e68fdee1b2b144855a5561737be3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0fa34b217bfc91fb40b708c7043e2ceb62c32cada89995da4fc03bc1efc47b82
MD5 c6b97b1ee4c6a9d98d80c9d4abd17eb3
BLAKE2b-256 71cea70d3e97fa80351d6086b6a0d70ee8d1b03872877611828b3031c0f5ad2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.9 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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4b000591a84f487e3cc9dcc606acabc83990f29a8139753e59a73b28c2049819
MD5 29770803611fe858f71a59fc4a047c08
BLAKE2b-256 0d337d8b14d4873d184c1e5c6e34d752a9ab65ecd3a327223e89ab98063429ca

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 05e6c947873627b8283d9c1c014d2c9aa606d8f9028722419ab22f790f7b1842
MD5 685067bc990217d6bea7ef605ac66c5f
BLAKE2b-256 0d933063af73996632f9eaa1e8f4bae38a9191da914e2a3ff2d0be49d1ff7932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aee58728ca3335afb6e307b287eacd63581a8d5ce31127f00063609076eb1383
MD5 6dcd1d9ce233b893bdda44bda37c7f00
BLAKE2b-256 4b9f96ed7fd876052de1246b66115d595151147223a291d7e654d74d9208ebe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fa35dbfa626530e553f805ea1d0d97c62c1556bf3ffe4b37caee37d27c237d4a
MD5 5eec8d8fb192bd0845b4e27f03e06555
BLAKE2b-256 f59a115c20c3cfada956f0b045d5ac948eec206ad06441d3a6f2990b39a910f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8d303239a4a3c1ff13d9ecc993db499893ae165ffcfdda3a1c02a0004d73b00
MD5 108b382cf2142cabaea58f5eaee73364
BLAKE2b-256 944f4467837f8f2cf82b6d6ae8255fcb32f62548dec06917a7fc79ea28a34ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2feadca314dcc62411f60a896d878df64755be7271977d6f4b570132ba70066e
MD5 c8720c0c4295ed9db649114031a212df
BLAKE2b-256 708bf48eccd901e66f333499fdc4c51fafcd44c24ec8ca437982beeee94fb139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f2d91bcd04cc6db1081f63aed94b0e7841f369418fd2626decca009e03536dc
MD5 916668daaef79956b0cdd16c558995bd
BLAKE2b-256 8c2b5f900c10be9b66e8e9280a37dc1d98beae61dbd311e170f79c16d951fdf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 aef099d4aba6f4c1ec396bdae3e0f8eb89bfaafb7819a096d09cd380c9520632
MD5 ff52d08b85d24f348d00f918e2323e33
BLAKE2b-256 18905bae15e0eacc8c380c7533f2cd7210e0395b72cd2062d86ad062bee16ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6b0be882ee9ff7b2b1a0c6b532aae9ef9c0373c308399f9e8464728d4e60a50
MD5 0a911eee9265eaff204c762401be3cfe
BLAKE2b-256 c20ef2b8ef759656b4c43bf60519b18fb594bbe6b3a8160cd7c28d8b83fd1fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30202308bf0f92f47298a581ddeb4015a5cf6e2a47c8f7b0816c68ea975e95d1
MD5 ebd207e9c89786ddbdbcdd30d8983e90
BLAKE2b-256 7df87ab8b03c1b25d690dbaa45e35425f91358fc2e3a17f35c2df12d84b655d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5102f08221e56366f1f0d664d60e0b35a8b3142c848dc3e219e7e429a2f64354
MD5 d50f8efd4d862c15b86c3222181af19a
BLAKE2b-256 78fc97d84909cc3312bdb4d89f970fa5d678efcf0b00233bf62379663a2a6f89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3626717c3108ab9de996d36dc39a8285369f21d4e015f5055804d248d9a15517
MD5 fcf27234543d1dab8d0e27bf512acd26
BLAKE2b-256 73f0ac14937d3aebb99d9d9544ffca7f816e558016fbb03f7dca951bcfa36b98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7bbd76d45911f856c708bf594816f239bef735b1be7635a56e55b954a071783
MD5 102926c37cef9979c72a8926abfbaf88
BLAKE2b-256 6314df86713441ac9d77af8c97aeac38d6adca9b5c049cad598d968e6822548e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d64f93381ae206032db55fb3e3e0b2f7006687e165dfe13abd641ca38798e21
MD5 b644576c2b8233b6c3819f1759b0c837
BLAKE2b-256 3de49083ccc3ba04a9d8cb70c82cb85ed4d5b36c1bb6cc75c46634a9caac1c6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2143b89751cfe3c852e6be4ce76a0bbfa200750af0a02d8d9137b08bef9105e5
MD5 470663d1c05ef3a8c0cd312221b976e0
BLAKE2b-256 7af732f7ddf1327c367b5780dbd6f311f025d622ffa2adb90d6f17eb8a40606d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43b45941a0fbd1572ae879c624117276362293688636dd72f9e9ba6d129e508e
MD5 81a9a319c3eb996cd2b7de4d5706d31c
BLAKE2b-256 cfed6107cddd1591c19b2874a8e42e132f649786883b95bccbfefb45dfecc908

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f5f5d472b8f8f2e8b8a46c0633e08992fa3b7c2acfae44807218e5c1c93e7f9a
MD5 1103d94c799035d469a2c0c76fbbbfdc
BLAKE2b-256 718d05fb29fd1db5f51e952cb5f1f147c6226003e04d495890aa7b8dd8eae9d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.9 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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1d815f0326dfbb6592e022b421ad381d4f8bf6a9a60460c0920ceea1d87cfadc
MD5 03b014a8db8919c8883e89428e096b26
BLAKE2b-256 00ed175e6773c2859e6e88c22164b81a2269f28434ddc17823d184416aee0de6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 10.7 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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2cbf6d39b98ef9e1868b3c5f1d2184c1e58cb9f2f40760090b154c4aa0c3d492
MD5 6bde956ee38ffc54a020d9e223777cfd
BLAKE2b-256 37d7bd6fffcdb36abd7d2bd908d591676aac782cba3fc5ad0c3b6ba68e97a4bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2beda92deb3f7b9bb779bfce5b492e6d71e031b25140608d6d8087eeac3a2b8e
MD5 49995163f4af817c320c494bcfa3a274
BLAKE2b-256 91233a0428446c1e53ff7fd33833af2c7e348035901af9f78f7f00313372209f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3d66f857c99dc2f406b8593c1084e91dd94da5090126f74bef2b6da3de70f4b1
MD5 2dd6f8fe458bef70ad53a3f51f09cea6
BLAKE2b-256 deabd68824341bfe27c34ca166dd0ff1523fb9ad228451d3bd3986a22e7b0f26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40bc61ed1362cc8ab49d1b681b4b03549ba7266492525d901bd98e228fb14cf7
MD5 a5b1b3b649201d3b66a9689f3e6077d3
BLAKE2b-256 2b447208e6454aa9a2e30159eea19ac07e229508bbb60430b7940fef0fc15e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45cd29c3dec73252c5c2f23f06b21ad226f6b05bbbf7245b9aa1a25d5a09eac2
MD5 7edf8d1d7413d9cca840153625c12123
BLAKE2b-256 da02e240437d4550712c30c11016e04f1027577283c933b90d3f21039ef17693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c70924ef106169a7c8c4c9c317d136d754b07708213fefa71702f17fd510c92
MD5 95382c8f634a4107e3df99c1d2a9307e
BLAKE2b-256 39eb2533315b9cff8576242cb0d72e50f9d53cf6c89e2124b1d5dddb6f19580c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 7836d69b5ccb463466c742cd9c4cb1d1f3349092d13b92076f1a3d40be16e564
MD5 c1c47c7032879812e4ef7893d2c175c1
BLAKE2b-256 0d8e7ae46f1ba01d86176a26ae09d898d37eb5093b2c829bd3a0dc87b3f862bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09b48b4504a121df7b6f02138a971fd2cf89032273c774ae281e4f0bea9a22c5
MD5 0b07d50ecbddef64e6c0ca26a1315594
BLAKE2b-256 b97a6f63443fe539459cad1006ac951cd63d94ea51f9e0d2671822d55c1fe6d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 369c9777e918a8939b092b732a72441810cdc08ccd3f489474b239829363c865
MD5 479e06537b1812d0dab0f39c658effbe
BLAKE2b-256 f727b4dedde8a33c8ee84b6d35cb7caca5c36d627198ff17a4f1303be89e54b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96eb99ae01d2b58ee177563625f25183c5db7ff1656c858474a363d935ad7d35
MD5 e838cd5abcae7277ee6b87b2297818a1
BLAKE2b-256 392128f9e97b048cffe2d684d870ace692f2b7bebb3d0c255be8fe166b62adcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e76e9438bfaa89eff1611086291f9a35bd705529df594803ef2c88431ec729b2
MD5 b514e2c15f20b330d958beb7d1293bec
BLAKE2b-256 e1b65dc035242b4d8164a36866c793d75234031410481fefcd69c27a184295b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0148d1c40c457d4623feaa8fc9e89665b7992c7438b986b660c662d2a6182ae1
MD5 c790516be1cbfbfb797522d9d00eceed
BLAKE2b-256 5674269ab455bce53fe550f3d8051a1530a7272e1edc017488415a44654417df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cae1fdec64113033b97e48cddcc95dbe20607782f3454025c321a2fdbc0d374f
MD5 2b6beb7c355dccfc3dc995fc1ab0053c
BLAKE2b-256 98d9be789b5e797b78d9dd38b96cc8311f30a73aa17ddd88d69ec9ed3370a81b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92283dd2b2391e600fde126714cf051d60409b20adea9a38e049b099bc326ef3
MD5 855575287d9e2f535240f1ee778ca642
BLAKE2b-256 7adf75a4f9b9429cb0c093ea37dd89f91dfc805c801d4cc7895103d6c3b61a84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4550d0c7e6f1de1c7b71e05e72466b43fb11666f34a35ad694a19815f6556059
MD5 a652ce057e1304faa29bbf1a35892382
BLAKE2b-256 0484ebf07694c187304959f720cbdd6ecb89567ca4cd243cd46fee5afe833a04

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cb71da843b6ce8bbd597b691e2ff5356f27f660cdcc63498a6de5cafd55544d3
MD5 be9ad76c7d68dd1e5e9d726ed182aa3a
BLAKE2b-256 2eefbe63fccf01e16dfa7ee4470cd1edeb7a44da266b8132fce0f763723ce315

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 13.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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f41a0c5229d71a20d1256244a24900667d55ba933c0ca4d749b331ca1562ba7
MD5 a9c866680ccf7c914752b065e754179f
BLAKE2b-256 984a764acdf9f4b5f5023e572611b35390591962759161a986daea1b58ef08ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 10.7 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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8493142d24209b616ea520ce385608022ad92da6c47c623d89f956cca356c6e7
MD5 5e99393d7e578418b7c5898b4174ce36
BLAKE2b-256 da6f255294347c0fb4258fd99a240570ea376e8a34e1fd21613d637cf5ded27d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6647676ddc3a04fd2a0ee064a8f7b8dd16012d8ceb4f0edc2907fa0be62df0f7
MD5 d1d6a4e736cc90de9bca7215ceeef7f8
BLAKE2b-256 0b96fc8e287e7a6ea945bf52a3dbac3ddddeb95654e66cdf71d829b70c1a7deb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 240c2edac5b75855edfc6bfb8120b8b0a92f48c7e5e1d4c1f4fca4025b82feda
MD5 8240b96e4fd2c3d5eff3123ab7cd09fe
BLAKE2b-256 48e61f75d302699bb5e4772b98d9ff30f3903467a6e03a1b78c04459cfa5aa1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04ffc38c80d35206e4e569449c8626a5c89df275b484f1f645cefbedb0511c67
MD5 7476bf2de9f59a550c6863631bb02990
BLAKE2b-256 c0d076c7a84690ec2a9534c7313ad930e03a00a312eb7eece71f6c9e083a4c3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14df1c4f1525718f26c1800a1590fc72d163752cd228c92cd390ea3184e7b4d9
MD5 f7566922c322c0683bbaec4a5e516d49
BLAKE2b-256 1c9f8a70eba6fa167713a0084d898e25898288fbe9a273005484fc19b6bb123f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 258a846f9a42ea443a762927ec8f17ec1f5bd6b8ade27faacd3fa265afd8267b
MD5 7c89c17d50d2df1a5d559d8548de35c0
BLAKE2b-256 526672030d6aee533d5902a3a83a6e8f4433c2248a3ffcf6bf4a31b9b2330e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 6f15386c69807c3947c6c4ba30a9fefa1ec64bb9d000ef9a55bc01ccd950e759
MD5 409e33405f7ee2b6fd914ade16bcb321
BLAKE2b-256 101652faa11e1b59a2cbdd3578183d29add09eb201fbe6e6ee85523e2f6a696a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5465e045e5d5f0eab42310748e349304ce7807120d3c3200d53032c68cb1c083
MD5 a057b17a784f79f5288e70e35bcb7537
BLAKE2b-256 83daab7f180c44ce040d17a4f9177f0d211a8c1a5087ce77478eb995c1d3a940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ebc7b4d77b29edc8c72b9e11b68fde1979fd4e2a293a997882b2feb1f2f781f8
MD5 27c60e53c4accf3b2dc53ece1f9414d5
BLAKE2b-256 b8e0f34629b47555be0b3210434202f9d0320f75b61ee614bed3390baabb006e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66ec0c8719e6e0105d3675fbdf268258ada83a70bb7922084a18c90207bf9552
MD5 f69f3f62ec1ebc7bf76ba3950250199c
BLAKE2b-256 da9ff26b0947bd89fbdca60feba3c5bae2fd806b6af064c270fd30ca1939b0d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00d1fc504ae9978c804e2d36ecdc6aa9da44c217246d9d0089fbf0b830fbc737
MD5 c8e65ead00120136a2dde838b9ffb583
BLAKE2b-256 b1de83475184a3dab6461cb2d11f79546a178e4b1bf9fe25e76d2d6b8d9a3366

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f179e61b141a41b04330165fe03dfa7a78c4fc793d91bca4a4894df99b230475
MD5 e4d4c9663129ac6171e1c3c9733e38af
BLAKE2b-256 9eedfab1f5f6735a61c2f5aa7c36b4081dafdf920f9e67b52a190c772b8de501

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 090484007fbc7efa4f6bf321d9b79db482f547d69cf03a752dfd637b9fe67932
MD5 297926b15a07c2bcf9db48dcfe679a5e
BLAKE2b-256 39e598e0620d7f119c018bc2140826c0b1f5d212a856a7439617ca6117a8c18f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca7ee59e05eccd889d7e319127f5a00d5a5be375129e186e79a8bfb534279bb2
MD5 e324440f650ecb929ab6b2320caf8bd1
BLAKE2b-256 c21d5ba8e63e6bf9900151faf64a50e98366729f5351b428379cbfd446a4aa31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ab94e476691dc863d6a26a0c1d8a9b4b498b6942f2b486e89574f2dcc298f25
MD5 eb8d4da56e32186824cb1553a2343a0e
BLAKE2b-256 b9baa31e0b4155bf63ff65edb5012d9637a84b89eb8b192eca7b7d6412c5b01e

See more details on using hashes here.

Provenance

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

This release

0.5.0 This release

86 files

0.4.2

86 files

0.4.1

101 files

0.4.0

86 files

0.3.8.2

86 files

0.3.7

86 files

0.3.6

86 files

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