Skip to main content

No project description provided

Project description

PySnapTest

pysnaptest is a Python wrapper for the powerful Insta library written in Rust. It brings the simplicity and performance of snapshot testing from Rust to Python, enabling developers to quickly and easily test complex outputs, including strings, JSON, and other serializable data.

Snapshot testing helps ensure that your code produces consistent outputs as you make changes. By capturing the output of your code and comparing it to a stored "snapshot," you can detect unintended changes with ease.

Features

  • Fast and Lightweight: Leverages Rust's high performance through the Insta library.
  • Simple Integration: Easy-to-use Python API for snapshot testing.
  • Human-Readable Snapshots: Snapshots are stored in a clean, readable format.
  • Flexible Matchers: Supports testing strings, JSON, and other data structures.
  • Automatic Snapshot Updates: Conveniently update snapshots when intended changes are made.
  • CI-Friendly: Great for continuous integration workflows.

Installation

You can install pysnaptest via pip:

pip install pysnaptest

Usage

The snapshot decorator makes it easy to capture the return value of a test function:

from pysnaptest import snapshot

@snapshot
def test_basic():
    return {"hello": "world"}

You can also assert snapshots directly without using a decorator:

from pysnaptest import assert_json_snapshot

def test_direct():
    data = {"hello": "world"}
    assert_json_snapshot(data)

For tests that call external APIs you can patch the function and snapshot its return value:

from pysnaptest import patch_json_snapshot, snapshot
from my_project.main import use_http_request

@patch_json_snapshot("my_project.main.http_request")
@snapshot
def test_use_http_request():
    return use_http_request()

Updating Snapshots

If the output changes intentionally, you can review and update snapshots using cargo-insta review. The tool used for this, cargo-insta, is distributed via Rust's package manager cargo.

Installing cargo-insta

  1. Install Rust using rustup if it is not already present.
  2. Install the CLI with:
cargo install cargo-insta

With the binary on your PATH you can review snapshots using:

cargo-insta review

This command presents an interactive diff viewer where you can approve or reject changes. Snapshot files are saved under a snapshots directory next to each test module. Set the environment variable INSTA_WORKSPACE_ROOT when running your tests so both the library and cargo-insta know where snapshots are stored. In the example project the tests are inside a tests folder, so pytest.ini sets INSTA_WORKSPACE_ROOT=tests, allowing the CLI to find examples/my_project/tests/snapshots.

Examples

To help you get started, we’ve included a collection of examples in the examples folder. These examples demonstrate how to use pysnaptest in projects and cover common use cases like snapshotting strings, JSON, and other data structures.

To try them out:

cd examples/my_project
pytest

Feel free to explore, modify, and build upon these examples for your own projects!

Contributing

We welcome contributions to pysnaptest! To get started:

  1. Fork the repository.
  2. Create a new branch for your feature or fix.
  3. Submit a pull request with a clear description of your changes.

License

pysnaptest is licensed under the Apache License, Version 2.0. See the LICENSE file for details.

Acknowledgments

This library is inspired by and built upon the excellent Insta library. A big thank you to the Insta team for creating such a fantastic tool!

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

pysnaptest-0.4.0.tar.gz (27.9 kB view details)

Uploaded Source

Built Distributions

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

pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (888.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (945.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (945.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (871.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (838.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pysnaptest-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (782.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pysnaptest-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (838.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (887.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (945.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (945.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (871.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (838.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pysnaptest-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (782.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pysnaptest-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (839.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (885.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (943.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (942.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (868.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (833.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pysnaptest-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl (775.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

pysnaptest-0.4.0-cp313-cp313t-macosx_10_12_x86_64.whl (833.9 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

pysnaptest-0.4.0-cp313-cp313-win_amd64.whl (712.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pysnaptest-0.4.0-cp313-cp313-win32.whl (670.9 kB view details)

Uploaded CPython 3.13Windows x86

pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (885.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (943.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (869.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (835.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pysnaptest-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (776.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pysnaptest-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (835.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pysnaptest-0.4.0-cp312-cp312-win_amd64.whl (712.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pysnaptest-0.4.0-cp312-cp312-win32.whl (670.8 kB view details)

Uploaded CPython 3.12Windows x86

pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (886.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (943.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (868.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (836.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pysnaptest-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (776.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pysnaptest-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (835.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pysnaptest-0.4.0-cp311-cp311-win_amd64.whl (713.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pysnaptest-0.4.0-cp311-cp311-win32.whl (671.6 kB view details)

Uploaded CPython 3.11Windows x86

pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (887.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (944.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (870.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (837.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pysnaptest-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (781.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pysnaptest-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (838.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pysnaptest-0.4.0-cp310-cp310-win_amd64.whl (714.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pysnaptest-0.4.0-cp310-cp310-win32.whl (671.0 kB view details)

Uploaded CPython 3.10Windows x86

pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (887.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (943.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (944.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (870.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (837.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pysnaptest-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (781.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pysnaptest-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (838.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pysnaptest-0.4.0-cp39-cp39-win_amd64.whl (714.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pysnaptest-0.4.0-cp39-cp39-win32.whl (671.3 kB view details)

Uploaded CPython 3.9Windows x86

pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (888.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (944.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (870.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (837.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pysnaptest-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (781.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pysnaptest-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl (838.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file pysnaptest-0.4.0.tar.gz.

File metadata

  • Download URL: pysnaptest-0.4.0.tar.gz
  • Upload date:
  • Size: 27.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pysnaptest-0.4.0.tar.gz
Algorithm Hash digest
SHA256 88033b87b0251a8d466d5c0e5cf1c022bd1f6077a8c280b5e10e6e8e257a20de
MD5 ea54e38f5ef5d23a627f5b40a232f5b2
BLAKE2b-256 d9ce48b58005b38c26070bc26b51be60531bff0310cfb3045e0a787ede5b65d5

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93354f83906ee9de6697c16e9ea2aa4e29a7695ad90ec4eb4b96774ed31dcbd6
MD5 472854ecc0a54bb5f3197a3ae5e73388
BLAKE2b-256 8705c26f862baa764384d77b4b5984f10ab7e9c1178b0c69947d8536966d0135

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 917570426ae4fb06efa62f6b40ef69d6219be8fb0e541d6645e3752f5020f32a
MD5 ad581d49b39cdc71155686d09d55e3e9
BLAKE2b-256 d4b16e7f80ae9c9510e8edaeaa0b3d80247c08ef315bd8eac89b74acb00b77ef

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d14658ac00101a077cf490f2c868d3d7a7d56bd34af863a6d3620e7336e40b6
MD5 3d1a7ed79fa1c1e8cf2d75b1ed0270ab
BLAKE2b-256 020cd7fcae18b484adda706d88de83cc5a6eefad4b38ca80691e28afeaa56cb2

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee6afb66909bacb435e4b0fc41627cbf46265107b3b899b6fbc840274c44eda8
MD5 bab1fa79d3a01bfc5420ab8b02b1e85a
BLAKE2b-256 8eb03b6225f3a3e2b44d0f75b924842b59f5fea33663caecb3ab0e6bc7fba70c

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5595ada179cfe86036b818a46a1270b57c921aed47887295d88200059b98421
MD5 aa64f8be2f875afb16acfa0c51f0c02e
BLAKE2b-256 6a4dc354266a735b1316693d63c24a978cfeff34cfce852bc2ae8e77931e6136

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 421c43689a1c6c55da40deee77818677d96f1c8d73bdc8744ce38d06cc2d545d
MD5 19aa1278aff27ca246e20ba7354ef80f
BLAKE2b-256 339e14ae9d5240ee24bf1333e7c14509b3072c7ec70b86422791bafe9092c7ae

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c26a77ba322838039474812ccb6982b63794ba2f49492b34bc7db8326bf658e8
MD5 0f50482ad887fe8e2c65fe3e48b775ec
BLAKE2b-256 d2f0a3dc4111cd251afa2f33ab34d8c89619c99c4dd1ea60fee491f50b8ffec4

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45f3c9ee7966557bec8394f4db0d13f6e87f370c0ab8023ee37656de36ac1f98
MD5 b46eaa4a2d484ae76e2528a971767464
BLAKE2b-256 a4880975c587b7815ca826f3d6c7c8a7a84e8eba06d3f87a37f8c89add9c8c9d

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ba417975c1cfaba750c185c03ee7d6ba8e35ffcc29858f1cb0ed342dab98479
MD5 e9542e40598b36f727287a804202cc69
BLAKE2b-256 88373f2867ad3bc58adce9e361e84523900736e8d7d0dba5afc0e4743db89799

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ff738645e0f9d898ad62fb58f860040c6de7121e2c4924fbb97b0f05e0a0e87
MD5 907bd8635f6b6734ae1cf6261d0e443c
BLAKE2b-256 862a789472fd75a8e7d15ce87002a1ad51ff1317429830fab880caf588ce3da4

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cd5f968991a0b40feb2c3df95b6528a79e0626160571e3114286af656ac2626
MD5 893e46b227534f1b53ad7858d64e683e
BLAKE2b-256 dee0398050f46d207e3a0f4b527e4d55696cc2ab11e2ebb071414185ff1b32b6

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be88300279279f7d77a32d6b1f9ab34003b9eb739cdd4b0cdfda4459dc35f761
MD5 273e695803135856b138ff73d80cdbc2
BLAKE2b-256 071f32804ab0ec81ba705ae300e7b24d4a93164f1763c453541058099c455875

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b4d4bd8281151cd51b2f9aadaf40a03292ff237d9b5c03eaa0ee55be8a3aca6
MD5 38dad46c83a682c06e538648a968e55f
BLAKE2b-256 1805048e731ff3b0a4f1e05095f64af86c89a2fdd250396eb1654b636a3c0d41

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f90ad2bbc8a53104bf02176d94f525bae95785014d177f6049508ea13d6aa908
MD5 e521f88b7e473bd6f1f63bdd09cb3ed5
BLAKE2b-256 01a12a66828dc19fd2010c1a351850cdc453bbb28fecab104cfe5a76f1e693f0

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2443859f6d32fc371ec635dfcee1f0d55245d66d94aa15636e1a8a89bfc3b9ba
MD5 3c617c8c339a057016068002aafcc06b
BLAKE2b-256 04f90a58976ab68e9fa6a3676360b57e9c11a6d531aaa35e8ce472daf250d8ac

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12e2772bbf0cc3df8e5374c54fd6dba479a27633393297d6babcc5aa91a43c90
MD5 e0587ad7247e268c14ff6876a49367db
BLAKE2b-256 7740fa3b6ddb7894787193e06db3c1e5a0437a8391de798a4859f1f60df87c04

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8b185ae15b7d537d7b3e9d84a62d5337d24b1d41298241386032089b917e87c
MD5 392cb1c20389a1fbdfd409c9249829a1
BLAKE2b-256 79c91bd8c3105f8e9535771a2411efa54a5025841483514b4f3587ff7fd4dbf3

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 439603389c1a19de3e112731070a9a6dca8ead41676cb878ee98cd29e2ce459c
MD5 44aea0706f6461be95f5a9853b9def7f
BLAKE2b-256 59e05c3cbbddd4ef8479b254f955113a61f87b8e0fef3b89d2772185907e28e2

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56f750cd9f3ba93e9b768a25cef7b383e799c4c4604850ad7977ebeab4ec5dac
MD5 6cabadaeefb3355235d3d8e08a025b6f
BLAKE2b-256 7960c5f34e9d9c3eebb8d3f8bd9670ee7e1fd70a6a466d84f2b6f31903ea4fe5

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e30d431210950e5de91ce5ca5283b6845177e2c7ea22857f345db842a68e382f
MD5 d9da1ec896fb4b95cab46425f8a74aca
BLAKE2b-256 9cd6dc4751c3db7ca5e2face20d9086e489634ac9ad9cf15218133fce4da1236

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 529da49f87a0a87704bbc8bf4577c20d64276bd785c20f8c8c0fc1d4a6a11ff2
MD5 862d1e7c7e03343b1935d524c7f1be1b
BLAKE2b-256 c5b90b1b326c3ded19f8a24ebe99a076c1e8a8ed9b07a937317badcd239076e0

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a74124e4136c10f2689f6409e79932c12976afeddc2198e3b4138288591f312c
MD5 f80684e124b9103c3c46b723cd3ecbc9
BLAKE2b-256 20977c181c609ea5275e0528ca89e08d41fe7ebe45530daeb4a05decefae1d59

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b01fae9501a392deaee0ca13e4a77e0aa457ee221be4bb387159888ef02f9676
MD5 4d46f0b13c8fff198319e5b076a853d0
BLAKE2b-256 57a65b5749a4585c3863cc42ed08324c994f883f367f9ae31ac628caeeb79efc

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 936a3e441bb51307f3a7245000de7a2fd0f8fa0a12f8285a91c3d8b76c74748b
MD5 f534545891184486ebe29e4106e3e845
BLAKE2b-256 3d7abbf02405a3ebb80fb88f5b22f769c2ab26275ab56bb363f1cfa8c81255f5

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3354b7c4fcf8a1e646b3268a722a76eff2fc4c20fba6377f5377bf11f9041e4
MD5 372fa87fda6b22b0463297984a3a1ca5
BLAKE2b-256 829268efe6a890b82940a930a6d19cec045235ba28aeddee56d336a435d20a53

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98b6119e231fbda7095b9cec3208513ac44cbe70f8579e09ba640b52c81bae8d
MD5 84e138f20efca76a15e76ccd04319abd
BLAKE2b-256 16d27fd3420428da1b6fc4db69d946148623038b135002c766160be1000e82ba

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5a5adfd17369cf16fd328d4997c592b4956c2b39d343f2bce2a045a11ab20c0
MD5 848b895f471c51af9d2b45e5325f7db5
BLAKE2b-256 2e6f19e62dfebe4f2db16e9c820a5df2989f6a7923623c25e367f91c63caaead

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db0be3ccf7b4848b5158b06033a087a497d1e246094c8fbc9820a9932a7e588a
MD5 d2503b721209b6aef1013dba0dc3457d
BLAKE2b-256 69f13b873f81079a435587c1baee799dd2cc3baee9f2ae1439e2c7b64678b5d1

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22a6d14749b87dc3ad0b7f3474113ddead580142e28e8385e86477d8463ea732
MD5 4f799cf68474a85a7ac1bba0aa72dfd4
BLAKE2b-256 e573aa0f574b20a967e9f4b28b912dd8b03f432f0fdada3512d0e7db830f8e60

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbb8d62e7686282c432ef2883771762b66f3bd4257e3f8c849e2c55dc066f127
MD5 6ce76d297c8a5af594313bbd681d9966
BLAKE2b-256 7b4ab5a37e9a618e764b7558ad960bd7ff367bf621370f85f3494b964b07470f

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d99d1757c3a57087b8ee973ccc178d5195e965d615fd2d1da1acd7e7f55869a
MD5 09d591a47d4f984cbb95694941874a2f
BLAKE2b-256 8e93b76969ac1ddfa98030f4c867729b9813193457cfa4cd3048d22f42422df3

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f29d756fae02468cc4e31119a46b743220aa737d622de569d49428f0e84d7dbc
MD5 3e368817ac5a7bf8b1a938ed3e27c783
BLAKE2b-256 b64a6be1ccd6f6574a00a694f4a1ad7619060e1415a7329a8f470dd443ba30fc

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fb049772b80d2a285c7f96f88e44b7d04fc1e7b21378290a0cf68c4f6d5139a
MD5 24d717ea7faac0e627d917c91cd26b4b
BLAKE2b-256 d3a9a183d13a6f2c5e0138356ce59a96122396584cdc3409e55e865e75a72a7f

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 525ab19e69e7dd402addaa2efe856b6cf69b9aeba9d3de8d0cf70756b84b90ae
MD5 d51a645a7df6c808bc7d137492214cd7
BLAKE2b-256 9f4ea7f4c48a05ae3eb2679cf1ffc141bf4250b89ae3d3ec4797d99f226a423b

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f34d5c54b56ba85cf8a585819a99ebab0d63392e879945c134af6ac305dfcdda
MD5 20b9406697afc14e2298c765ca69592f
BLAKE2b-256 ced0300cd6a1ae203d50e1b62b863a3fc56e90824deb048b6d8b75d907c4e270

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9e4323520a7d8192e6e072e8aaa026a2157c3e8ece67d15b410894f90a8cf05
MD5 e3f508599213993fe423aec94d18b0ed
BLAKE2b-256 871d5057f7e0d09bc46a4cb5e5cad3baceccdc5990bd6df3dcb858f554d898fa

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c821a638fc8d464ee030b976cd684e35b27bf5af46a946de214312f641165ef7
MD5 f1eff3191d8e31d4811a7acf743b3f6d
BLAKE2b-256 75771bb1182e6764128f869c179fc0e3b1a7429749561784f347023bc2150c54

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pysnaptest-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 670.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 596987a8a430a01d232681c83f7a53a7fd2d10aa0297ddb4448f909a5238acd8
MD5 957c87838e48485ec1142c72660ac3e0
BLAKE2b-256 3754c947b6098cd0552aa0bf2a95815ae310912061098ace91a8ecae6568181e

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b31e487a5e49cb62a7feb3096a9031e7333c95c28a1ad9d23ce30a8035d26f1
MD5 35f5948abfa7aab8e4a30b226c580e39
BLAKE2b-256 d1478e9a2319df8e72b99b97448b1a8675d19f9c18025da2b38328af06b2db24

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 405ae0c11de32de9ca167a106a5e3e2e95a8585c645bbbc7dd92b71b26c075d5
MD5 f44877bdca1feb273d3543f38e96f3e2
BLAKE2b-256 89c6191e13002461a75b2d0a0bfc31bda754b38fae8c4e4e98e2fb60ad9ec8a3

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57bd5b54fe438d1b9dc9603918d033e4694b4eea949ff8b1021100d37382b272
MD5 d8ea60b7930298d1b6a6b8c0c8dd7f88
BLAKE2b-256 16ba50b953640b55e3a148efeb5d82bdd0e952d4c98a822919d389f8300f26ff

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bf58b966a088b3795e89b99f2c8d7cd515cf78aec8ab01caa01db0a50c3033d
MD5 c50a0627983f497ff9de3831bbb3739b
BLAKE2b-256 6f3702efdf95dc2585d2fbc796c5847cad0e2e6eaec30772e9a94cf34b35bd13

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d7d487cef642ade402cfab1600254793d27939d207f9826b11265ff8761bcd1
MD5 3557ee0afbfd1ada66384496752ebff3
BLAKE2b-256 cc41f35778a500b107fac5b11a52815ef87fb5a2c75134f3dabd0331893185eb

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2854fe9e5a6b31f94ea9a0b611fd466d325ce91f82fce6d2e4a9c5cfeedb12c
MD5 af5a73675062b4be6cafa2c268c83964
BLAKE2b-256 8dae367316fc4eb538f83f1110ecbf020a292145d9d48e3c6d1a3442389ccd7e

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23cf915f429b312380be395023d97a1fce9605e30cc228b110c80704763969dc
MD5 bd5020d5c8641ad364934a5eed63df52
BLAKE2b-256 647fbf4fb045c8ace5f50c37ab3b696501de50b75416ddbad7488573ff279e0c

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c416976b2738da673d4a20999f9243afb92b0bf5a4ef105d52d2793334fb45f4
MD5 f9a8445cd7f9940b28105a425c14e594
BLAKE2b-256 f58f39957f875a4aba6de768f9c11129395366d9f25ae6ed78dc82c77d353390

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a24d496c68dc5796e9951f15e3f96193753d455213727e0105aa88e29542e82
MD5 2ac3f6e099039512c6c8c344cb3f4789
BLAKE2b-256 17dda3f40820ea721dcf88ffab0cfcd4be13d9f2974d9cc3f9779c6173cf8f31

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e4437266860d1344e3433756f12ffdc2f228f6b8d6823bce02193ec16b68448
MD5 705a16b7900a08ba3823b8bd66411845
BLAKE2b-256 bd0aaf44e53664362382d3e85d23c469bad29a3afc9018930451e34a4317db01

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17a8f56625dddb969e03d29b968fd0f323e763873f42d05c9bdd8ac3680b9753
MD5 5aae2727cc648b6dedea337a09142e50
BLAKE2b-256 841f79fb2d5f2fb5b0dd2a110dfc843029ea5935f78f9af6f0b4e8bfba57c22e

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef532fedf53441c3811b1898962c2aaebdcc862265fe4c1db4ea61907dddd2f2
MD5 22784ade1673c686644aefc7b715d31b
BLAKE2b-256 93e52388d83fd770d69c523fe14243240b67c9d9cfa8ec58c99fedf92f435998

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1f614025b6889fc24408ae5c28f98422fec271c148a1af08e911b4471f627dc2
MD5 5581da283866f2711d1b035a700c4a33
BLAKE2b-256 4d04c126766c4ea0c53a73961bcf0639801ac14042d35867e5a8f23b14f9e150

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pysnaptest-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 670.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cebf18a519d907a15c156c3dbaa18423bbd75fba72244a945c64b9cf7c9311b9
MD5 cd83c73ce32b6fa5d8ca46f7deea80e2
BLAKE2b-256 cef09d1316a3438a04d457ba24937908e883417dfcde5c78709f45d03dd44603

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42f12370c3a676c12c5e172c9b54770de36a510374618ee7c66ccda53c6e435c
MD5 c05d96ccf9a0cafd6e618ab6a7285fa2
BLAKE2b-256 69074e9ea3514b695a19917f4b144ae61863f4557e38469b460f537a950226f6

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89ebf198778f211dc7833cd6a355332bf10376738cc4044e44b3f202b150e6cb
MD5 b6942a5271b46436ea78c13f5a942b3d
BLAKE2b-256 b4a2a2582b86c7e7f07953de26f429bb364d14787ccf0eaa4a01616428879ced

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42b11ccb2a5e41aaed3c7bc0c930ded3b1e051e4f2ce5ccbef2d08ab06748daf
MD5 3af4a7c57adecf1caec94d6b2f7b07c7
BLAKE2b-256 b152ace7d5a74150ef09fcaffdd454103fb08aaad80ceebd04011d8af4f28aa3

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ad3868ddb33a5e45adbdb2295be03da3d1ac0588cfb3ccafeced74fd7054cf8
MD5 523548a258f7cb320e4c8e479a3e383b
BLAKE2b-256 95e960c714f3f70d6481aa0bb798fb258ce4852d8934d3fa2ea1226d7b1539ad

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fee02c7984d3f290d1ace872600f578b2e35b5a52d8d7a9b15e31ed1c6ab970
MD5 6b51f45b96a3985d0d7ff0b36620846e
BLAKE2b-256 d6b19dc365d84683009c48b60252f2e6931bb67e748535b942a05a90fcbea2d3

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a3ddf6409a58236551cec9b073944b3985aa0ebe51818e57211de900268d986
MD5 2651b34d8e2bfabe82e2f46a554c8a49
BLAKE2b-256 3d26ce4c1cbbcfd004362d1a55d9a1037ec7b9ef8c8f26393c80632cbb553cd0

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4a6ee63635ce07f383ab56ce1f10e3b2b56a964ed6ed9f23587179083b7fea0
MD5 8962048a36d5dc24a8ac6b690c44abaa
BLAKE2b-256 f9d8bd28384f0728d2e8bdb97feec4732144176c96c3581a3849715ed1fa1b0b

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd71de60319aaf7344d472540ab716e010f059c274cc9b1bd271315d99ce5ff1
MD5 e580e65c2dd744db0f15c07641a13af1
BLAKE2b-256 0137e7d7dc0c98b1311eeebeb5bc070ab3ecaf85eb63d988265fb68cc9831626

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a5f5f9c6e39c502ba13336e7ba06c0bd42b909e6f0a5831f003766e97214f50
MD5 3ca563222585cc00eaecfe443cc89a85
BLAKE2b-256 e4f3e57d1f48f061abde1844197d6f2b73c8a6ce2ad0e96af35505df870fffcd

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea3a1d766a758ba530a48df4cf37dc772d01f1cbd07e00c65bcbdab88a15964c
MD5 0a866de840e67f7af260e264ea2f713b
BLAKE2b-256 3379f1858cffcb37632e3bb0aa0a5994e72258d0845961c6c722cde7841a7a72

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd0731e33c33318aa23b67b83941ab4fab8c8d38021cd368f4e81243b5a8be3b
MD5 d244eeae9dbef4ab1f70ff7c7db11892
BLAKE2b-256 c160f1fe981669d32e6a4fe807cd1af019814335e216e63c86be6554d7ec571b

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e46de7ddfa76c284063a9c4e264e031a5c3a65f51aa6d87e2d313bc8d1fcb72b
MD5 08b91e4b88df7a0fd1672742b7b585e0
BLAKE2b-256 c51a42a0a18b254ab9096eca36f135508c4f7f59227e640eab90208097e29f4e

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9380d8922db84992a4a90dc4bd32f59b2ead3c5055321a271aaf64550cd1f34b
MD5 c48c663bd80ecc84473fe7601bb69e5d
BLAKE2b-256 f4c6ffdb6477787fb6334ff995ddae0284197d03ac28c677aa095dee4121c868

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pysnaptest-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 671.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 78b576a6130e6f79316d144bb6708aa2846a9c5f4f951a13b4f16878aef2a211
MD5 7c2dff42fb5894ab6cc55a4307823d31
BLAKE2b-256 18f56e8c64ab94dad789a75e11551ef1f38a935aabd04d465b9ad8f79052d369

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 799c96617db45e98f5e5a0198ab690297e907b9c15ea2da377f8f0ffa2f1522f
MD5 85974906706168df12ac880676b96ee6
BLAKE2b-256 d7e3936682c531a1aef5c79cca045221ff6bac1492259a1c1f5b045993ae2928

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f35ab2f5119485d7be05d661b75f57d78016f614a4368a928b7cfac81f6aad4
MD5 63525127ddba5d753ac85c2fd77d5f51
BLAKE2b-256 6ba584fa049aaf04f6b02b34696a4e06df17e4c633eca62b9fa6f42ec667b37c

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4a9ef48c7c7b64fe9be9e4d5ecbb1ba50aa794a31bc29b6c6484f4926068ad7
MD5 646ee9b53987a829f4fe1850c5e8b448
BLAKE2b-256 29002ddbb582c565071a8d49efc3a8b63fb1e43a13a43afb0c07bd930969afcd

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35b12a144d7c157d5f5736a5ce06435dbd5fe19f0926d89a0371c5b98306e06f
MD5 a2216bda1205b7efac4cf9e8f8b4217c
BLAKE2b-256 bd943ee8f9e9d1245cf211c53d8dd62154e94dd1f0c46bbffdf46c05dadf144b

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef0a2257a3264ec5c89b3e7443f9c0834990c6c63cc322503ad2c74583cdb5e8
MD5 2fb9ab937201cca4547f2c3ec9fe1e5a
BLAKE2b-256 cb89f34fd6c84afe86576a542ab7bdce903f192b66c7c15169d13a3e058ce6e5

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a27e4d689c0ba793f65c0c4166243bac7e60c4a754e9a2a28cf668637a7e8c6
MD5 f5f0be36893de35254d529b681d1a62c
BLAKE2b-256 5198a62d99bac120544cf114dd6505acaed353ea71d90607b4a29249aa45cd72

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f387a6cc9de665022c9cfd727a9ea915b164d2cd5f670e3bd6922f1bcb1169f3
MD5 27dc9d8af5a51031310f807d8402cf91
BLAKE2b-256 806d3da2f8c725f2aa44151d593c4c8d7fd1eb59d971eb2e313c12e53c831a96

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dac0b3cd76841995b6c839981008663d96c53cdb5a26a42ae7c35a106ac2d6b
MD5 f437b8bca28963ea8e3209c5ba93a522
BLAKE2b-256 bac6cad963ea6789bc66c0dc06e2cd6f98e5ea7c9bd37f0ef892d659c41768da

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fbf0df83089b74a1afe999c24510e7ea11886edfb535c27abe8b7f3a0da3688c
MD5 15405e225812dd04fc1418b30a70b943
BLAKE2b-256 76c889aa8204704badd419acbc609fb716ad5426bc1438bbc1e364856da6f9c0

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7756c5da48e1dc581fe8f361ad3473e1133eb70f1f1dab0745014b0b990ac8f8
MD5 77cbb007f8fcb25824d7850889d76a0a
BLAKE2b-256 d8bd6709e9babb130fdc89feaa394361d1f2e7ee2f1f1c31c441aaed12c9ad4a

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d69044a9e2026166bf50dac239907f7499ace582d38a5b25d82fedc4af7c5c5
MD5 6186193bfa01686380d31368672e81cb
BLAKE2b-256 5aba6195b27c88dd2e3b3e3420da8823eecc7e9325847662b538c2208c6e6e2c

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ad32c191cd303308dcf202a7e485bf0cf6c4bbdedff0f946bc3e1a15a8b17f5
MD5 970d0bce5d4289becc8a71842b517080
BLAKE2b-256 dd6a1b29147095d59dad66fc997434d42463baaf5cef6ed2c361d1ed2a3d301c

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ecc4a7812cf6ed27aeb4ffe42cce05e2b20250a1dd44a24fe37002f63196e35
MD5 f6cba0d15c7b8c69122ea8198a078610
BLAKE2b-256 17c134248dde119b0c5eee7f675a84350a85ed28ef432ca91eccfeca09ebe7e9

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pysnaptest-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 671.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6391b00ca1166dfae10560c535aa5c0e9260693bcd34365da1881efdfc148b59
MD5 53e0bfa131c67f2386435cca274e3d14
BLAKE2b-256 8b2a89d2e0eac03d9f11b7e4b0f541f6eb1edb28b4ea4bc8f081d18c1c6ec430

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56b5e927334930508c97193efe98b4b1d68d153df27ef731c1045536b4c472f4
MD5 82d0f27d17fc056fd9366a1fd2c28867
BLAKE2b-256 55067e54cb5bb11505f87fc548df541c6c33b5aaf3de62430bd4f14eb1a61613

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7a677d7c490bebe15b793b23fc4fac0497bdf76e967dfcc739524df53d02daa
MD5 0971cd3afb190be98f019b6dc0f11fc1
BLAKE2b-256 2852d9bd7887c827e9b5547c9e7a00d50f67d608d5cde80397187cd8d56ac04a

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 619efb1b3b74c14007724a210d6d455a54ac797d5eb8be6d857ff2aa51bed3aa
MD5 5fbdc5784e80395b4ae4a4a53b64d282
BLAKE2b-256 57eb466cad506fa2808d90f7dc6937cab25ab0d82dcd9f9b3c8f8c40866dd32d

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1fc06b1ffe69eb9ab044d704b3bb9b90a4a2426c35c618f14a07ebf76519f33
MD5 658db1f3aeb16db58c3176e5efea92f4
BLAKE2b-256 893a023cb44089e29f32e85aba7a564996d1caaa64670d0eddda06b0653d7b73

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0c6d2276b939241fac71b95dc8f0ec47c8358f32e132ebca16db6fdba8a3cbb
MD5 0b484b243fd8c4085117d000822afb0c
BLAKE2b-256 6b1d8fe7964289193a825979c7518388db02b7a8a45c2b9b245aadfbd4819271

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61411d358a3e077d33d5b4b864600bf4077c1e680a62cc09e0f54eaab2a99958
MD5 8c1b687b36f737d4e82358a342d153c4
BLAKE2b-256 f0aa9a88b124cf24992d3f3a81110d1675362442edb51bf6826ffeba6e24f8e0

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37d6dd66cd58af9475efb93eb6ab379a329329694c57c2689175460ccf409ce5
MD5 b2bfd7ede234290782813855f2bbb450
BLAKE2b-256 d868cd26fa5b64646cc9ef61c1722e10e7f21cc95585834c61ef1acef3e3fe33

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd23e6126f429e161a08a57ebc2cd8542c6cfa03c9e8ce496eb76fe23d5ea9b7
MD5 1a52ea9802fa0eac9b981ed47f4966ef
BLAKE2b-256 1c9a5756ee97786722a1d5f1bee99c9a8696701323c07908870435f9d26315bb

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09b9daccd4879789ff85a70fe08c6e75e9be31d11abd3d4041c5cea6f91dc8f4
MD5 f304969fe2c12a3d23d6a56589f2e810
BLAKE2b-256 e09957bbb6e5e24a34133b271e8010f24dd18f51bdabf51a65fbaf4150f4979a

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 035f4b837609cf5e684d07fb1ac07c0c1af2a5f8570dfa34aec59e8f0e9a3f26
MD5 e9600bb443b912bfd24b6f05ff8d8c34
BLAKE2b-256 7c03dab9e2b07ae9f95ad4777e96aaa4ea44c18614e84399209ffe6d2c815c3e

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7e8b1f994487dd886a66203452147d681f86e34aa3ddf13c46eb8bb7b60fdd3
MD5 de8b4aa947adc5e3541e5dcce1e8ea0b
BLAKE2b-256 aacab2bc2606d4a6ffac95a59bb48d7afc3c391f28919056015e13af206c920b

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d62f99ca71160d8d56fba1b944733ba216ef02bf8cc440f501436af6033b8091
MD5 04a5c40299954e7f8aab12ee09479de1
BLAKE2b-256 0fa9047ef914f25ab4d3bcada8173ffce2cb82d28c3820df3478fbcf0dc287ec

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 38e2aed17455263591a0567fbdb9a74b30796204197be195539f8e53c853b04c
MD5 5e83bb483eff42740b7cb41ba8467906
BLAKE2b-256 cbab8e1515037e7a866ca220c3928da082b94dcc6e0d357178ae41919c28966d

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pysnaptest-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 671.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 eafa689aa7b93c7e9dbd836d7ae7938b1ee081dd5a5e0bd9918d0487d51b0e38
MD5 07f812d0fde6c5b293ccc31b30bd4c1c
BLAKE2b-256 19caa1324ccfc478ff1044b4b3f40503e2de03688d44c9e307ed360601a200a7

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89d93c4123b2e356180e3e59b77cbc5e17bcdc9f3654d9738bbee40910dafc81
MD5 7c1b48501019c9c3938f28cfed5b2ee2
BLAKE2b-256 9c114f27454f90f0f174edc9ad9ceb2b4746cdb6d6af3a8209e2faec7e18e786

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72f21471b514993cb478405e9b236852ea1382d7e6eb27485e121adb94ad4d7c
MD5 d7e6522fb94f40beefc4a124e8762c4a
BLAKE2b-256 f85acf5e2b464cfb438703bd99fc7ab31b99cd154e57a80dbd9c37dfc4692a7c

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9d02a9da45c1ccd086943027395cce5845550dacba1762e7c6370345e9e0b6d
MD5 812bdf18f345f4072d4c5c0aae3f1907
BLAKE2b-256 2b1ff3e20b92bb45b3a42e418dc7ec2b07d5082e933cd09acd8097e14af92e7d

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90f9cfe73c6c62d3232e4f81dad310baff9f95b7104d911cfcf833071771826d
MD5 a46a37127f158cc056ca65ec4bb351cf
BLAKE2b-256 8100d8d693da4ff0273e864ce4b53d8c1495c05083d15be58b4843e0b8fa2ba8

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 206a7e7affce0863ef75d18f711356720e8e3949a591f8412dd40948b37b30ac
MD5 85246ce9eda599f02a84b06c87291a8e
BLAKE2b-256 6772d1bd090810b5caba68cb1dcd7e2b72f33c18587f1cec5492c107b2663be5

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a0f9c7bd0f9b08bf723d9066a7d55e4fb6d6b9437b2d920bd0313eb88e54c82
MD5 f0f11d3c8d96a0894668b22dd45ac9d0
BLAKE2b-256 085d98e1b7f2aeece5a9a600aebe9d5b339e1d99bd76c9ba5f83fddd0fb28b36

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad081fe50cdbd080d0e89391b8564ca68a8a695923f51fe3575e33ce3b2b34cf
MD5 f8c87fad02a6987e4093d8d0c91cea59
BLAKE2b-256 b78ba65af546f3c7e231c2584c5071fe4f3ad0231938bbea6a132d9220597435

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73c2e7741959086fa541e12b6f481e40c35c5f2f6939fe36f0416ae35a0f6412
MD5 591c97e23ced816219d0dc55dd66bd8f
BLAKE2b-256 eaa8492700ac4103728170bc40e4f32dd2a670d94eee8e5a1cfd19246b080da0

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27fcd88f9c7b76f23a2df3ae0dbe1ce567c3babe5f79eaf017ba4901800869b1
MD5 194adb269e6d3f20f572bf6492fd26cf
BLAKE2b-256 2d26836767e04d969ca15a0d5d5555ec11f04016e6cae5e587635beac1b10e8c

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c09fcc4dd3fe60719ada3eca5a909fad5bc9cf4d1f928ccea7fc1bc1124d0747
MD5 1c9d011c80b887340f65acdfdb4a7f9a
BLAKE2b-256 cd7530b95ed7e4491891ea7e26adf215c6121f310108d79484c9f3c167cfae32

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e90b2ccdb100a8cd36cb81041cfc03ad97b3f68a48cdeda03441f5dbf8797f0f
MD5 78365cca3fec0fbea0fccf7f8573b2d9
BLAKE2b-256 afeff0b5de63f06c7b89f38b7cbcdd0c66dbb28ab6eeac34b8588886ac7e9db4

See more details on using hashes here.

File details

Details for the file pysnaptest-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysnaptest-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 002a010e4f0d87faa661ec4aff4b4031f048594273ab7a740d8ff77b96f8aa92
MD5 d08878d5f5cddb14ceed09bd23a9295e
BLAKE2b-256 f55d5ff252866e873a59e872cf5bc5da258a7ad5fafaae40d693252b2d065549

See more details on using hashes here.

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