Skip to main content

Library enabling a flexible and frictionless way to render snapshots of maps with overlayed geometries.

Project description

snapr.py

Snapr (/ˈsnæp ər/) is a library that enables a flexible and frictionless way to render snapshots of maps with overlayed geometries. The backing library is written in Rust, these are bindings to said library.

Example

from snapr import Geometry, Point, Snapr
import requests

def tile_fetcher(coords: list[tuple[int, int]], zoom: int) -> list[tuple[int, int, bytearray]]:
    tiles = []

    for x, y in coords:
        response = requests.get(
            f"https://a.tile.osm.org/{zoom}/{x}/{y}.png",
            headers={"User-Agent": "snapr.py"},
        )

        tiles.append((x, y, bytearray(response.content)))

    return tiles

snapr = Snapr(tile_fetcher=tile_fetcher, zoom=15)

geometries = [
    Geometry.Point(Point(latitude=41.703811459356196, longitude=-103.34835922605679)),
]

snapshot = snapr.generate_snapshot_from_geometries(geometries=geometries)

with open("example.png", "wb") as image:
    image.write(snapshot)

Example Output

License

Licensed under the MIT License found at the root of the repository.

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

snapr-0.5.0.tar.gz (32.7 kB view details)

Uploaded Source

Built Distributions

snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

snapr-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

snapr-0.5.0-cp312-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86-64

snapr-0.5.0-cp312-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.12 Windows x86

snapr-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

snapr-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

snapr-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

snapr-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

snapr-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

snapr-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

snapr-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

snapr-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

snapr-0.5.0-cp311-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

snapr-0.5.0-cp311-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86

snapr-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

snapr-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

snapr-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

snapr-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

snapr-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

snapr-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

snapr-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

snapr-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

snapr-0.5.0-cp310-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

snapr-0.5.0-cp310-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86

snapr-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

snapr-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

snapr-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

snapr-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

snapr-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

snapr-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

snapr-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

snapr-0.5.0-cp39-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

snapr-0.5.0-cp39-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86

snapr-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

snapr-0.5.0-cp39-cp39-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

snapr-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

snapr-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

snapr-0.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

snapr-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

snapr-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

snapr-0.5.0-cp38-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

snapr-0.5.0-cp38-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86

snapr-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

snapr-0.5.0-cp38-cp38-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

snapr-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

snapr-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

snapr-0.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

snapr-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: snapr-0.5.0.tar.gz
  • Upload date:
  • Size: 32.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0.tar.gz
