Skip to main content

spider_fingerprint_py

Python bindings for the spider_fingerprint Rust crate.

spider_fingerprint_py allows you to easily generate browser fingerprint and stealth scripts. It's ideal for effective automation, web scraping, bot-test evasion, and security testing workflows.


Installation

Install from PyPI:

pip install spider_fingerprint_py

Quick Start

Here's how to generate a stealth emulation JavaScript in a few lines of Python:

from spider_fingerprint_py import (
    PyViewport,
    PyTier,
    PyFingerprintMode,
    PyHeaderDetailLevel,
    generate_emulation_script,
    generate_emulation_headers,
    spoof_ua
)

# Generate a random real user-agent.
user_agent = spoof_ua()

# Random viewport simulating a real user
viewport = PyViewport.random()

# Real browser headers based on the agent.
headers = generate_emulation_headers(
    user_agent=user_agent,
    header_map=None,
    hostname=None,
    viewport=viewport,
    domain_parsed=None,
    header_detail_level=PyHeaderDetailLevel.Extensive,
)

# Generate the fingerprint spoofing script
script = generate_emulation_script(
    user_agent=user_agent,
    tier=PyTier.Full,
    fingerprint_mode=PyFingerprintMode.Basic,
    dismiss_dialogs=True,
    viewport=viewport,
    eval_script=None
)

print("Stealth Emulation JavaScript:\n")
print(script)

# Make sure to remove Referer if being used with Network.setExtraHTTPHeaders before use.
print("Stealth Emulation Headers:\n")
print(headers)

Documentation

Below you'll find complete reference documentation for classes, enums, and functions provided by the spider_fingerprint_py Python library:


PyViewport (class)

Represents viewport configurations for browser fingerprint emulation.

Attribute Type Description
width int Viewport width in pixels
height int Viewport height in pixels
device_scale_factor float or None Device pixel ratio (e.g., 2.0 for Retina)
emulating_mobile bool Enable emulation of mobile-device behavior
is_landscape bool Landscape (True) or Portrait (False) orientation
has_touch bool Simulate touch-enabled devices

Usage Example:

viewport = PyViewport(1280, 720)
viewport.emulating_mobile = True
viewport.device_scale_factor = 2.0
viewport.is_landscape = False
viewport.has_touch = True

PyTier (enum)

Controls the aggressiveness and scope of stealth applied through fingerprint spoofing.

Variant Description
Basic Basic stealth spoofing capabilities including GPU/WebGL spoofing.
BasicWithConsole Basic stealth mode combined with console output (for debugging).
BasicNoWebgl Basic stealth spoofing without WebGL spoofing techniques.
Mid Intermediate stealth protections with improved spoofing coverage.
Full Comprehensive stealth protections covering most fingerprinting.
None No spoofing; original browser fingerprint exposed fully.

Example:

tier = PyTier.Full

Testing

  1. maturin develop
  2. pytest -s test_spider_fingerprint.py

Release files for spider-fingerprint-py 0.0.20

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for spider-fingerprint-py 0.0.20
File Size Uploaded
spider_fingerprint_py-0.0.20.tar.gz 22.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for spider-fingerprint-py 0.0.20
File
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.5+ x86-32 Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.5+ x86-32 Details
spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
spider_fingerprint_py-0.0.20-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32 Details
spider_fingerprint_py-0.0.20-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
spider_fingerprint_py-0.0.20-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
spider_fingerprint_py-0.0.20-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
spider_fingerprint_py-0.0.20-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
spider_fingerprint_py-0.0.20-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
spider_fingerprint_py-0.0.20-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
spider_fingerprint_py-0.0.20-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
spider_fingerprint_py-0.0.20-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
spider_fingerprint_py-0.0.20-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
spider_fingerprint_py-0.0.20-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
spider_fingerprint_py-0.0.20-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
spider_fingerprint_py-0.0.20-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
spider_fingerprint_py-0.0.20-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
spider_fingerprint_py-0.0.20-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
spider_fingerprint_py-0.0.20-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
spider_fingerprint_py-0.0.20-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64 Details
spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32 Details
spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_armv7l.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARMv7l Details
spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details

Total release size: 62.0 MB

Release files / spider_fingerprint_py-0.0.20.tar.gz

