Skip to main content

Rust-native CDP browser automation for Python via PyO3

Project description

VoidCrawl

Discord License CI PyPI Python versions docs GHCR

VoidCrawl

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

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

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

Requirements

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

Installation

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

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

Quick Start

BrowserPool (recommended)

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

import asyncio
from void_crawl import BrowserPool

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

asyncio.run(main())

BrowserSession (low-level)

import asyncio
from void_crawl import BrowserSession

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

asyncio.run(main())

MCP server for Claude Code

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

Install (pick one):

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

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

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

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

Wire it into Claude Code via .mcp.json:

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

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

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

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

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

Docker

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

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

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

Or via compose:

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

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

Testing

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

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

Documentation

Contact

contact@cascadinglabs.com

License

Apache-2.0

Project details


Download files

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

Source Distribution

voidcrawl-0.3.1.tar.gz (125.3 kB view details)

Uploaded Source

Built Distributions

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

voidcrawl-0.3.1-cp314-cp314-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14Windows ARM64

voidcrawl-0.3.1-cp314-cp314-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.14Windows x86-64

voidcrawl-0.3.1-cp314-cp314-win32.whl (4.8 MB view details)

Uploaded CPython 3.14Windows x86

voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

voidcrawl-0.3.1-cp314-cp314-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

voidcrawl-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

voidcrawl-0.3.1-cp313-cp313-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13Windows ARM64

voidcrawl-0.3.1-cp313-cp313-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.13Windows x86-64

voidcrawl-0.3.1-cp313-cp313-win32.whl (4.8 MB view details)

Uploaded CPython 3.13Windows x86

voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

voidcrawl-0.3.1-cp313-cp313-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

voidcrawl-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

voidcrawl-0.3.1-cp312-cp312-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12Windows ARM64

voidcrawl-0.3.1-cp312-cp312-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.12Windows x86-64

voidcrawl-0.3.1-cp312-cp312-win32.whl (4.8 MB view details)

Uploaded CPython 3.12Windows x86

voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

voidcrawl-0.3.1-cp312-cp312-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

voidcrawl-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

voidcrawl-0.3.1-cp311-cp311-win_arm64.whl (5.4 MB view details)

Uploaded CPython 3.11Windows ARM64

voidcrawl-0.3.1-cp311-cp311-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.11Windows x86-64

voidcrawl-0.3.1-cp311-cp311-win32.whl (4.8 MB view details)

Uploaded CPython 3.11Windows x86

voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

voidcrawl-0.3.1-cp311-cp311-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

voidcrawl-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

voidcrawl-0.3.1-cp310-cp310-win_arm64.whl (5.4 MB view details)

Uploaded CPython 3.10Windows ARM64

voidcrawl-0.3.1-cp310-cp310-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.10Windows x86-64

voidcrawl-0.3.1-cp310-cp310-win32.whl (4.8 MB view details)

Uploaded CPython 3.10Windows x86

voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_riscv64.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

voidcrawl-0.3.1-cp310-cp310-manylinux_2_31_riscv64.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