Algorithm Hash digest
SHA256 b1a2cb3e7d6b75635490ce13c9266eb1e579b61060b274e88b05edb68e3dce20
MD5 0af442b1ee4a9ec4ec98a1ddfd121277
BLAKE2b-256 d5c87451ebc845994126a6065b358ed2f97b2385f7749a1223380298c4778b71

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43aecf44fe0b60b5533f44109d140ec68798cb1bb9c91d3bc843766aa2d0ac39
MD5 8306d604a94ec94e618826b55a5ab2fa
BLAKE2b-256 9e9f90280e6ca1313d4a3da299d746fe57f37c536d35dfdc3c10cc224621152e

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68049b3dd2c39c1e2a88aa349cc4637f7ff5116dd744ef39dc08af52ad3f1ab8
MD5 9b42b24738122c054a5d5085c6463679
BLAKE2b-256 6e86de0b4565655ed3b899ed3b7fc4a24306e1d5a153caa1c9789e9e612ed140

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fcac67c2d12680fa4f0b7e11b6258c42c8668cefe74c723d4ac40fc51d16825
MD5 457ce5754de9d12f02365d335c0fe411
BLAKE2b-256 1966d99215b75243032c599c75b3590394d19a103ff7890c780390c4fc534b5d

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 260973836ffb1ff184cd18f5f668c8339cf1f679c8e0f1a868af753f94dc7fb1
MD5 4f5075cf47de48459718303ed80aea1f
BLAKE2b-256 3ad7635ae5909294d0035787ef536e0d2e9ae5fa2ddce91f6feca8b89be92e96

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba10e0316d5ce87467048503087ee61b2caabbca87180364e0cd97b644f54b45
MD5 abd777dd0270dcb315b07ac73301f177
BLAKE2b-256 f7b1e337fb85a5d9ecb637bc005441906f66b6167daa8dd8333af73ded366b61

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 304a9d020196a0a4cd5b598c2beb470715025c1343e6eeb3232452fac1c1e1ab
MD5 940b2971fff8b37cee135f408873dc6d
BLAKE2b-256 5313eab3048359b23bfd06ae9ddc7a4e6e1b78fafd45d325d6774b005169ef32

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 705a682161efe99804f65169af021ca855c83777e495e353906aa10318e659bc
MD5 8fd7da57179266dd574373abc1c95b92
BLAKE2b-256 f3758fba8e8c8982674502294117d6b45fa4a025bd61abe7691ddbce907192e8

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d951eea70f8bea2df565ea2f25f525588338fee48aa1e4a4c9c14d51f63050d
MD5 ba39365e614d7f091122ab62acd0ba1a
BLAKE2b-256 db26f705381187baab90f33662414737ceb8fa8c2248c809f9dc7a413402edf0

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1391aef9910784666068e37625bf4e84ed7b9a7a55e714d4b78785e8eb325bf7
MD5 c0dec1e008d60b400411080d3e8660df
BLAKE2b-256 082356d7f046ef044b5716d57174892dec63ab60f27586236702f8a3fbdfb29a

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26c776d170b722c7d1844704480922886a828c038c63e59d818a2114b9968fea
MD5 50c3f7d047925649d40f6b8ecb82da62
BLAKE2b-256 6b8bc712ad1951a5dce48c03169d2c8c642f41438570ba11bd4f551b2ab0801d

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16ae59da943b5e76308af2cf77854f252502a63c046448dac2b0edcce88717c2
MD5 884b9116f83df6699f0ecf7af4429c73
BLAKE2b-256 c5d39e3c91dabbe15880ef1cf28a7ef0919917a7503a9c94c08cc946ad20a10b

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15a74ae8d9cf3c86009171070db86f4e7ce232dacd5bca19f20393a791981f0c
MD5 8260b3340bad169339d80acd9cbf21ea
BLAKE2b-256 e873651eac12a23c2313ba412cd46752c38e4c96531d60312d55f237811a4402

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3733b12a8a6dfc392c74212b58614471d7aeb99fd642612ff3a6bec1765a1352
MD5 0c3dec7f71798c97b5a533728fadd4f2
BLAKE2b-256 b8ec8deec9bcff9fce53ec0f631d07226f5e25aa763865ace35a45034d0c8cb5

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c07fe6c3b6cc3495f355db36a61f151f976f2fc9fa3e3640eb6ad0796d53f173
MD5 edd426f829960159047f3151b91caea9
BLAKE2b-256 09b17a587a4bafee50e8bbf2566cfcb1d6897d0032699573fffec782ac081d99

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f9cd1792d578ad802c044e2dde4ad59fec978aaca76e83e7540425d0d372a33
MD5 0c3f6f3196b93160d2e65bb3ec8e1492
BLAKE2b-256 3e8b612a2ef6e56dd0c93dcf6cb7a51799d0181d694be0063b1a42e2d2460e26

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4df12460ab5f9c35144b4c517b18f1101a98321b4ec76d6e0e4f94cae443dfee
MD5 6505076452fecdf9e3476d8ee4d13e1c
BLAKE2b-256 eacbddf8d4f4378e9673d8b3c3a5f290a63962306c4d15a60921fc3adb952ef5

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-none-win_amd64.whl.

File metadata

  • Download URL: snapr-0.5.0-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 bc6ffad486ba59943281eee82c8b5465c315b58d2623afd5af9ca653704fcc44
MD5 070103017572d77fa090189ee785073b
BLAKE2b-256 dcfed8c4741cba8a4a158a5d9a81b74f7c314d463e7411446d4b47d38c4cf79e

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-none-win32.whl.

File metadata

  • Download URL: snapr-0.5.0-cp312-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 dde6f26c04b44e873318372f88c2bd949df466212007cde1415a9cebba45c56c