Download URL spider_fingerprint_py-0.0.20.tar.gz
Size 22.3 kB
Tags Source
SHA-256 checksum
How to use checksums
c63d638cbcbcb9fc6407f1d62434e77d707c2cd20191d6081812209f8181ed91
BLAKE2b-256 checksum
How to use checksums
0c0431bb600c143207fe1c24ebeb76e5159a8a3e7cb99bf5f3ef7c9d1d898361
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 669.6 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
22e50013e89c0ce34085a1f1cb5eb8df78fbb784d9cdc9a5033bec7016217809
BLAKE2b-256 checksum
How to use checksums
40952c7c7598b03d5b1d23c243f31a96b6956e39eb4490a4c3833b9a94736e3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 689.5 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
b90f0f02a91386a7fa83d61d8788700d723c6d055bfbca3842b7d787822e6016
BLAKE2b-256 checksum
How to use checksums
d7f7ae1e0498beb625503fee8eadfc6b6b43615ca6e46bc30f4da32505b19baf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 768.5 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d97b0defb5825010f99dd766e6c74340a22c8bc652c45c2eadfa97c99d650ba8
BLAKE2b-256 checksum
How to use checksums
8fdf879712ece8273de9220291143d30b35d55691976b5a0ef6a587ed7143fa5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 499.2 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d0b1527ce3ba6ff78971beba07649e8d2fd5b8b5a3813e4b8048fb66f449e05c
BLAKE2b-256 checksum
How to use checksums
99f9f1883def6f3159cde56aaeacd299754425ec32b8a305b5cb6312b42b53a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 597.1 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
daf0cfd36b7c5d6ad6cea36fdecd289a2a83cc38226c6203fa4943317a59f4d5
BLAKE2b-256 checksum
How to use checksums
886616ad3318ce99ef4dfbfae6049327493bfefcb8350b4fe68ebd15920a194e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 542.0 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
40b849e215dfb230ed176969eb1f4d5546e7f8eeb4dccaa8862442df707184a9
BLAKE2b-256 checksum
How to use checksums
14ab18dc1b5c14d8b69921e905d4a5b8e0dae04dca549ed599503f7c9304ef0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 506.0 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ebe5a30e1540584298838807650ab0331af7b03f95094eb64398ad29cfd45a03
BLAKE2b-256 checksum
How to use checksums
1c476ad9937cfca2a15365c64cda59bc8335c8e71fc09aa76023d1f0a6c0c53c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 490.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ced03db5bbb140809860f64dd4aeba31ee0906c0ed5247dbf3a6cb2eb5e170c6
BLAKE2b-256 checksum
How to use checksums
0718fb5aa99c18b3ac738bcf679718acf1609ae89851b2071557e3d349796ccc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL spider_fingerprint_py-0.0.20-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 515.1 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
dcfe1797a7fe9537a86f7ddbc26bde8e35d63701fc0feeea839c9b9e0dba5710
BLAKE2b-256 checksum
How to use checksums
eb74224e741aafa70f2c44014c5a17275c72aa8806cf3a5ad8ec2ed9f2867934
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Size 669.9 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
b1fddab5c2dd9bd7d9367cff165c3f0b4cbff5dc2523ce4ce3027078b9eebba7
BLAKE2b-256 checksum
How to use checksums
baac511f0eac01eff3f3a7cf4ae368453fbaf43be5936417f8041471401bff05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Size 689.6 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
48ba1a2d3e329cf3b72f06817675611b9b07d18088fc4e8aed261a4663b5b5d5
BLAKE2b-256 checksum
How to use checksums
5bbfbcdc1e063dfb685a4de39a8c631d35ede1227f89f0578fa321e7b2947d3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Size 768.4 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
28d8b6874bde977adab66d66f34a71c3c6797a08c4d77c0b9622931d4789138f
BLAKE2b-256 checksum
How to use checksums
1844ce2388a0d9fb78dbaf9a1bb757f925f8ffd30f962d33872c6b7abab24a23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 499.4 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
ca161057d0795dcd1772fad4f9e422cc87eb00943fcaa79859b221cdb7fe6755
BLAKE2b-256 checksum
How to use checksums
216ddd54da879ef34cb03586250183fb7c315d44ecce96545ebaea9719e012f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 597.1 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
d6fa93cf8d2176de94cf9812edb6485178e8d3fb201d7d1412e6897a470015fe
BLAKE2b-256 checksum
How to use checksums
3534e2af3e0e442d0498570d71eb0c6e7ad2d357f1e98a45943ff84cd3b4601d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 542.1 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
118f413a65d12d52e479034f1208dbde598e3d736761400fd68d6c005157b181
BLAKE2b-256 checksum
How to use checksums
cc587d61368f2634d5c09075f775249f39e4f5537325b327da7689fd1d2265db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 505.8 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
a7ec598c16d4506cb5ee4f66276b6401e930c98289c85480e5c9afad65b6205d
BLAKE2b-256 checksum
How to use checksums
429b9f3b040ac6e03a032014dddc4c46ac6a0928a12bfa562838d713d76fa115
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 490.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
d9eff150b9e749ce43b85ac9ac08d8487ec7a9867e8f17160166512759ad8f65
BLAKE2b-256 checksum
How to use checksums
8b64d1bbed374d925a5bfef5a54cf96e9fa6d19a57b43410ba3cc068d96f274f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL spider_fingerprint_py-0.0.20-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 515.2 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
c3763c1ceb055cd55f699c3205f75677a161e4c3ecb3273911b835a63cbb8a0f
BLAKE2b-256 checksum
How to use checksums
0b2b0c7a0f251f0a5a7b42dd35794d308212248f60bc6bc47d7983247d09cd8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Size 670.6 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
e882b568e8b4cc19967d41263f01ed49386cd07b3d95adce962d07cdb0ec2ecb
BLAKE2b-256 checksum
How to use checksums
c926b293af2d24a18db16dfdf0a4507eb6bd721d58eb7aa6986face7d5ebf8bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Size 689.9 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
9d99b47e2e7ac76f8bdd42792c9b28ae3b28be74306836fa06ff08c9677938e6
BLAKE2b-256 checksum
How to use checksums
806bf1a3df0f6266cb406b564d2319cd4a49e42eb9c20af5217d7af3a5b1b260
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Size 768.9 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
827bc0c0026e5369598e77c51c8a3fd3b426278d87ce4d424cb041d1fe8b9cc5
BLAKE2b-256 checksum
How to use checksums
ebc7d58548cd3cbb82bfe69d0496b4e4b7e38ad28256d3b2fa5987b718b4ec93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 598.1 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
1b80c7708e6ff183c3d3d6b033c10ffd1ba88da7835b82caed514200bb3290d4
BLAKE2b-256 checksum
How to use checksums
5feb17d8382813784183fd9fe76ab92a6bb46d1f6074ef5dbfda12fb32cb38b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 542.6 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
d19a65bbdaf0122b4413b7a84ea4cc5e92b79b4076f36da2161504173574ebd4
BLAKE2b-256 checksum
How to use checksums
f633bec9bffc0145619345ad878b730c6cfc3183f7b8476b383bc060b3341f97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 506.3 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
db0d770699965b98cfda41abe577b879f6903b2891da504429b6fe97e04c8085
BLAKE2b-256 checksum
How to use checksums
8f4ae08ed14c72185a85427a67dcbfc00f6e508ef31b2b99ce826f741efa447d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 491.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
36e0c909e5781e680761e5633cdf9563ee1ba73d2e673c43a7f88f4ce42d5d5a
BLAKE2b-256 checksum
How to use checksums
2e5089cd5e2e5ffff1d5ff5d8a6585f6afdae372c12b177cf58859fbc3d17001
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_x86_64.whl
Size 667.4 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
96abe077ac0d41e18394e1940ddb7dc9ea9a3d9d0215ff68da9c1a4b43ff01d7
BLAKE2b-256 checksum
How to use checksums
5f2bf5a4ef7d941b2365e1c10d05e1fb334a2dded95c0b64a799372bacf59d9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_i686.whl
Size 686.9 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
dff913b7d53bc2fed5ca89069993d8a3edac0239033f4a78ec680f4d37bdc6f8
BLAKE2b-256 checksum
How to use checksums
a71b57dbd393debcdf281b59a36c7c38f43852133042312d5b49556b5d65e750
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313t-musllinux_1_2_armv7l.whl
Size 766.5 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2e166affea0b12702d6949394d94e5af8f21cfad0ae45012975c4f83ef88c469
BLAKE2b-256 checksum
How to use checksums
4192054bfc61cd76184cc26ff3c3a08f59cb025ce7b2bffc5f26642bc575c0f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 592.2 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1b5f3df648ec06505d9560943dde6f409bb6958e558f8ba9f1a1c453659a2cab
BLAKE2b-256 checksum
How to use checksums
0643f1d662ae95b7887dca9c53433eda3aa8c12ff5a40bdfedc70c68c2f76559
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 538.8 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0227f7a3339535cbe66b9d77755269fac946857183527ea4cc2bb8dd61a5bde2
BLAKE2b-256 checksum
How to use checksums
20a85e6cd79d418b2337d0bd650cd0e632345617ccfa19c3c2f86162ebb001f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 503.8 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a346b836e20259773d406a34f9be182a7d64b8f68452c0463aa93ae4d7869614
BLAKE2b-256 checksum
How to use checksums
84fcc26b53702b10367730608a545a2ed70ce014e6441b37aaa59e877fddc2a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 488.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
65a98ec97331d03ee0bc15aed3bc9f07378b3e311f047682aa0f61e995045496
BLAKE2b-256 checksum
How to use checksums
9c3159a6e9b75c293381574c850810d791796e0fba0fd5f29cd6939b03ac154a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-win_amd64.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-win_amd64.whl
Size 363.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7ec7d57ddb12baffa037a7bc602b9c650416ca6aa58503a9fe64831042df9d4c
BLAKE2b-256 checksum
How to use checksums
caea215bb125972233f591ef1dd5246bbc3457124b859ecfa7c091dc1d5c8667
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-win32.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-win32.whl
Size 351.1 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
84441d30fa58446f8a5fc73c50082ba40c19da7cc66897fe4de166d41489aa6f
BLAKE2b-256 checksum
How to use checksums
57e3222c1f8e8e85079cf91041799e76530b8379ddf34028a71cb75d58b2304a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_x86_64.whl
Size 669.6 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ea464fcbb18c50df307c6237c0d7d445ab1d97f64d30363163405ef00aa500ea
BLAKE2b-256 checksum
How to use checksums
e0898ca51de1421e0eb9a51ad4b76fc7213c25940256e19c3b24d42769795d1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_i686.whl
Size 689.7 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0ff25aad76b158a1c340fd02e444074a1d66cee77c8cb02c85a36493ac13edcf
BLAKE2b-256 checksum
How to use checksums
c27b1675161e8eaf966d27f0a3f0beacbc48d31519d23fcc300ff4e3df6afcf1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-musllinux_1_2_armv7l.whl
Size 768.8 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
5551c87b26b9ded0adbd6daafaadfb5be8c641cfac603fe83a64a00eb4b0e8a9
BLAKE2b-256 checksum
How to use checksums
7e9cf70f6d9d27c36fcf8dfd5691b2c3473f76a8e6581c4e27c9ffd8aeeff886
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 499.1 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d556a31aaf3703187bbe3d021b8400212c9e09c57be59a4f8e5e765e08fb875e
BLAKE2b-256 checksum
How to use checksums
94d0c405872cc1c81801b47cc9393c17c671d9ddad69b6fa5b620c79b723651b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 594.4 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2f31a456c35a7c420bf5ff96012323bace28e0005f5b70b73196572da0be7c3c
BLAKE2b-256 checksum
How to use checksums
4927b0ce0370f99a1637e6009e2ad310019285ef8e48873dc126901fb9ba2436
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 540.6 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b87658b1cb679cc13613acb86671d55127059d63df1c76fdd928cbe84681194c
BLAKE2b-256 checksum
How to use checksums
c378777336106eea7f814239c6764043c527a3a318b52daa55535038fc653963
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 506.0 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
7a7d38d75521ac5c347932d46d76c9fa79727116ce3f6cae2a727a02843c2beb
BLAKE2b-256 checksum
How to use checksums
0d4695478af3296a372a796b0f00ec55ecb354395d694e61661b12b808985561
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 489.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9bee86ccf9c80e4e8fc5911ad2a3072fd88568021293d8a0995bca7ea27eb253
BLAKE2b-256 checksum
How to use checksums
5b2a84c7e924f44c447025804185038ece95acb01af5bbc9dea773229745c188
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 515.2 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b63f58f8ad4e74692a12d18dc2c9cdad9b3e4befeba97a9819776ab0f43707bd
BLAKE2b-256 checksum
How to use checksums
86e8fa40a182af85d7f4d439c0d39c32d45e77d96b2ca6314d7e6cd44575750e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-macosx_11_0_arm64.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-macosx_11_0_arm64.whl
Size 441.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e4054418aff1d3dc693ca61fc492930e0c0e056f0c507ea079dccd62547d5c4f
BLAKE2b-256 checksum
How to use checksums
1c65d86ad8111af86406c0531546e9ad17536165a0c58fe03b9b88f9308c8a47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp313-cp313-macosx_10_12_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp313-cp313-macosx_10_12_x86_64.whl
Size 458.9 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
cb94ee6bb60dda2b2959a8227610623521cee723fb2dd8ea24660756cf828fdf
BLAKE2b-256 checksum
How to use checksums
0701f9c4737d369bebceacba34c7ddb7f64af72c5ff61bd5fd3c15c3324deaf0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-win_amd64.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-win_amd64.whl
Size 364.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f547e13f885575e821072d8bca3b4b2b76b13d7dd07c9f3d7ebf1799718d7fe7
BLAKE2b-256 checksum
How to use checksums
b40e41217db2a481b7b264b08ee7aea0ff8cd746b1c8266ee85dcf8e0bbcc030
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-win32.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-win32.whl
Size 351.6 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
e94ece976fbf6e40ad86a965430bebff42d521e085583056fc25472f14760c5f
BLAKE2b-256 checksum
How to use checksums
e148480e1dc3c9ec25e7512c8c78a3c500285ecee198df351f51a0b8246eb63c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_x86_64.whl
Size 670.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b62f63979d256d4f2a501483f15e18172b8285c518e1218af07359daf9222447
BLAKE2b-256 checksum
How to use checksums
c0c1482354b767d38747a947b4e329624d04da26156e0fc49d4718e77bb4d391
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_i686.whl
Size 690.3 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
f42e40bd7fbe92366362dceebe51e0a92fcdffc60988da647029d80e9b002e6d
BLAKE2b-256 checksum
How to use checksums
0a194f16a2a51ceb9e073e692c4cd11f1e3376891007d835220f079fcf493651
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-musllinux_1_2_armv7l.whl
Size 769.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
936d6ea0cbca5322fae9f3fd07205865f9c26493a6063e1c31f804d0485391be
BLAKE2b-256 checksum
How to use checksums
ce4e85d239019234b6ead1db496f2607d94e0d924b127808360c425cde9b8d34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 499.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8794effb2e15bcf962c1ca22cb173e3c5f7078c6427e37f44b4a0e8122eb27a1
BLAKE2b-256 checksum
How to use checksums
b7b1f40b1dfc89854f9f96c3526eaa8d5556a2e90a75afbff12c4c4d255f881f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 594.8 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
d2b038b99568b6a86f6cb6ec726c408f18a14e4ade47ff8f303175c5c4abfd38
BLAKE2b-256 checksum
How to use checksums
b24225ecdefa3e73552ffa5cdc6991247e2213d3c70396c0c1c4ec8a6cb3547e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 541.3 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c89f6fced556576b42c20c4a63b06989f9262e8e8ff512178d0c7a9e5e97c58b
BLAKE2b-256 checksum
How to use checksums
1fbb9ca7bfa2142b4f0ffb7171363e92f2f5320b4783c1ec5b8ab03a203656f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 506.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
0f8a2255e433ca36e3c66d2f35180ab977bc5708b34e604288b19114b1b19167
BLAKE2b-256 checksum
How to use checksums
b1632bbec5cd791e689a165988378bddd04a5d41a4925857d7358c8fefbf7ced
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 490.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2275ef3b89570cb96010ea209fdb548803788c7b91bb57b7d617b0bccb048101
BLAKE2b-256 checksum
How to use checksums
5737d120b4dcc28a24284511e15e91f595d4b3edd595d9632c7bb0caff234568
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 515.9 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
61a923dabbc8a09b30b1127dd04649d965ed5eff8e7476158432c9db91320a17
BLAKE2b-256 checksum
How to use checksums
5ba98f9457a55484ab739fe7b04af57f3da07fd9b47d6e8febdc8295c677fb8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-macosx_11_0_arm64.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-macosx_11_0_arm64.whl
Size 442.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
55937efc15adfcd3baf20afe2c68701bca3815634681e24cb9cddf939d2fe6c5
BLAKE2b-256 checksum
How to use checksums
6d42818b813546c0ebca4b187a6e3189eb843cb0fc79e71c492082cc45a9c6f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp312-cp312-macosx_10_12_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp312-cp312-macosx_10_12_x86_64.whl
Size 459.3 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
419234a794ed307bdc8f97a079a266f9f5adfeb29abfef32f749e114410d7b32
BLAKE2b-256 checksum
How to use checksums
698e5142fd65bc46bc81d9621f4fc2837418515cd38557ed14626139f27d4163
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-win_amd64.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-win_amd64.whl
Size 361.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5ccb277a9cefbae6af5d6e6d86e22fc54c5341b805612f653f7937ac93d2f906
BLAKE2b-256 checksum
How to use checksums
300a5fb4d601e27f257278ce8cf6e9f856c8e8d7cf5902c0216c6fdb85547fb5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-win32.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-win32.whl
Size 350.6 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
1ded889fd63bc6ae1e1347255733193f57af12d51e9f54cead044b5d4a21504b
BLAKE2b-256 checksum
How to use checksums
4dddd0bd48c6dcb5c1dcddfb75d69b2933a7534a76879fa0f900cd752af3cd38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_x86_64.whl
Size 668.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6c816baa4d24de96bc7abe78355481207f9cb232da8ff014e901a900756e805b
BLAKE2b-256 checksum
How to use checksums
4e70977d83d724b590e2c1981f06fb8690e36953ca97afa46a86334ef70622a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_i686.whl
Size 688.7 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
63eaacde8f38b042e4b4ca04c2eae908d94a4064822694f557a287361ca5c962
BLAKE2b-256 checksum
How to use checksums
7e556af9398ed5be00fa96c61373a268714d1c9f8dbedfe7154e7e5cb566b54b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-musllinux_1_2_armv7l.whl
Size 767.7 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ebe76d517a6b40fa617c7a1b6b8bc0507704bf1f7d4b6b01d40dd83c0bdc6eb3
BLAKE2b-256 checksum
How to use checksums
3db154d3792b10748cd678e72591c2f1284e1ee7666802d7820b8dcb0617a431
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 498.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7a0bad489934c648a6749c116ed52f2257409565a3d595346a8ea2b7275b7192
BLAKE2b-256 checksum
How to use checksums
60a34079b84a7e6218d0cef548b2f9bfd351e2b0a88ddfb742fef8dc5a71af8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 595.9 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
7733416e7f1c941e3d0f8ecd7c95b6a472c35868aa342a793294798db132d863
BLAKE2b-256 checksum
How to use checksums
0e7bf99f554638a40b39d591ea87e06820052719fe17b2f5b3e9b7f5b1e97aa9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 540.6 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9fae79a26093d14f926935f2bf08b77a13c3d07f39a7844f143aa184e25427b6
BLAKE2b-256 checksum
How to use checksums
75a9d0d6616e1ca4796845c61302a3de260a0d936af54bb2023c33e220aeb4d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 505.0 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
5886593e469f5a6666ca53fb973083952e4a577588595076e9a12afc3434249f
BLAKE2b-256 checksum
How to use checksums
1dc4aa7a0710bfa57dc04585988c00759873365ede6697902227072352504dc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 489.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d60bad4ea032bd857c744ee7a0687d104382975a45f44515f875c7f1585ce048
BLAKE2b-256 checksum
How to use checksums
b54950721089407f29beccebf66836c044f340d5f822f1ee580bfc3c39ae69ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 514.6 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0decf39912ef31ef08afa1787bc8093d5767e556b6cc318f747ac6aa94c1187a
BLAKE2b-256 checksum
How to use checksums
0d293c4d0586add02c5ce1152c8d56d3c989528c74d15df67bbd7488b7798e63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-macosx_11_0_arm64.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-macosx_11_0_arm64.whl
Size 445.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
86fec41cbb89bad825db9c4715276796d6dd9bf3d8e902df268f528323709201
BLAKE2b-256 checksum
How to use checksums
aa383f8f0bcfe68e03bac460fd1089e4e4c1ce388dd6498366180b29098bee23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp311-cp311-macosx_10_12_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp311-cp311-macosx_10_12_x86_64.whl
Size 461.7 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
5bb316dac794684f606a2774e8b28927f2cdf7caf7494102885067611640266e
BLAKE2b-256 checksum
How to use checksums
f06a9d669aa4cabe18f57250b6f18638e18f8f9f285b9ea195f39224536339d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-win_amd64.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-win_amd64.whl
Size 361.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
0cd3f7f124874c1dc45f11890cc6119b2bd78401c654e609f6f16c69e97a6dac
BLAKE2b-256 checksum
How to use checksums
fd487ade27bff7b25c7b607c0132c0d87e0a8eeaa5a4a508904ce6f31640fb5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-win32.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-win32.whl
Size 350.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
338484990e53649279bd85ea661c450427be9ca175dafc741cbbff27c6aba164
BLAKE2b-256 checksum
How to use checksums
2cc9b455f3b61072c2c51cf237c099b5bc0c912182d678cb4003b3fdd6749af8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_x86_64.whl
Size 668.9 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4d03f03a945e58a57eb6df1e4a061353cf78edd669dcc6a31159cb63890fab17
BLAKE2b-256 checksum
How to use checksums
01246d563d23c842efd6a0bfe14ced2dbc231e798673e27f876d0c3a6bc768c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_i686.whl
Size 688.7 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
07a82c32bdfa39e0391de9e05000c26e8850c412e23dbaede2de75b9674d0764
BLAKE2b-256 checksum
How to use checksums
0b4b3c4e6080c6ef9ea0c9df577819685d2ec614c1f85d989fce91d360003aac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-musllinux_1_2_armv7l.whl
Size 767.6 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
6735c2587c277ec683486ada3af4ad54571b67e25c490c87f9cba870ab331afa
BLAKE2b-256 checksum
How to use checksums
f56154aa25625284eda301dbcd036bf6d0afa5b1a7c9a8749a367b4f779f4628
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 498.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
926efcb7b7842f30ecbb234329c48f3bb5eb01fe49c6b07d89b909913786bb36
BLAKE2b-256 checksum
How to use checksums
6c32b19b1d5e5e947a087eb15def48568734278566d55562096c1ed902c016a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 595.8 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
60d6c427fd8112d3f01c5dadc81a8910405314a30be9cc5c363ae55c5229a3f4
BLAKE2b-256 checksum
How to use checksums
5125aabf8f2e55a3c6b7ab47b25ea131d2c5259b4c281fb1861ea3ce5dfd6444
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 540.7 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d10738c23d9bb077b7f58cfe8452d6555e83289ab9fdef08716344bb5033fe74
BLAKE2b-256 checksum
How to use checksums
369c5dc2a5b7ede83f0d5338307e73f9e050266c3cf333219d7938a7ee32eb6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 504.9 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
7c6dd09e9ea730285dfbbf7dcd8dbf6ff000f092e302896c549b66e171bc6d5e
BLAKE2b-256 checksum
How to use checksums
71c888787ad5324a37da847f86c7f6998acf83916db4697f1efd6bf9d7dc36b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 489.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e8b767c8f3774f65f3b640617886d2d0c248e9586d3ddecea06cdb1a45a4ee4c
BLAKE2b-256 checksum
How to use checksums
5a53d147b3e624d0f50f57a9b5ab9831084ec8ab94c32b84182f76a9507d347e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 514.5 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
242bc5b3ae697db9917706fe70ac95056257e76eaef8637f0fbbd457691d66ef
BLAKE2b-256 checksum
How to use checksums
3fe69615ebf15b77d0876bfed4c8865ed29d955b5d0751d3d7070b4c68a025fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-win_amd64.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-win_amd64.whl
Size 362.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
7665b216988c0eb1ebd07a44f9b5383712b5c842a0ba136e87145e7d29aa0a11
BLAKE2b-256 checksum
How to use checksums
30550a4fffc5aa4ed5d27bc4ea73155b9bdf33ce959a4a57b900ca161f747c76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-win32.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-win32.whl
Size 351.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
c7b97abb9e54db01fa791ffbf7948328a351e13e18734988412de4437a3ebbc7
BLAKE2b-256 checksum
How to use checksums
e73c0ad22d4337fb12b6b75a697a6f80898b6b6c7fb43100cfeb3e8cb79ad064
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_x86_64.whl
Size 669.9 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a51525a8138dd5d88b3772542dba2f9cdde1915e5580d17698dfd61789eb6818
BLAKE2b-256 checksum
How to use checksums
01ab2f9c25b7eeaf0853a52fbfde85359525dd1f8424611d4761f070550b674d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_i686.whl
Size 689.6 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
dff816ee9f3ff0ce75392eb19ad4c354c9b54326206918b01c8bc910381199f2
BLAKE2b-256 checksum
How to use checksums
14fbcc0dc84e58293446dd5e68739dcc4d6588c05b17dc411339ecdcfaf1fb54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-musllinux_1_2_armv7l.whl
Size 768.4 kB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
c1e840d7d5be2ec56e81c93750c6e7fa832333fed1b807b53672ff9dd874a8d4
BLAKE2b-256 checksum
How to use checksums
ee572c08b48c1e83b3124efee1c579bdccda4530a0c3d491202ec9afae363fb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 499.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2c55c7683c30690b07b57621f062d0411a1853748a323374b7cc687c90bcaf85
BLAKE2b-256 checksum
How to use checksums
f3700b7585854b25bd94d4a07435c9a3becbeafdf04de9b6c6e53d1ad0844eca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 598.0 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3123829297b31527272766dceca303b77ac9f48d567a63932d3b393d40ab335d
BLAKE2b-256 checksum
How to use checksums
34d1546442603b4adaca3f3b9e906c48939cad2c9f1d5138f9c5d7d8f58f7f5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 542.0 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
904bb20a67edd2966b659340b7dc38dbc294eb21985a8d8e26162120c94d3395
BLAKE2b-256 checksum
How to use checksums
d9f42f3f68fe1ab9525704026e81fe562d84e12e53b59360c9b5668cce2b259a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 505.7 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
1a0401430dfc1fb23a7f2d3274ec36a83a6cc5fd453afe5b58a0dcaeb09a8676
BLAKE2b-256 checksum
How to use checksums
1ac4a8428a8b0e2bb8cc03d173707ffb7c3dd57572db19f8d5914f184d286e7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 490.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b017a4176e048b99a9d05b1469e3efd87f0325df6aad6bea55855a9068536a0b
BLAKE2b-256 checksum
How to use checksums
8c3a8a602bac48a4f03bc744b0ef892d94ae83cd4bc0ea77e7c933c4a567b7c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 515.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
52ef0ba83a6df08801c96aeb24827ab2a503d05cf1b8ed99e3b1035e10a48040
BLAKE2b-256 checksum
How to use checksums
f38f4e8e0eb8a794a39048bd2b42e2910e3665b5a48e144dc0111d79d73bcc1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-win_amd64.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-win_amd64.whl
Size 362.8 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
01f9ce889cb40387dca3e21496d96f3567008b14f84e861f97ebff11c35340a3
BLAKE2b-256 checksum
How to use checksums
125c62b9572f32fec11f627711904b4ea9023d7705c4ee111e0f2b7bb4b10a29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-win32.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-win32.whl
Size 351.5 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
df5424ac7f3d9c21e9fc2e511142f810ae65f9716d32e7be3e02f95f6ab8f18a
BLAKE2b-256 checksum
How to use checksums
fd67d3177eb89d70f351bd2feb2c94c01bf9b06408cecb37f57a7b040d4964a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_x86_64.whl
Size 670.2 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3cb7e301c2b15beb448d5c10e1a8d7329a899bb2a63aae28920710f9da8f2229
BLAKE2b-256 checksum
How to use checksums
772eb6ce7dc11827c5ff74c7db7b84a3f26f54e5a55607b023d36afcf504b9e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_i686.whl
Size 689.8 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d9116a6454a0de72a65ad67d755ab761823ae6a1f2127a240efcd993a87a4798
BLAKE2b-256 checksum
How to use checksums
161e96d0b3af5922e90786f2dea0451d05cc8401ccf0b43f0eb99da897a9bfdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-musllinux_1_2_armv7l.whl
Size 768.4 kB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2650b17909a821a88f5885cb2283a5c4b11558af974fe9e353f073ad4eddb13c
BLAKE2b-256 checksum
How to use checksums
b25ab8edad5537d36094a08c72e5d35a46af039dcacc66cf08c56353a93a2df5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 499.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
255aed97a94aef4b55ef01a8a4420def9652de00f363ce5e190873677e6f80c7
BLAKE2b-256 checksum
How to use checksums
11edcd10760d77a5c72769c34406d1ca5fe3d4c28ef2c3c18eef609c6451a49d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 598.2 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
be46bad250b8add01c3640c0c2deceb7a0473b28bbbf6566ee725caefea7f1f7
BLAKE2b-256 checksum
How to use checksums
361650afc1825a26f64ff3fa6728b78e424118c6a57ff722ae9da950bc3fe66a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 542.4 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9056574bff1313467b1692946ec326684ab25a98ce199ef3d56a133104182677
BLAKE2b-256 checksum
How to use checksums
da26061efe28a982b5e9b39d005baebff7046f615d41e72d9c2f9b7351c02aa6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 505.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
0a57e14a1a8d27186c257d1eebdac085c1f9bacea5ca8c5e3d42d15b8818a605
BLAKE2b-256 checksum
How to use checksums
02b3cb227b94a4cc571f9b0ba98815cb09719d85f7b0d4e840541caceeb2df84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 491.2 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b90cfb711033092a3844d51f143e8d37df4666bf0c514737040293281a20950a
BLAKE2b-256 checksum
How to use checksums
329eab2995b3b90daa7de7c6c80d78cdf16310945b1536e24678a5f951347330
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 516.2 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0f9f1ed7162e32351083a02dcca3c02e9c55f7f3f4be35d90babfadce0e99f0a
BLAKE2b-256 checksum
How to use checksums
22a00c55a2dad04a5c0dbf4e531f9e13f49da4a060a470156deba19b3a76beb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_x86_64.whl