voidcrawl-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.1.tar.gz
Algorithm Hash digest
SHA256 69d2d675cfc650891cf8b09f3e26a7f529c69af7ce27f49d89c07fca2e16a0d3
MD5 35b5a39c44722c750ce891e6d514d1b8
BLAKE2b-256 da7159c08450ea8bd28d65a80ff5b81504ae1d70cf4f009b01c43fb1f895f7ae

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 465173365c96c841d63b35dca7de45f2a19b3ba277b413dfb5127fef2e66ea54
MD5 b74bda81c93b5fa2e9184077b821437a
BLAKE2b-256 67797f51db24a7e94b1757a48e63efd0850512fb1fd69a2ad96cb7d6c9a2e8b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 847a3aab60f2661887d07e2ed148593a766c6f3650849956741ce0c7f0030ff5
MD5 85f5e21ca7b5e46e86f3d3ed84ad72e0
BLAKE2b-256 d3de49bdaad36a50d4cda53cbd9cd07520da9d8a38850a9bba736cc6ff818661

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b9fe7c01f73d0ef86cfc91815a2d000e95d5faad49f6ec07728dc497ac3c711c
MD5 b476460096b9206b1eaa7230a18b45f1
BLAKE2b-256 73c81ae3afd8dd79303c6ef2a67c7cb1568b22950c2b31fc678338702ee729cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce9d496012f6ff7bbc2540ad45b873248a66a797efe77906cf17164681ec991d
MD5 620cad43e45d822b6a9f853994ba7cb1
BLAKE2b-256 4c42dea9f485d26681cd6cfd71c85a632be350841dc259ebd8ffc767d07a51a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d9a0de918444a8ff5a55673e85eb35b85e02744d622134c4116b05b8c7084f20
MD5 d74ac6fd7bde8e424c42805ff435bcc7
BLAKE2b-256 a53065657cf994fe00381c6f065f3326927027f939f043637f463455587feae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d26c18b06c542ce7ae2cb12adf518bbc6565d8a71f414ab5a9bfda09585ba6b
MD5 41c9b5a23f340f78353a3b1dadd637a3
BLAKE2b-256 b8461e7c6fc0d5e3357dcd06fabb017252d4ffdf49f26673a7827212438851c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4387c4e11f707b0b6796489031d8ec62393b641e3f15fac3ac37357b89628256
MD5 db1c40dd7fda1195ea18085e1f153ccd
BLAKE2b-256 6ff74eb27f98bed48ad13cc67b0daf91b001e56ff50c39fb51c311446e09a17e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd5b99ce8353889da2caa89a0dcbc56cab8637333a8d4e49b093f84043b743a1
MD5 94e0a29bad72841921364e222d2e3b36
BLAKE2b-256 59bd946e34c00eb92a6797517840223c85d9a25d452643c03248b970317aac49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 1e10d3349407f6a0fdbb86902818c0bbac9e0af7de5e5368fbc3bb62dbb9dcc9
MD5 7d0ace2b47786f83f80088889ee051eb
BLAKE2b-256 85e58ce13a18f037f52342255c6b90bbfb8dd53304951adf3f4e0eae708ec4cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f1e46dd80f9444f5fbca5848d22d678dc9165161f1c09afb50fb10dce313e00
MD5 17c904e9b8a998642ef5b96ac36d46cb
BLAKE2b-256 ef03bd964fbe83cd0b04994b2aeef6e2f175f0bdc52bfcc635d924ffd3b21852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 096d1785c376003688d5682f60fc2c2d6536e2ec304e0d40593cc550c1879e50
MD5 43d9d19e48668e054e980519092cf241
BLAKE2b-256 a030769f0816048956fa70b7347d413a7c8f5a201d4b21fa1d652a58b96bde2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b83d7f9baa2d253704136a002a85a279a7366b684929edb219521841718307a
MD5 fc23e6b616e77d3fac32f549ca10f9b0
BLAKE2b-256 252555d500a9d883e94f0d06b0a3c9053d461af236a6af64ec571c26e56f72a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94fc4ca54784077315c791002c6ac844cc8e307250a2625e557e46ff1471fee7
MD5 77d61b2bb6c304653fd9e49575cb3b0e
BLAKE2b-256 8227fb8ac7c296a28d0f5b68c3559e937ce23dec3e8e8b1d41ded8a3f333b70f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 594b8e26782bd81189b41de01eb6656fb792de14cc68eded7c8095e55bcadf1a
MD5 d439e783b2fac1935822d63cecdc0be8
BLAKE2b-256 57b4c704db0a65a50aa99cd0c986dbc2dc8e981fcf9b776dd3c6bb34ec698e43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 806c0bb3594d5046daa5605f8ea95b23f496f24b002b23e48025c275d5efbbfc
MD5 5c13c4e5a5fd88152cbed21de8cee25f
BLAKE2b-256 fec46731f9ccc2080d4f81349414cf080565949fd72d7673e4cce7869984da84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6c2b825a79f511a865cd25e5e03a56f9d80e48049bb4145abb5ea02b94acfea
MD5 0bf44fac70f9114c1c5c8d5f74660318
BLAKE2b-256 c5ee43568e0e593cc17ce19ef444dd5635c0bf1930cefded9bf3d04c38f3cb8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36602a1a46b2b5157c53ea0b7aa07beffaef6693f754fb31bb69c3ac89736f04
MD5 3df37564c4016d6939b0a6d95ff60131
BLAKE2b-256 1456bbcbd6e6537321d8563bb8f8c86c9bb1f8e9b605b9382cf232a39cd81cc3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cfd625cc6d42e1a0d25781cd36650380356ab1794d181e5707d51fba0c26fff9
MD5 cc4be19e76e8d09678215215905bc1c9
BLAKE2b-256 449f2888b6a720bf3f72829d60b0633a60453a93f9043df34dc16d3873c7ebab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7ad64bec10a27ae81075a63ee5fcccc0a38f72731be7d9c4b71261d054ff115e
MD5 58ec3e8cb21639ae5c09ef348ece1915
BLAKE2b-256 e197d80af51c452a63810270ee683c1e034483aa044dfd6b84de6c7af1cba0da

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3e16466884e047f39fcf5e16ed392685c20e1143095bfbbd24f58391dd20f6d8
MD5 f94dbcb2e08e13af409b146e74fe5702
BLAKE2b-256 62cd7e4e67445e278fca3027695dc0fca43e4465207ede7f3d6788960d682be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86679a37901519bd641248566decc4fae03e40b18487b030d63dcde941a8b62b
MD5 1ba6e37f58a24a5b4369cffed63cba2e
BLAKE2b-256 84c76d0e06805e534b595865c108043bd523d995d455802e8ab58bd5c534b963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b1a602dad4474dcad3a45b42a5673a1a68711858657c8f34119a0981bc963d3d
MD5 83ff828e1b9f052d6e69fec57030ae8d
BLAKE2b-256 67ae6de73f9a74ab7cc3381b1672528f201a2f4a7253df545cd54d0bf05f2e6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 069ef29e01cb42a1cf8fc5b4665d3741e6d5411a85275834af6d99c587726b2f
MD5 2877fcc4aa0d54fb30cdbd7137c1447c
BLAKE2b-256 81d83d65821e485d6849bd6716edbc96bbef3b85b1a5ac7ee9b2995e21ddfbf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 411c5866f33eb1da7dd518099a67f72b0ae70620e3a1ecc68c271b8c9ba5d7a6
MD5 7f05b16efbc9f2c10b7d9069c6479688
BLAKE2b-256 98437c61faa32947c6fd3cff81ca65ee0e8de6713ada6294493a03435d9409f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf18c0a3944a8054a8a7bef66a259a86bfd54d49a5cd143dfa0418afa078a820
MD5 2fd921200de31b9e909ba0f527701648
BLAKE2b-256 b75284a0b572baf01b0813ea8b7f2f07be375491109afd291e8a64ca71ad3fe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 858ae49c8ea34331970a48648f8449baf6a1d603de4a99b6fffcbbd09770c511
MD5 bf64bf3e3f16b223c4d3a98dad58cf1a
BLAKE2b-256 d5c46cd0a0cb7d04e4709ed7be7fcb388091646462b2134546ecb294c6f64529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 088c5f5d5f8d483ddbcc450d8df06725dfe841120165e57ae67985bf14b7dd18
MD5 74ade247d2863867b655c749b4a1e3e1
BLAKE2b-256 eb1010df70203c9b5dc2d5c6dbc9e5eb52dbafece031f0e95a3e5bcb41da274c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d560848706c6fe7d9912d92917eaf7f8e07450b880bd09145dce7e7785d862c5
MD5 4d8927e32abced652a8702b8aaeca09f
BLAKE2b-256 9d2f684bcb9560d669ac9b92d35f26d38d0a60dc9358fc441782c794b1e17b11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82dccc8b2a9d0df8cf4eff2669af621bff8c71c11eed8addc3ddc4b0bbc00a51
MD5 bb101ea03c80b0b4aefe39ca3dc2a3ba
BLAKE2b-256 9f90de4d056605cd75b5fe1790089871cef191fe2b887ad87b2e2bee1f692493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51693d44629c14560338b55319a962a74f073f49400649f04dabcdf7774d40d7
MD5 3e872eadb0de8b948991ddd5295e7bc3
BLAKE2b-256 830d48b4fb8236939d1deef7961e22121a6fc8ada54f222d480e0bdd06a46889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3461189b2f085af06b13357803a305a91a292acd2a23f78b6cc29facd7b047a7
MD5 3b27db0e01958913510682f3482f4b09
BLAKE2b-256 98416b1549f193b0a66cb8e6cfcee4fbbf69d25ff649d554b0bd9f0c474a329c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd14b448144abe0892467ab6c17def9d676f7adb3a4aaa6e5adbdbd0a9345b21
MD5 3a0cc3107c73aab714295c12918ccc22
BLAKE2b-256 9673aee0b42b85005c3caf941ad022d1fe5038ec701ac683fe297aad12809201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c612079acab28f5ced7e2c404291012b78c3256bca5767988574a3f997762ec5
MD5 2d29e0f34e8f7e0d612335042873512d
BLAKE2b-256 9642c6a69c89f0110c92e5f1651169b76ecea5874e0c397438155a65fd02ac8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d685c8ea776482b8eea096b1d22b21a58a09a3f0184d1d4bfa8bd25bc39d161
MD5 53bbe9e080c79a27aa7ba7409c5f1b11
BLAKE2b-256 68ba9938b7ffd2ff87c12933565aee1a9e514236640664fba4202d7cd7c104f4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 920a575f4e264b71252b54d04de48a8c13e26f852eebd3c01e351859ee3a3006
MD5 d32328d42900071b095d961ce62b8fe3
BLAKE2b-256 f46963ec9f1e0b195aeb89a9876f3811fc2b035a574122557d9fbc5476f1e30f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e6e25c82a8253468e32a531af15464bd3f42a1c6dde7fea839e889917a53db6c
MD5 05ef4101d465df155fa09d6f667c0301
BLAKE2b-256 a895fc41a24329956f3435df092aa19b477e8722e1a669614e50c247571a3b3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 4.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.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b6bbd3b921c1649fefb95fd115b9004ef5480bf70c9cca95699537030e54887e
MD5 95b952743b1544ffac97bfef10b740eb
BLAKE2b-256 4dc29aa1e3291852fc11ae6c5ca9e4e9f60ef00d830185d91d44fb877ff8a241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 017fdf8fa27386398f933bf1f5e4ae4f3253698a8acc1e841247b5f1dbd568d2
MD5 53b6c09e03029f22a4008bcd8e432d27
BLAKE2b-256 89f72b8d3746e7bc3a2f9fc248d92009a446ea7dde0f63a9c2ff0b209f394593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b9cc49586cd9e2de94c9512994e6f55f70df6a2746d76cbc10a706c0286f9e12
MD5 8d8862f49d247e41ad340b423f138d4d
BLAKE2b-256 ba2a2504a97fe1333e7618dd57050e47924c049a61c465bf3e27c00fa4ca0456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c7d0d335b9c3c7661d7aafc8e9c97256be3bbf24b8c0985e211896ca82db268
MD5 4c26fb95835e5c6743e374fcb8897f0a
BLAKE2b-256 7fd909f450faf8cdf376565d1d95103c4789f397b4560e9d5a904bae6e54f150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32e38b884f80d41b068a17d1a798f81a305806108394366939b2fe5d2414428c
MD5 27f9f918b69228005ad4e79c8aef2043
BLAKE2b-256 04246ef0f354fe115f02018e4f48f8e08c2e8cce7201e26a7a15fd4b2d4a6e70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f85f296d51006865cca795d44c2221ad697c9ea1c4ec366d1c59bc258c157ce
MD5 6c335d32c3cab0f7cf7eb0e8e87d98cd
BLAKE2b-256 3eefdff040601047daebb83969110a5284d7982115d10b0e0ea1ac9ed5beaa78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ce536127f12ca3d8a9ed6050a0b686c72256904f87d3c655c36a186433cd8f9b
MD5 6758827728fe03200a09b9b619a5997c
BLAKE2b-256 a5874eab9e17a2cb711575dede42b4a15fb140f28984f7264ebdd5eaf845888d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5d769992a5d570e816ae2f5b435007f01efbb34e3cca8040c287e8d15f040dc
MD5 3a9948f0882d9178aec4222012b5f56e
BLAKE2b-256 7ad5dc878de114d1e040af73985329dd19c9cc8c52c03d088cfcbc6acb50af9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e67826523f188301a0e5943ec0e1f8d107e572c0afa53462ed28a383e376907c
MD5 fa48f9dd5c0eddaa3c4c70c8562fca47
BLAKE2b-256 a19ce39ccfc1f66e8475432d9f45487d8eb7ee2bd8a2dd1af0499384e28cf1f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a07d0635947496a27f3746d0600e5f3afce4b1ac0b14256ec28f64eb4fbde8fb
MD5 c7ac480403faf8c1791505966c07686e
BLAKE2b-256 b304560b3033c4042bae5a626dfd336294f8a96f554975d5c619683bb02620f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a08df4ee967ebece763300e0eec43f3c232cf895eb615b0c6129b1c1aa34b52
MD5 962b0f11626449ee625a1549466ecf9b
BLAKE2b-256 dc5c90e4892d5f82ebe466c267e36882bacf74e3aa98493792fb89b352752b86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9aef51bfbc6c277c2d37f5060b2bf39c914243cbdaecb62fc6e6738846a25a04
MD5 76e6c0cd2de5ff972d5a619635bc2c24
BLAKE2b-256 51e2c8040117a20818f1b5ccdbf50d203eca6f094fefd377a05206b9fc64ab52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b9bf4e3178c8ff8bd5b859687fc69c8a16884a4fee51f97c19a77459e850e99
MD5 1514afd64c86911f9e9ff2c8ff47de50
BLAKE2b-256 eb172c85e277c5d3db5d678b46f3e53f0b3732e5e01527c8654432068e0f55e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 253e6e9e903386921487d256975109064d9b54eafd4164179e08abf03b7e2cac
MD5 e41f5e5a1f55476237acdefbf589fb1a
BLAKE2b-256 3464019959d1bbc3dc62e325689a9ac82f084f0f1024fd8f98c7db7cc3d35e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c871419afd5a8cfa5ff51fb514541383d3bb59c3c1c463d58aa4dad570c2d13
MD5 37e1b1699e2c04d1ec3f2604422e9a0d
BLAKE2b-256 05ec9b4768c490f28f10e1549d5db49abc2006f2605f1b3091e65d385c9d6b0b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 5.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.3.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 09f30b89aac76ac17fd22b0281d0d03a40a38bbff371f6d2d8d0544a272f5c2b
MD5 943bd887f0c91cbe491de980233ab315
BLAKE2b-256 460029a0bb9b682eb72267a0f2c90d748f4ca71a940d65bc5e13616952ad7cf4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c1cf704eaec8a98c658ca750197a8a2d55f7342115cef8970923fc10af576ed7
MD5 d9f8131b40e7e40874009d3cd903ff6d
BLAKE2b-256 a6e240e85ae866ffd4c1d44fc8c726e033be4432b5c8bc9073a21e8ee8c5d9a3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ff9b5efb5339ceb089246746d90183c33be338faad598e203fb2bedbc39f2263
MD5 b1d4954cdd071e3b4b9735e0873bdb8c
BLAKE2b-256 08ad241dd48b8dbda782ea6d308f25c0dd4b1e156d3ead6f0c4c3b9f67131138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fb7f1b52abf1390e13d78da11b588829a1568951b18a9d753debdd94202d4d2
MD5 e0f789b061aedc4e4fd66667ee430177
BLAKE2b-256 3d277ef6e1f47caede4b7c3e921400612be6d2ed6403e293a8b43740aa3bb409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e5cd7b6a90f1f3e5789cf5ca5811c9c2edd275c52b6bc2da7946070ef2b5e77e
MD5 dd980e498e014ef7bfcafb88e873a39c
BLAKE2b-256 2f981090d6546f804688cec0c91a8dc3044e4dd2597045b141cf1ea5245b937c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb2e935a0f15d1328376af140e7c712217cfd78acc1c120bf592673bf04ff6d5
MD5 ae1b3b537fc8ea942b7ac206bb59a807
BLAKE2b-256 700175e80bfbe84051d6079b6bab11479cf873675155688306c40de4cc354f97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b5db2d96d08bf7a76e506f459f4bd3454cccee23adc106901f564918aea86e3
MD5 81d6ebf667dfc3fdf3ec6cc1131881d1
BLAKE2b-256 9c0ef6f08887c8ab107cae2868c609e1685359ada57ecf491fbacb04f2e34c6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a95d044b200326f813db63b5f41e00ed7051bc02492f945e17dcd345743eb00
MD5 4f54cf14ad395193aded2331108176c7
BLAKE2b-256 4350e72b4689b60a95d69f440bdab100b876bded7e7d7da648aeb90a80cf6af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 59db14c7be5d5f1edfd71a7f22caf3d333f778d5271488d09a4bf7a68ed87eeb
MD5 61de9a97cefb5557756aeda6aedd9d60
BLAKE2b-256 979966093c1d3e3bcb033b965079f4980152ac87c9121285900a950c8622e494

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78938fbbad32439e908b71610ee1c661362065d3c68a7cd8c1d75260bd8d6aed
MD5 4152fdff983c7b180a1461383a88f952
BLAKE2b-256 554ecc03797898ae61df9ae568f8d22ec8dfa560e1a3418337c2eed7995aafa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5a1be05f46902deb9c41ad64bf990ebbe2654d4c6c52a69599c145dbc3521b6
MD5 565d69ee8a0b8bb05ef09f386393c7e2
BLAKE2b-256 186a8ab22ee272676c02609a1dad4cf993fdac246434f92a2741cb431c48af02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c046b83917c9bacb01ba4c7ef9c43502cdb3182c20213a870dbf480d0daf80d8
MD5 18c4558a8172c32a00dff9105cefe225
BLAKE2b-256 9776bccf496ce179075edece357346c0bbbeb241621089916a11b56a86cafae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f87ce10f4153f631f2f1cffc01eb4ef66c94b5836a3fc73ce0c3ab35f8ad0f22
MD5 38c1ddf1eedcfb65d37187e3acfc963e
BLAKE2b-256 008c14f0c3113777032c031b52b1283cb4aa8cbf9b4bea97fa3593f19e73080b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c0ef94f04e3b4dd804ff986efde4dd6fe127c7db21d601f7e54d62044231ad7
MD5 56ebbcc8b6705e144f583f4d846fe714
BLAKE2b-256 3c7b82ca44424441fecf3767bfac645a9a85fda078710632035aeb62e4ac3403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e48cc65900fa0ee4a4dcade60238ee52eb43bcd9025db0d0a3bb95429b6d76ee
MD5 38e3b450e94569e24934a09b97b0ce55
BLAKE2b-256 50c2b60feb9999368fa29b7aa35e5c240d7cfe8c24ea29c6220fe5b47c70efc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50326b3e1510d46d2ea6fa7b99a616fccc2e335715c280b25f375f598abff7cd
MD5 fab61da899cc83d6939d1dee19a3f5e4
BLAKE2b-256 a472264314ee43989a2c9d483bf81b48cf1da9084957c7043912018c45b8eded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5176731b709dd20061b19cbbe7092ef198637afd2dd57864350f2c6b43503f81
MD5 e309a6951f254e096432e1f93c06d91f
BLAKE2b-256 435114d24aa052a5e43003329d85fc41304e523866113a7a512958a988d41fde

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 5.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.3.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f9b0382d586efd434c6368b3928d7ceba9f678f308e19e50c0532391c397cf13
MD5 f1f08e106d4db81911743833a6765436
BLAKE2b-256 14cab5e4e88a7faa3aa921833cd4cb0a9d8c99f247b7aeabd63cd8449541a69a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.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.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 efe606ecc6bfbd326e1d3bafe6ac907f7f46c6652539b486b21e8fe917517faa
MD5 105d160cf68a3d3f6d86e1b049e51dbc
BLAKE2b-256 53300c0f892f28acf76a70a2bb7b5490293f24ae169da9e69bc3caacf5970bd0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d0b74885e6608be6cdd394de8fa281af663062a6a24814e783db11de7be66bcb
MD5 fc12e6cf6e2d296aac6ff552882e5be1
BLAKE2b-256 4b69f13f2671e24888ce86e0ab8677e0345e4190ee7575d35fe93d9d630fbe7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa5c7ecc5431937993f45fe049dd73066d18421bf7c5839540efdb997a8e8403
MD5 b7dd57d3d32598fce496bf600ac5d28d
BLAKE2b-256 d773f790e98f0f39fa5f4ade014e9e750004afdd0a5d0e4d2944bbae7ddc0a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 37458d156ac3f0af6e09fd4de7425cc69f27ae7e089ff85b00f93f5b0c460796
MD5 4e9b3ebdbf7b9ab73cda5fe4399184d2
BLAKE2b-256 7bc5b8164f54762f65d763b128c785946b2490f36bdbca63969373a1df31ca61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 163cc1927f3ef0a194117a3621702edc1106956f47185520061d0891bb7407c9
MD5 399fe9ff1cf3d34a5a29ae1c594270fc
BLAKE2b-256 e445b89f9b3ac33a60cfa409c49f6a05700f4a0d78c237f149b21e1c45a3a305

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5e4c25cfd5f829c17d5ab6b642f47c1a4bd776d571bae3e546a409e15cf1a43
MD5 8080ea10624e247e49c3972cc01a8f88
BLAKE2b-256 c7ad7c81450252af5d5efde0ba1f0e3b1e5bf1db1119a67abc8104260178a8ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bfa96fcf37a4398b912fccd6296b9e41a1802945a088db1d245f3f11c060e19
MD5 18ed6a83f14c66116e9d24ee68892e6f
BLAKE2b-256 729bd59952cbd31d2c560d6a20f708fe090cb7dc765f017e1f1f91e8cde7dda9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 01050bd218b3efcc1979f265bad49913ba77240e2c2f203ae59c709337cc77e1
MD5 cbbe93b7329e76434056b9e77ab9c59f
BLAKE2b-256 455a4aac9b24623e3d1d9fe9e2dd7b754063d5974446bad6c7b1de8a08c485ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19b6f3345680d05aa5c793dbf63d44d4d08fb3632db21d879d2fee1aa6e46503
MD5 abdd8b059273fc91a2853e3cf589ef23
BLAKE2b-256 8ad001ccf5f3daf3577d9bfcf3493834667b709542c729c44e2845c2d9e11295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b75a69e4684c28fcc08ad0a469cc1a715fac1fb60fc48c00da7a8b1cf2d5a019
MD5 8be9cae12f1b9ebb0fe8177d1e055acb
BLAKE2b-256 a7c91612b8bf07d4df96f7b17a2b3fc1cf961f3a5273087d5c69754773d7a1e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e57701dbdca3e142607bcc6d170ccebcf80f81b8db033a14d96b33d9fd9c4f5c
MD5 25bfa04ec69f3adc6736f0f91d5a1780
BLAKE2b-256 694650510d026868d962bc062ab8a4ec0eccab07491873b1f916fbdfb83890d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf38188e397865a46343006cd4780927bc36f8c8de90fa9029300e664550de36
MD5 aa56f6c15f7125fcd72451f9120e1629
BLAKE2b-256 913d74f59ad2740abfdfd3476714830be3c185ebb52e8c76f80c699525c17be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 610c721028101a565e10d0097c2f9dd44fc4aa94c39e4af7a5a61f9928a0840b
MD5 52216829f0e0d2bf14c228aaf48bf670
BLAKE2b-256 ce89a1c7c839f67fc29a9e9091955bbc63a1bc36706fa86dd8db2a73b57ab93f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be764c129d8ef8098181c22db6e2a8565260e8f0e1da98a9aa05162bb4da2979
MD5 d3951752f0c5ae9f7b42691ad8705cf5
BLAKE2b-256 06cd49cdd77defbd764c3112054826e48832b9412309f67cd1baf222f628a585

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 100096022a9aad9fceb39ab2495e31384012589f0498a1fbaed6dc6fb381b100
MD5 fb2fa603e1129749a5c52b885055ee36
BLAKE2b-256 782a12aec419491d7b12a6098f89a5a28c7c8a399e7a502eddd361bfa243bc32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a592238d6050f00b55915ed1746d818450e8662f53de2c9981217a6bbc58524
MD5 931087a835537b1bbd1e838e5f6cce9c
BLAKE2b-256 005360c2e58410b948848a76d456b8b30d60b1e9b54cddd43c3238708af0faab

See more details on using hashes here.

Provenance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page