MD5 1baa20680d5462b45975c3c17f36efec
BLAKE2b-256 c98223cda117d932a6ddc82ff3e7d9045ff0df4f12dceebf73f965586c7411f6

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 859d02f4117cadc8401e95ce7248d25ba821f5838da0c05ab75645dae653eab4
MD5 2d075d3ac322211cb04ae181a976a092
BLAKE2b-256 ac38bc2c9647995f52a9e0152d903551d700bde8afbdde69ae36690f2dcd4e61

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d9e411446ef43ead675973874811024ca52660a1e1e69d0514a973a21ef937f
MD5 8f06197ea7a1b256d5ad5c265927e6d8
BLAKE2b-256 d108601dd3c39ecbacfb0c756afa7815a5e13a82a1c3daefc6cb4b4150452c66

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c05b582ac1b6efdb5488f4c2e9688d50f42b477139d27222afe45a6b191de99
MD5 cd88781a7aca7b958f1796fe26ee8b1a
BLAKE2b-256 f1a76548e225d406ac9a8d0c01ee1aea4260000084195835f6825b9a99665883

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9704349ca8551496c4a7a350171e4cff03657e42ad0975e58de11576c7fff87
MD5 a05028ae6e928f78d239b95c420514d8
BLAKE2b-256 08dbd35bcc8aa129498387ebc77a0d5a3ee28a421875bcdb8351b837140800eb

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c1e950f6c00e20493e8b56ed873a74ce2c48ed8fcd448f7e171a868df154b07
MD5 1c80b58bc11546622ea8ce7e48a5a328
BLAKE2b-256 a49eabbf75d28fd68c92997b59d90d443c7b89ed6fc931e51913ef811a13a59d

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 572b4b459046a064f629e21a718e4c97156805e7df616c0d645a5fe61c9ef983
MD5 e2ccf4887b26c9a161de1a00fca926e3
BLAKE2b-256 c823b368ea7b626ef524ad07cdedc7d82acd1829b29a3838087871824b667a42

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe71b90c27b6dee87cec05249342847a249a3e4dae63981bf53feb4c60b020d5
MD5 53079240132dc5fcf51097402bc6c0a7
BLAKE2b-256 61495931f7f94f8885e553df82fd1442fa611a6e5750f644bb41f35271dba428

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b4303d487dcfd153ae18934cf66bb522830795e91e936757f6ec7bd0cae3adf
MD5 12705800ffe1ea581cd9da11f4d85309
BLAKE2b-256 39286b4651dc015bad295ca6584a4c7a2c261935e8f93117db93438447d75eb5

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-none-win_amd64.whl.

File metadata

  • Download URL: snapr-0.5.0-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 60972c43dca5e7f52233f65dab6c8a527d7f5db5154edaafa233cbf00986f88a
MD5 b2f1e2d14870800c4e952a7666ef9314
BLAKE2b-256 01304331e03ad1e2d176e0e133930303bca773fdb99894def442cd5a5d79a66f

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-none-win32.whl.

File metadata

  • Download URL: snapr-0.5.0-cp311-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c415a2b2427dcf20f734386fd9210fafb72260935f246c0ba45f39ec29fa6855
MD5 8dba1510696c14176112eb128678f5fb
BLAKE2b-256 87cbd4779e408e6c20c57569ce348f7e2c2e41eed624e07a03001260a32d187f

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa6c69742919998c0ba305e8c4520ba1bdd7bfb621168a9de254f50f3b7baedd
MD5 9d9d336007666f882ffc6f4ea6acb1ec
BLAKE2b-256 f95cddda42b7af207b1320a22a3d8e7d5bf56b0caee2b82a16ed839a391ee74c

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73ecfcc635761131ece4916d07173b2b87543cc35a57a95c4f64c60f9e2c3f98
MD5 627235c7a30b9fb9231ba3df4bbe1fa3
BLAKE2b-256 e1754fc2c98fc0c5eb1e9e9e4e1a50fbc9d8cb131d7b15f61d4977598ce054f3

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd00e7bdcf92682443074e349d1623ddb43d5f9a46d4bd868890b2a6c6b5a6cc
MD5 edddc80bdb8f39299559da8abef70556
BLAKE2b-256 c5e6871bd8121f161611e715c27d2873fed00b010ecdc4a2a7d24cc033dbf68e

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 657ec49b52ec962578ccfddd45a3117f63cd62a18c838e8cc2a7a806caf3f546
MD5 6039d3ab4751f29eb83dd8191c388f65
BLAKE2b-256 b23b1aafbecd77a2d7139b628fd0b8b49364d53b716af6f91017dfbfebd89d1b

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93ea4bdd342e7b0bb1c68471c37383b0dc5d0e2606171c7c58709645c9a3e866
MD5 8e6709ea8d34fe079949d45afae58365
BLAKE2b-256 36b33e503ed89b941ff8bdeba0c9060b28191c9cf843145e23a72246332e418b

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3880a48144b921bc6d206f6f66553f4e6ab3cced9f0e851375c55be677aaa858
MD5 04fffe40f48bc629a0eceac8aa36055e
BLAKE2b-256 d0bfa6cffc55d3d2598f60bc3110b132254889e07abdfe3a9a5812811f51ac79

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d35f74209f081311f1ed8d3ab3071b906e3bdc8986ba22d8baa4f038bc8ee073
MD5 47dbf246dc2622db637350914d7f2f37
BLAKE2b-256 02a90b94d2e48acc8b2703611e4e6ddf236d739c47234b4298106f991a703b77

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6804bf3ed7f58a484e5bf04a3f466abe49654128d579a92aba349aec0c146308
MD5 4a525925f084bbce1616d985be1fb808
BLAKE2b-256 f6ad8a7fd669072baa25865f2736478e7480e5a2f1c052f23d74d4c076c59156

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-none-win_amd64.whl.