Download URL spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_x86_64.whl
Size 670.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6454daa73c40cbf0cf4dd9c40c524d265b47583c1d8521aebe08c49dbbaf045d
BLAKE2b-256 checksum
How to use checksums
8559d9912bdb5bc10f6dcb1a3ed3533017e6744fe4f436d28b4778da139fd637
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_i686.whl

Download URL spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_i686.whl
Size 689.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
f8ed90e8ed310d97ab8da6b273f13df37b75d40c43bcc36e3b0f59b8b58d28cb
BLAKE2b-256 checksum
How to use checksums
0829d783b1e3fb8c2023f8ddff41464c24734eadea6ad3aefbe468d7f8fb3000
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp37-cp37m-musllinux_1_2_armv7l.whl
Size 768.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
631076bf1c4ad8e2997db8681a392e2cb9e2e66ca503583a41023d695651bebf
BLAKE2b-256 checksum
How to use checksums
396df9c032f9cf15f860c81c2ef6b6f07426242e845c29719b23ea8efe4151c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 597.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
7c50e43a96f17b27619f1f8311fd303d4370c8c80339b35d6ffdaed4b39f557d
BLAKE2b-256 checksum
How to use checksums
3000735cbe75759eef085f5c1eabea4d425f15f8a398aca72d67ac42426b7c45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 542.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a93f5647412569647eafedb89e2c69e44761679e9c594c8825e2b2f3e6bfb00e
BLAKE2b-256 checksum
How to use checksums
5ada2367e0144f68b12c99cc0c4120a2e942a461140cfcc6667246fb4fe2c532
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 506.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
6668200332e8fcd6c1bed4f1aeeef8fa87723c9873dac8fdfde802e87a6c4314
BLAKE2b-256 checksum
How to use checksums
136ecb3c17801968d203d8217c0ebeff7634a26626cdb8d835ae3433f7e1e090
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release files / spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL spider_fingerprint_py-0.0.20-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 491.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f83d96301ecc96c2793919c6a5054de731178ee034a5ea012f20b1c1fa95d40d
BLAKE2b-256 checksum
How to use checksums
420f18baf033dcdbead6081e277aae653ca4ccd0a556f0861c20217ddd8cfce8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.6

Release history Release notifications | RSS feed

This release

0.0.20 This release

112 release files

0.0.8

4 release files

0.0.7

2 release files

0.0.6

2 release files

0.0.5

2 release files

0.0.4

2 release files

0.0.3

2 release files

0.0.2

2 release files

0.0.1

2 release files

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