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.3.tar.gz (148.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.3-cp314-cp314-win_arm64.whl (9.9 MB view details)

Uploaded CPython 3.14Windows ARM64

voidcrawl-0.3.3-cp314-cp314-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.14Windows x86-64

voidcrawl-0.3.3-cp314-cp314-win32.whl (9.6 MB view details)

Uploaded CPython 3.14Windows x86

voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_riscv64.whl (13.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_i686.whl (13.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_armv7l.whl (12.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

voidcrawl-0.3.3-cp314-cp314-manylinux_2_31_riscv64.whl (13.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (14.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.3-cp314-cp314-macosx_11_0_arm64.whl (11.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

voidcrawl-0.3.3-cp313-cp313-win_arm64.whl (9.9 MB view details)

Uploaded CPython 3.13Windows ARM64

voidcrawl-0.3.3-cp313-cp313-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.13Windows x86-64

voidcrawl-0.3.3-cp313-cp313-win32.whl (9.6 MB view details)

Uploaded CPython 3.13Windows x86

voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_riscv64.whl (13.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_i686.whl (13.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_armv7l.whl (12.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

voidcrawl-0.3.3-cp313-cp313-manylinux_2_31_riscv64.whl (13.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (14.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.3-cp313-cp313-macosx_11_0_arm64.whl (11.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

voidcrawl-0.3.3-cp312-cp312-win_arm64.whl (9.9 MB view details)

Uploaded CPython 3.12Windows ARM64

voidcrawl-0.3.3-cp312-cp312-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.12Windows x86-64

voidcrawl-0.3.3-cp312-cp312-win32.whl (9.6 MB view details)

Uploaded CPython 3.12Windows x86

voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_riscv64.whl (13.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_i686.whl (13.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_armv7l.whl (12.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

voidcrawl-0.3.3-cp312-cp312-manylinux_2_31_riscv64.whl (13.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (14.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.3-cp312-cp312-macosx_11_0_arm64.whl (11.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

voidcrawl-0.3.3-cp311-cp311-win_arm64.whl (9.8 MB view details)

Uploaded CPython 3.11Windows ARM64

voidcrawl-0.3.3-cp311-cp311-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.11Windows x86-64

voidcrawl-0.3.3-cp311-cp311-win32.whl (9.6 MB view details)

Uploaded CPython 3.11Windows x86

voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_riscv64.whl (13.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_i686.whl (13.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_armv7l.whl (12.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

voidcrawl-0.3.3-cp311-cp311-manylinux_2_31_riscv64.whl (13.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (14.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.3-cp311-cp311-macosx_11_0_arm64.whl (11.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

voidcrawl-0.3.3-cp310-cp310-win_arm64.whl (9.8 MB view details)

Uploaded CPython 3.10Windows ARM64

voidcrawl-0.3.3-cp310-cp310-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.10Windows x86-64

voidcrawl-0.3.3-cp310-cp310-win32.whl (9.6 MB view details)

Uploaded CPython 3.10Windows x86

voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_riscv64.whl (13.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_i686.whl (13.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_armv7l.whl (12.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

voidcrawl-0.3.3-cp310-cp310-manylinux_2_31_riscv64.whl (13.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (14.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (12.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

voidcrawl-0.3.3-cp310-cp310-macosx_11_0_arm64.whl (11.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: voidcrawl-0.3.3.tar.gz
  • Upload date:
  • Size: 148.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.3.tar.gz
Algorithm Hash digest
SHA256 2f61eb3b5b9f7cf3bee3546ad012c29d640c602737c96ad181f3d9379b11201d
MD5 d0084c53d3a6e7906d24dc76390a104e
BLAKE2b-256 cfece9f32102bd424c7629a117d03f9d0a72cffe364e5b291ee8ae68b010aba5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 9.9 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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b1ee85a21d8071017c446f2e0ff8c16f7c415a752fbf917721b254f6bff06842
MD5 e78a0966ded42a818b042b597c80bf6d
BLAKE2b-256 67729a8474197a2116ed4a8c20f6cd5395b65ad30a87c3d73e1d884117bd7f14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 43195d5e808223e98f5e3cb3268aaf641d538e0d332ce11f6d78555b98717e46
MD5 94abed581c9ddddcc175c4baa68e0278
BLAKE2b-256 0592cce2965bd35b550ebdd0f3a1b88fb1b233855c7473075956874b16449c19

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 9.6 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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 86d555064358f6f9a7ed8290ddbefbc35c4bdf5cec47000f2b6d9bc86e28772b
MD5 68cef52539f7bd908277f9a48fd59ee3
BLAKE2b-256 2ac6995b5d1e6ea4ae7522381576fa2e3a0b4c8b0eb7260fbc6fb7fd7ae45a22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b50100dae660244921a1667d278f42510f61d97f1289388e8532f8b2f2dd44f
MD5 eab9bc994f927d116bb0ce66746c1a53
BLAKE2b-256 f48d41fdfb7fd8a1eec55507d8e1700e8659969c175b54ab80f468223df00b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2a034f9a993fc9b917b8fa1257e461193fc3956de2cd1630adc2e4540da8073b
MD5 89250565e8874fc515d8fac39e99f0a7
BLAKE2b-256 1c4fa2860cd5994d55ae0aa9ee76a11107c0c5c2d1956e536ae8f85261587870

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0308e9ed801e0c3150b72f61d619de5fa3223201a105c355e9a5b752f866e222
MD5 4ce06f7ceb9f9d90bbcae56207df1460
BLAKE2b-256 6ca948da6f411a5095ef7c571f3c80fe94dea0f229ace55c02048be7a61e8d58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4805056f8c7f19b7b061a1ab24f96b68dc2143dcd91b9420e0a63a8214484859
MD5 b89ddfee32a99c2ec92f781ec8cfb859
BLAKE2b-256 dbf7710afae8d706758712d00a5ddfa3c0ac7f15dcac8fc595798bb242662e9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc28ebf2bd7f33e53c3dd9aeb59f571d7f8c5cb272bbde25a1f025d23b8f6034
MD5 af10e83e019a2c3491b90e2dcc447b22
BLAKE2b-256 6ed1bffbf24ca290fb0d5c7080852976e9812f84685361244fe2aba0c34c324d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 145de0a295ca87aa13032173e14d13a03b1bc8ea612343946b540c7bdfbf880b
MD5 de9313e29589791105657b1e7dc2365e
BLAKE2b-256 cb377e46a2ae634ea1c35400548821325639343b60b01366d5d227a7eebc07da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10f1e9b21cfc58c08786217ad557b55f6a1c3834c76822f4897315c26f1f32f5
MD5 2d14b4604fc7cad951394f855cd50e02
BLAKE2b-256 12a817ff460443b8bcdf634a044625c0153ac312e32158947378cedf30560c61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6957eca9b0c5e5050755ec3b5b929f6ceb447fa03f4b12fd2988f36e72c6e16
MD5 c2134a60f7bd95769d2d89001a5f5487
BLAKE2b-256 e58c32f56f235ba0686da5fc498902f0ef661961f6e7fe3d0ca1cef3ffda69ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0c52b7bbca52fb6f4e6541296509121107da9200c137f47bd5f8f2a4d5acfa0
MD5 2e22349b938793ac7c9768dda369b2d5
BLAKE2b-256 3a84cdafd78eb4ee73d4e2901d5b31ca04d3b9f0fa318a7af40cb7a97ae03644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fb4886c23a8115fc9bc2fd01315835f2ac7256c8603466706f1157357c272c9
MD5 c7048d1269cad857500e78e227a6b18f
BLAKE2b-256 8c8adf4197610dafa65d054b8e7e7418f7e2adf11dd1dc54b14d80a52d4f5eaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74c41309488a9fa8ee023ab3298b2aabcc25c64915e15efd2d1cbad5c10ba5d1
MD5 e3a50f146bf866d5f24b48e6d88abf21
BLAKE2b-256 e73bca0cb03b7aa7e4b2d6e602774dc7cea468c16deca3a67dd88cc7393c10ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57c3ea7b2af2da35c92c4d6b908e9d15dab8b4fd73e66754b5ad67fd257b82dd
MD5 e8d844c894d801937dd8bf5a2ebc2020
BLAKE2b-256 902cc0b0eb8c47636ad25467bcbf99b2c04f52ec406de43eeab9df7bdf552262

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc02f6ef1194d870e7c9c25e399b9e7fc130d6cb7a521ec124a9ba5b0feca6dc
MD5 9edcbd251d6ec568dbfaff23f2a942a9
BLAKE2b-256 dca7e509f59e0613ac551ba08ccdcbb89aff256c65528c8821af1d019c0e0a8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19e58ebac153eb86ff513c1415fe629e5cc4d3955dc3cc3a872616bc36b5d342
MD5 9617f9a327c5cf247fe439a4308104f7
BLAKE2b-256 50c610f4f315c8b3419e9f8f8717fc259caa28e88867c0365391e3c39aaecd00

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 9.9 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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5bae17dcdd1f26071898ef67122221ff3ae1b14145522a3a92315a7e852384cf
MD5 12b174e1cc93d301642d206ab696cc74
BLAKE2b-256 454a3f97cd877c1a4683d7121854f5435623be8d9c25e9d4499693273d462c19

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d0b8bedd75e2546024fe3f9997f78fa3969e0cfc66f31c09306c49abc2a897e0
MD5 7d3cbcc1fcc85609c10a39fc3f2a2a5c
BLAKE2b-256 67457350978d7d874ea7ec96379593c6c9105ad42a38c420ff4b7cdb8d03b312

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 9.6 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0b584ceea1a776357b40b19ce87a7ee1f26412ddad55ed4de18ff2a05f758ec5
MD5 cc0f89ef80fa5b11dcb264d7d740fd88
BLAKE2b-256 690277048254b86c7e68240f860a1d1f314bfe1a3e534c808dc56b081f28b2e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a47814e9f413590d1cc4e1c8e5aa42845875e7029958eaeda5dec59c7598936e
MD5 ca9228ccc5b8bbc9e0a029743c2215b1
BLAKE2b-256 6c959c9be2eb66fa1f5133bb2f27a807081229d53fe3da312795ba7182f0a564

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0c11129a50e56ce2fa0b8cd5a03234d3414cb32d36eccbb205e87b40e4f4982a
MD5 403f1c0a17294dd2773eb8a9b1a49a30
BLAKE2b-256 90f4464d1f3c9e21ec1d0297ade472b604a5a5ab47d9b50673827aee42054298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c1e9d9e487a1796770a4c122ab848d35d696991d0ed7a060478334895dca9c9
MD5 d40353b5ae31e728d072cb7132896631
BLAKE2b-256 7bc5fdb782aa239b35a86a864bfd3377b2882a516c213f53455ff5c3c4ca11e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11f2189cf1a11ab036499ed8538bab2aafaa60afa7791676367cb999b7e1ecd7
MD5 2bcfe0c6219c20cd65d5395d49e3d9c1
BLAKE2b-256 1548163e6244b49e9b2ab045fd70e3249a8182c69d1829104e86834075f37886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f5263b65e7405c7ef6df43003930784720676c9715611f292faf8bffe9bf24d
MD5 847047996b354306438a1068dce134c3
BLAKE2b-256 6c6923f61ad566e722779468e3eae13ffac6ab4ce6785e900a8bcd9e1309cc06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b24e93f9641e119e50a23a73ff0e9c5b0c703147ff7ccba5f8feb5ad600cd5b9
MD5 9179144be597dd22aeb38ae4c86f7860
BLAKE2b-256 b007d7e7235b93da71f28966d8342257381b2fcc2e686418ecb3b869488843a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cb14fa1ed13426209bc7eac2ac3d5d90e94ae5e827a5ef771f7b62f86a5cdcf
MD5 9a990fb0b10f98553c2a8e76fd727cd4
BLAKE2b-256 edc52bebbccbf3b31429e45ac9916f72e71ca381fc4f6ceb340afbe05ae78839

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fe11cce38ded66918979c584164c6c2d25d106e72793b9199e53952fd0b48b5
MD5 1802e1c46f4832345604282e854c3048
BLAKE2b-256 1a80cca221bbfcae0f5b3da3a99ecae863f70dfdddd4011fb78032dbd540c720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33f7221365e2dd4604c02fb72e95d056c2d5ad1d22fb9fdf2279fb05e3712573
MD5 5b460705f9e6d4451b378585b179e882
BLAKE2b-256 4f961ea235b002eb987bf7f789fb03415cea88f7b8e066436a6e1e11bdcd2400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9c5ccba1956fd0700e08577bad8636f8a5a101d87b996f9f94e056b9a683f67
MD5 af1dade9cf28a93bc9da0c15e9becc6b
BLAKE2b-256 601a79e9434af21995519f1b7580913281a7f357ae4401831b9988b10fb55844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99704dcdc0cd02d04831a350fffa438a6f13c1e157ba1925a80fca0566d63699
MD5 c045229ca0458822c9c6e5e6314b8732
BLAKE2b-256 8be6eccf3d0bc648c8d897c702809b66c922ccf46c532065942b9e842507180c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb117240b91582f600de530a13e42d94334cb4b1cf64dffd3fbfe46e79456674
MD5 43bce4ccab740a7f952c044392f51718
BLAKE2b-256 67855922a7617fee6567d008e4db191ef3803746de73de80b9d2378d48ae547f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c12698d6b5add09df3b389b3d38837566443638d3bb132a1b3d14b8263058557
MD5 1e89d9c37519a89a50d3e589193a9f3e
BLAKE2b-256 b67dff50203155441798a745ffa51615f5a83bca4ad3560afc9243caef5bafac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 127956812d5f3147a0d4c49bba8b33c11e24efab60c4f596af566ebdc2135f93
MD5 8376e9e663e0a62ff03bf3102f33331d
BLAKE2b-256 5e6474e0783ccb9fc6963106ee61ee4f319baf1974fcddd4c993d155aaedff78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 9.9 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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 440de11a8385aed84dc7b6c1436b0879fe4b3c539794ce8077cd211f39a250eb
MD5 228874eb0d39c0e18557b5d1c3d27aa3
BLAKE2b-256 05634c19ad39852f1122f568b1de8c376e08b2303b9bcd198384630e60eb1423

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d029c67445190950af244f64d30f93a1ff5f4a82920d913a0b277a9514e0513
MD5 26a9cf8111680d93cc8be085bc3362c2
BLAKE2b-256 350572a429ec15ef109bd8f6c3e972a32697d0cddc5747b15d1e2509649a52f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 9.6 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a5365ddb6ab0b00580e85c3f03595400a108f1e6d26b20b7da7b597a4f54c9ab
MD5 4b4c6bd782e3e5d8198ab50fb2ee1dfb
BLAKE2b-256 f89945206157867849cb870a3e1116900858e671407c47376ee82f658268a612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26a08012285afe22c6fb85eb7d8d429ee58d5c2bbc1d704bbbb75f7924c43e2a
MD5 c84fbe018ab38f564207cc78773de5b0
BLAKE2b-256 56c0332069cccf041785d450ac2d8e5a3c2654df327373c053c9d4b2506fd571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d908d0cc6dbf60c48dc389702fc9a22a756f7054a9e82563dd4fd09a994a87ca
MD5 1418c0b414635d420b9b2a681bb0092f
BLAKE2b-256 d1109b7a506aa10732dfe5cf35eb683587dece28c237a477003cbede18763837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a78ca3f21ee36c41a36fbd0494e26de07d07bee80b964c1aba27d800a796c0e9
MD5 ad071f52bda8532a4474ef647c4d5e5a
BLAKE2b-256 1fa42911cff37fbe9895cdc0a2c1c0d9e815897aa14a5b8cce428752ef681052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2c45d6ee1ad9428c3371c15c43e0ab55943e31ad3b752e672ae9e8b122968d2
MD5 55d933c15f8edbbb7bc1e61d9dde024e
BLAKE2b-256 fc60cb3e1f933ad0f8b13531cbf783edf8173ff124669990a59f9676e2ab06a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cb950f0e8b30359f8b44e3cf2eff9b06445a6745bb49d73345aa4de1ed6aa70
MD5 4b5c0c5a3e7f32927f7cb4ec2a6a03a3
BLAKE2b-256 74d6f1694554b67fb896edde38f4607c60f8e543f7a7f0b61ac632f33c8bf38d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 42a8d861a9b1e2639a9f0f4880fbfe4c0d96376aaaad263cd02d3318449fa3a9
MD5 9acf18e5c2265bc320ccb5173b2da7f3
BLAKE2b-256 c35c069b157211f994ea5b9930458898cf4ffaa419e3b5dc85657494763c82c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f0ca86474fc787c1eaeb6c4c5cdf73a66983e744f4481e78b44e4eba2047aad
MD5 540ef9303efa954bc15b47293defe206
BLAKE2b-256 6143aac707d6b371c1843f4d885de15283fd539a14d9ba436e0d25cfa80258ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc7e91420f981abe1e290080ebfbad7e61a87b0bb2cee669c4025a4f35673a97
MD5 33d2d687baa1d848586c84f3fe717014
BLAKE2b-256 a66f58efb5b8d6ccf51680419238d3c802ac1631d2e80a36af146e3d256c14f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72d0ce869f4344f6e2a6e188033f91f3606eac133381916af304e1b51c4ad80f
MD5 dc9742b7b8242e73c4c020e10ab792e1
BLAKE2b-256 a6190f15e3e2a12a6150d6f4cdb82ed7e31d228903b8cb10c4fc89a26569383d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91b7462227a3e1f6f863a258ecb5b52a9fe6ece2123016fd8df064d386042b7c
MD5 7923f020dd431a9daef1a0e6bd6fccee
BLAKE2b-256 cbdecfb0207c4d21d760ca6550e48332b4945ee89e7b192618a0e57f5eef2a2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b97ba050fe5d147bf85f9e2d362c01b66d097038a55435781d3aea8be7a71d6
MD5 aaf320c64dd4030f1e00dbd24fe5ba50
BLAKE2b-256 a2361128758f9e6d799b61e26c5546592e59b9f579d37aabd993cdd0ad66209c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26e5847758b89d33ad3e7b60edf6dca4fe3bd83b699df7fdb41b01f4f2dbc361
MD5 6dbd98ac83e3e9cb12ae79735ce431dc
BLAKE2b-256 027d5c598c15178708820b1e4f68ec5ae23662e30f9cff955643d4df67ddccdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2912457a06fb8fd5a00d81c90ce664d05344d8196e202fad87f8ab08e91b1f6c
MD5 b5b1a7f7e8335d76fb120efb01053167
BLAKE2b-256 cd1d3ebb9aa335cb5851c4bf1265a98f02542baf4dbebaaa3707e6dcd810fa48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df13a435854e38b3a4aaeb2f6f95cbb8baa880f654d807ff5cf5599af1a7a75a
MD5 9474e2c2a753c51ebec9bf3e3dd1587b
BLAKE2b-256 92d81b48cd646a677170c3cb436b3564abc2b67b646296a4b7cda424a5d24c99

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 9.8 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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6e9cde81ed3450fa34cdb9ab46a74fae002912c86d63d62d1b60fafa71bccfa7
MD5 48f3c1e546514a4bf3f9273ca6795ea5
BLAKE2b-256 d2ddbee83fb1bf58cc1e458bd68d2ad77742654ed78ede70d319a7206de09a6e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e126f5526c2bcd60b5da687bb18f2744c4e71960891fa8eddc4b804b1ee88f87
MD5 a620b5af8c4acaf5283b0c225c453f54
BLAKE2b-256 0c978a530141bfbfdf8fd3e00ac05ce9f09fe02b4ae52f35057dbd93e01bb32f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 9.6 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0ba08492286856f7ced4526a06d55027b1f3f3ab5db72f4781ac363dd9216c76
MD5 40e357247b36a488a4b130df0885bb25
BLAKE2b-256 925da3496365e87769dcb6aec66bace7a17d0055d77949cf0792e756237e1fd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66fa8f8b4268e2e9dc3e20bbcf5f0e06252083a9eb4cc8ce1b0df787fa3bd83d
MD5 fe1ac34082e1b33e49a94f17e3450f4f
BLAKE2b-256 59db67250741660f9e6fb0f9241637d537454a2d71b053f3de61702b2238127a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 097be1f00594f8edb71c835b39abd07973ab33fc6d9a6722a5690088c68ed4ae
MD5 cc94e0ac28f6e35d3e4faaeda59d74d4
BLAKE2b-256 42f06515a07d341799dcb674c846fa3b9cbeb12fb89a84b2cb046c03264c46f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f61efe5445623d4df448dcc7323bc06a888d0a87795f91178b6fb7b4662c1ac
MD5 e6a5546b6aa34d2c9949db210e28c163
BLAKE2b-256 148fa5b7ef02d4850a8636e34024bed759dfc6b747a4dd5b3c9e9d3e868fbb17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa5cd9ff65f290ce03f4f9492da62a3afa06d18a234d968409f2352c7310eb94
MD5 ae1f586bce5406458c237140bab63389
BLAKE2b-256 b5e98573aebe7256facea23a1f8671faf5f58a746dc7c272411cb273d4d3edb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebe05670eae6e0014f08b8f2def98014e378012f9767bbde55fd618d2c07f9b0
MD5 86f5fbb8a3d82adb642c368273fb4ed9
BLAKE2b-256 209e685fe6bebf110fdf510c0d974ee919f6953a35253c0f8b58a91d4672e531

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d0e359573ed342d1ea0ce99d9452cce84b29eed5e4cb3fb189658642251a732a
MD5 00d8ee7142465a78093fc12b28f8f2ae
BLAKE2b-256 9b4b7f6ed45aae41b94e61753dd804120b9516a8692933f1d15bc8d27ae0baca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb24ff699debcc79254738d3997495e990d9d28000a5c70eeabc329973f1813b
MD5 e6c5ddba6244e51be279876652685309
BLAKE2b-256 c3a51f6767a87bacb7254f2b49a7186bddcd0e15f32a8029e8c383a9b9d79fb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e976fbabd8c5b8382ad0d5d0c79d1dd748708fcde934a24ccde8aa519181deb
MD5 128c28592f9a7bf1d09544d73cff6c0b
BLAKE2b-256 1678479fef003ac2e63445ff641ef0a52cb68d9284f4e7d8858bc87f1204a2c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dbc0a7070bffc0d4cc130c4ebbdfc539012f400ea4d99fcaa8fef32a12dc3bc
MD5 d87f140e58a3576a2b923ce01bba6cc6
BLAKE2b-256 5c4b9a68795d1038b98b4d07357f2a1573650988fe7b96faa1292308ced64afe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24360b7e20dd4f80ef8235f31fe10c50b20161b6deb0501159833e0f0ed4fee9
MD5 b4affb1f757d5630adaa6d3b98575fb7
BLAKE2b-256 ee79707c2afd30591dc0e2c4f7dceb4977e0b64328135c842fec94d1967530cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a6da2d0f0ac318a598b8b3ed61abdd0b1701f0ff4dde26e0675747f961a4d6c
MD5 c59e4e7966f45938d99ba9e0eb7c14c0
BLAKE2b-256 6c177ed828398381ee04d5670437f548971b6eaa35fbe76c533ea291a65d9bf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee7eb25d4761509d5c0ec5607c700d9a1f764fdd6a4d0e4a63e292058e20b8ff
MD5 cea03a5fd60ac6cf9ba1a21e7506052c
BLAKE2b-256 b04c9e56b3bce550cfe54bd1ff3c0e8afe244c18f67b24df7072c52c68746e5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67d014136d5f7ced0b3cb3cffe3e7673a4c81a2c8098540958283e9c97ad9c01
MD5 c11a7559a8df93ee569ddb54b7ad0401
BLAKE2b-256 88a5047f9403eb771c2d63122278cb9a2c9e8de231d70d33858484261bc79bc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 515bb6bae5ed030e688a31aefc8d33973fefda56653234e3901d419b3aedd892
MD5 dd8b3060c98757a948ec2eab4ef4f994
BLAKE2b-256 682dc3b525ae95588483503d9a871d694146ecacbc60fdbd58a68dd6cac7b50e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 9.8 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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f8bef2fc1bb7096d3ba68fbe2ae5a9706156821e8954b5b9ab6c9e30b55ff169
MD5 f5429257811bc6fe3ec1be1be827a5c4
BLAKE2b-256 41490bfb4113992dd0d03aabf1932856dfe1d0a5422cac8c4f2e37bae529f38d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e3c655926cc5fea7f5a461724cb8209b2b8aa4d8509a3b1e5db8a9cf56f8a4c
MD5 30d6052dced2f56b279d47a9feb7272f
BLAKE2b-256 2ae508c8b4b865212b75a755b3573b640ddaaf2b34dd4349ff399ad349dc9f9d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: voidcrawl-0.3.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 9.6 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 05575bd7a526b5dbaa8cf6574af86976746a28fa798bfafacb531f58acae8113
MD5 2cd1942bc6b1aeae70c9c41447df0e10
BLAKE2b-256 30e404fc0085641115e925ad6247f1fd5e5646d5176b844569724a58bafe6ec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c397e32aa245ea4a3d286a90ee0dec53582f02d0041b60a0eee7c42d9b5defec
MD5 278c446051455b76b223bfe88b9194e2
BLAKE2b-256 8caff24d4e815ceb71edecda812073130717abbc40a7c473c06de232a3caa731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 385e32f383edfb40173968d7e26b46ee2d0f5dc1dfa7a896eb63e0cdb63e8954
MD5 643778d7739657c30149f52bdffe0644
BLAKE2b-256 884755c8340a92b1940c6fece3dd4b69465cb5f37c8f41e6d823ebc2ade8762f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea387c1e025898a5ee190088da6e0076cdbda43f2ab375f31e0bd1b3132a7118
MD5 550118d563d4377f435ce3b5feb5c744
BLAKE2b-256 9e6b6ebe995890605d9d0d3e0ed4815241156e43fb78d6e7ecaf379b2231a4ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7763640a12db1f0d7e2866f8b8c9ab2fe3ada6c93ef15e7392ce4e3aa0ff761
MD5 51890baf516510d9e91477e3cdc457b8
BLAKE2b-256 5ec3fa054c7b1156542736f6f52879fdf9cabf07e6f17cd2bbf17751e651163a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a71ad6ca81d92e9531172158971c17011ffac47478135d10b91e0f56dc6fa8dc
MD5 44b2a4d5b3c52fd37d6535fc49b8de0c
BLAKE2b-256 c327551fe7974847639070dc7f1a767b45e70e547b8b09c6ea1f4a64210dd6f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 39affd18edf898ca961b615ced155fff582c969b9db5a3f66aff208a5a9eea1e
MD5 7a23eda5a9dec672ff5f4bdc50282cdf
BLAKE2b-256 92c06934cc89337199451722d7ad43440bb48dbff5e3a908c84963e52647edaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 967238841f515282f953140def420db29da27108d7d9ad123f01b02865045621
MD5 0c91d2f881c19b101eff20fd096d7da8
BLAKE2b-256 352500f27990594e81e9633404a1e7fdff482230d629a2613fde777387dfa3a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07d0d400b6637ae340615d956d9c6c2b5e0b07ca6db0dc64ccaab2c14d22d4d8
MD5 3f6404eae6d5889f192e3a4bc1f69c6b
BLAKE2b-256 3d5b0711f265046ed68bd42e10e2e46a3b8a9e1502d319f0b5bc40cd59478069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad0d48dfa4d66ccf73a05e6bb8c65372d50405b902354e32ddd928636ad3ffbd
MD5 d1966caa8808ca1b0b2332d26e89d135
BLAKE2b-256 a9f84341ec2e3fc36dbc4dabe49be5ea230aa8904a0dfcc8bf0eb839ed7eed3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ba0b4b121ab5b2b9a73464a3d03f99b93eb054c60684f241e63d117181efd95
MD5 93ce8a35382cbe872241b66abdf7d238
BLAKE2b-256 97a90c5fd1fc6a4253d9614d0906e0755680b2f1d93299a16c9a347ae44d0217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c6acde792790dd03b5aeb58b78530122f8b801e93addc2ec7298caed2f6809d
MD5 d36dfea9a525f266aef25eb5b1f951dd
BLAKE2b-256 ce72015909ec4b393591f448ac257b84c47a32bedea452a3124b26910bdf9345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1dcb09c5ab8a3f681f445ee331dff4787dd155fb9412d29814f6ca613c6bfa62
MD5 c3d473c24c2a7414b774be5f19dcc02f
BLAKE2b-256 ba171927cfe01de8697b81cde3137e4a055f927465e3c0a16bade149ee1bcaf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7310f488582045f17d32828603a84bf84ae41ce19be08193fc08f8b84a93407a
MD5 38319c4334a576ad28d5ba92ee43bf48
BLAKE2b-256 1d137f1cd5bb5be6afdc2a2084d4342a228cd68b2d1e073ab1a46c1dceda182b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for voidcrawl-0.3.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b65ac9657dc76a7a851dbb42202735f21caf6b5afc6dcf142e98a40a7f9daa9
MD5 70156a991cd8654fd63fa724570c2422
BLAKE2b-256 1a52942698e4542364d02381233f8720733ce6b5cbd0e148419d00a0c6029436

See more details on using hashes here.

Provenance

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