File metadata

  • Download URL: snapr-0.5.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ab5c6bfd87b63f1fa4b9f343baa6a0d846c51839fd878b69d98c447d8b8ba13e
MD5 73bc3890617b05dea46e9fdd85a6eff2
BLAKE2b-256 c9ac9ab237f69a400d91a9e540c565f72c82dd4c37f3000a87d2ec5b6e1e153a

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-none-win32.whl.

File metadata

  • Download URL: snapr-0.5.0-cp310-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 902379952bda9eb5534c444f75a09a5ee4b2de5dd3b2fcd132b00ca346cf01e3
MD5 135f5fc662ede4fa63a396532f6f13d6
BLAKE2b-256 73412a47dfb6287d47f2b95bb20ddcd6bdcdca0b0c63cb6b4506666441bdbe35

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c686f6a40b9552f5f06c3a772ba4e18dcc5a5db5db028b6f8015de2de31b9c1a
MD5 5d6a56704fc9fa8aebc9d934efc60e92
BLAKE2b-256 51e9452d7b380aac7f06646d59d5600c377acb4832937d5909538a4717c1560a

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d32398e7917a33012c0de8a85764e5840485d6d7a00c0fe7ca027f6fedbe119a
MD5 30c0705473381a5e9f693e14f26e2693
BLAKE2b-256 5a36146bdabf5279d58eeedba2a5bf3017fd217a75f3a63d2228fb6fd820ca06

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7556996187074a9d6491eb48e919275251bcc5c4ba12341b5260b32a6c61b5d4
MD5 7d359199fcc1af571cd616507a78096b
BLAKE2b-256 c2b28d3875efa88ca642cc6ff9623f12a3889e96cae18ba094d6372c0f48ab05

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b729c04213fda409efa35f2072ef8fb378565624977f1253f8ec07d1f119139
MD5 1949ad3c38a2ee68036ac0bc99e5514a
BLAKE2b-256 052e84925621ed6bd32b5351578537fec38c2660debeca2f87ac2874fefbda7a

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36a54cfa35cf0cb5f6d6e753e325e2296f59f9ff5481fdad79b19266d9f34f80
MD5 817ece2841450d388503aad8e3852000
BLAKE2b-256 086f80f411aee56c6f0bee4bd8dc50c3f35f45a6d15dc3aae49db34f0d4096cd

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e8c33da44cc4ba87cd833fa15bb0d750674bb808d92a8556ce3d2d9e46ef3a7
MD5 8de53f61c218a0c2ec545a3dc8f19fe9
BLAKE2b-256 64ce53db4131815d37be0c74e11daa04765426df6de876eb3109aa8812694a5c

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfa8f8ca340489c7dcdc4419e58eb7187cd8c56b8db11591be59317be01c97bf
MD5 a2ec874f44f4f62db42050b3eb03ca6e
BLAKE2b-256 d3ee24202952ce916257409ee67c7b9cad64c03caa0c5037e44ad528627133a0

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-none-win_amd64.whl.

File metadata

  • Download URL: snapr-0.5.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 bf823359a31efd1e8ca2a7567f51eaa2a1eeb87b9ac887148a33b9283310178c
MD5 11d0e1d0031a439f9070462d4f083417
BLAKE2b-256 97edfdd21ce3c099628ed90c469fdc3aa24c54bea2e53f0df4fad846ae8f7236

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-none-win32.whl.

File metadata

  • Download URL: snapr-0.5.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 222343cd28650f7b809b499f5e04e8e94819109fa0b68349625711f9d131167a
MD5 3ba3b3b970680dd6a98b80b026dd70c4
BLAKE2b-256 f178d9306e833913339af194c08977df836ac908e973ffb6daa73db66259239d

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9885aaca936169019bc9b2f5c123e634160d9a7391b5ad6cdf2339cda3800b9d
MD5 b0b6e9ca96b5d07f56e9bf5f9a367c0f
BLAKE2b-256 9fba22decaa24cdbde0bc24a3962caf0cf0e6d1b6bc48b2397968d0a47afc4e8

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4474f507174d5b49d7e684973f9c3afae01c4de8b54bcba35195f5a1821a77d
MD5 fa613e99b3a9047306dd59a1834dd0e4
BLAKE2b-256 659d47c574488b1d76d9c98c6116c724b900f684fd010755fee7ff1336f6ea19

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46b5f176f167cbe117411dc10f107f1e11538072887c94bf98bc0de536a9c8ea
MD5 94c169c06d1a06aac8bbbbd292c933e3
BLAKE2b-256 2a717c6ee579164284f00a321846aea951a1b625540a38e41eb1cf6672c6b6bc

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd5a5ebb54aef42be14c6c843cea22d6fa0c7ad782552fc7d4a0457bfdbabd4d
MD5 1ac93c7ee3689d062e901489ea0be29c
BLAKE2b-256 7269c3643e1b12b9c2a475725b5b05ee2502bdbbc0cf523f7ab08198531a0a54

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa8bf3ff883df6b99cb3a858317329a3956b5938067b874b126a128307f55230
MD5 d71b1d51838fa0c60eb621d82c18d207
BLAKE2b-256 9e5e0358025fec79537a1306488e6f3b7c11ef9fef13f972ddf075bc0f35207d

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41833bde24cd9eaa5e37ceb95fbae6e8665b4d1b51a836e33d1bf11c5543f378
MD5 6e8c263e9fbff392195c357dacd4161d
BLAKE2b-256 91b0fd2a3b6dd42b4f67d714789809333ca6f08fa840e2b695ecbf8b44d55f97

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8d7af3256eef2ce86cf51fe0bd487588ddf83a74a011539b2c8fbea077a7900
MD5 94f8dadfb1d70bd2dfe774a89de74e25
BLAKE2b-256 8b7afc8d32493d16494edbd4ebd085b42103fc8cceabc6a689623d4c6117ce36

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp38-none-win_amd64.whl.

File metadata

  • Download URL: snapr-0.5.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7c90f3ec471ceda92e3b1ee7485772909b8754f69cfe7ff486819fc4388bab89
MD5 978d48533080f9d4138473619700eed8
BLAKE2b-256 d0d9e9cbfd31e9c7793464cb43e892b590c45c512e24b79d84d84fbee61797c7

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp38-none-win32.whl.

File metadata

  • Download URL: snapr-0.5.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for snapr-0.5.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3ea6dc44ba99bdc52de58ada5eef947dfa6008c5474c3a2a9f3b3e870231a6f2
MD5 79f70af12d88be1d5ee80e7a0ace5593
BLAKE2b-256 cb6765f6d03c32f3a5cc3abb3f5a804db9bc9409373511669621fcbb6e7ebc83

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4710858c0d1a13658194a7f6c2daa6d72682f9a6d85d819e7e7d3f4dcbb6f3a3
MD5 bd4cd094c90a821b7fbbfeaa21ba07fd
BLAKE2b-256 87630ea3a3ea2eb91f209a57a0a73a12611865bf5e4c772cb3eabc020db894f0

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9cc4822dfbd2dc5e12c9d673633f63fdb4fdd23a8d4c386a09d8934a6b0055eb
MD5 70830056fd61411e9009bbfcdf092eea
BLAKE2b-256 398681809448b85973f6bdef49ee7ba2e1bedf4f54835ff30997603dd08f549b

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa8a5ddda1fb16d45cc3c426526ffcb8f62ded568d0acdb28e992becbba81f9f
MD5 f58a255e7005af82b60245af1fe89d86
BLAKE2b-256 4f9fd82d15ffa832c28fdc99aa091a55f1531d02e6127f623e590125b7f402d1

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cc037e6d6748b53c342674cc101d573e4666c69d1c39569258edf2f005aad16
MD5 8f97f8da900d88752d46789c8f39c422
BLAKE2b-256 75039ab9c9b957e871d7c25bbcec792c99db854b0cd0c773060967e467f641b7

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7fe6d9ff80f889310863ee50c83d8b6645a739a184b7027d2c2389021f1de9a
MD5 ed6407e2f8d4c3ff68875441e1c345aa
BLAKE2b-256 f12f94f862c88613601b6385516ef9a5e1eb31b75ff83478db44e3c470e44d05

See more details on using hashes here.

File details

Details for the file snapr-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for snapr-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52148e1983196a5c093476d89ff546f8cab4624c8ced1d0140fab4f25c3bb982
MD5 780f8e3688e4fac655b728109cd53a0f
BLAKE2b-256 d8712f693e8511528b2d752f0c1e550f345f33a30ef2829756937f2edf6c30aa

See more details on using hashes here.

Supported by

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