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.4.5.tar.gz (32.2 kB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

snapr-0.4.5-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.4.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

snapr-0.4.5-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.4.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

snapr-0.4.5-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.4.5-cp312-cp312-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

snapr-0.4.5-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.4.5-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.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

snapr-0.4.5-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.4.5-cp311-cp311-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

snapr-0.4.5-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.4.5-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.4.5-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.4.5-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

snapr-0.4.5-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.4.5-cp310-cp310-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

snapr-0.4.5-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.4.5-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.4.5-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.4.5-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

snapr-0.4.5-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.4.5-cp39-cp39-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

snapr-0.4.5-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.4.5-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.4.5-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.4.5-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

snapr-0.4.5-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.4.5-cp38-cp38-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

snapr-0.4.5-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.4.5-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.4.5-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.4.5.tar.gz.

File metadata

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

File hashes

Hashes for snapr-0.4.5.tar.gz
Algorithm Hash digest
SHA256 47c88a98455e24e8c7fad2c37d3e086f329af15b4033a4c4dc51f6e7ce5bb77a
MD5 06214e922a2371f9dde9f8d3c108fcce
BLAKE2b-256 02f94829eb01c4ab63b700536c0c3ec7d94a4ca6385541a771261ad6daa76bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca8c884fa2e0991b48b9e09f20f1abb0d9dd23bcabed92cb96eb866a4ba27c38
MD5 92b36e3c699bf2c73937a979ef1306f7
BLAKE2b-256 a5f7eafa7f712ded86ebdcb6152f709fac71d2a4360822b392cd7078837a06a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8088e049ed48159d17120362d5b937e08ab1c006b27c728cc5dd7e4b7b5af63
MD5 f0839162c6af37b3c0c19d6c4f3dd127
BLAKE2b-256 ab307851822f0698d9d45ab837d30a966bd769f3c90bc2ec6bb2cf4a79db67eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98ff8d2dbb87a36500697be435bfee2092e4a7e3eb833431201e53de70d660e6
MD5 aa6feb19ab865f3402ccd6cc16ac715f
BLAKE2b-256 214c524540ce1e133a9479388bafd3ffd28c3ffb6ef128202a9af81329da6233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db0b543bcc05b6d40418b572e71114cfc7a0e67eea44bd9a54fc2913459008b7
MD5 6176c90772f4469c28551e09e220a164
BLAKE2b-256 8cc08e79a73fb0eeed89e1cd24205dce7ca914dddeb6ef01d81e4c1b910d381d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cb31f927a8ea209a9f756455ac5344a58bbb500b0bd8dabccd53d8d03bd7635
MD5 cef6552e1e00fe4ff578f246bbdf978b
BLAKE2b-256 eb77f5051a5b730e712094be7ef5e30bbc72817c3ab4a7e06ba8817bde73ab1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e410c819de8865d2afec674f5696e3790d3bb50b41b96d10e0a3cc6ca0a86bc4
MD5 9dde22dce2565b04030011b9b4d4d53d
BLAKE2b-256 689df22e24ce9f0b333da386e0e1582d8bd8c2a185d08823fc0db9df8d12e2f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39b51ce8220feb9b76bd9c207dcae23f36ec2e9f51d215b828a09d4e4bae49b3
MD5 32039389bb7a23f97d0f756f33607fed
BLAKE2b-256 8a683a7cc79348dd5ad874856a092d75c9130bffa5c9750684c6b5263758e105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 faad6514fea4ebfe6e457011fc90914c0aeab6b39455f849d9b0ee7c147715ed
MD5 0541eddf2e2529af2ca7253792be2497
BLAKE2b-256 8df7ea95ea58b4c94f809bf177b26030784540e5177cab75473cc0228dee7833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8e29216374c2f6c73bcddb61382edefce35a9d47d7ec8e14cf54b706a5aa5b6
MD5 daa25a65445f498f2b9dd6ba2d90aed2
BLAKE2b-256 989005254f8d7220b37cf83b74d950a3c95cf8a332d542f5f55692806b24f282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fff1ac4ae9e700fde2dce071e0b46fdfb3c0e2a916eeae046ad2a34e02bdf6ac
MD5 3d65e770e48f36dee690242f784405ac
BLAKE2b-256 83e9961de17797815575b49bd03ca76c3b00b1c8b7bb08901e3ff3ceae6d157b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fb613c32a928c8d05b4dab19d46894ea06b4fad10d4ee789a2711a05ef81953
MD5 cd138163d01b12c74161b0f6a39d3e87
BLAKE2b-256 4260e62c6b81d62698025d1cdff60cd4a12feb23ef2057978ae31f35d5d1372f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b73ff438f8988bf03d0b6b0860defeb5d38de073e962091ec3565a7c221ac614
MD5 7d90c650737a70590e301dcee0cd1b02
BLAKE2b-256 801b61415f8bb2318c51277eb95935f6f1cab30cb7c1925fd684433c1b45316d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3aa015e43ba9351837dcd119914a4619da152c0f267d53b9430e248830b53367
MD5 948f4ecaaa1acefb8e59d2436d0f54b5
BLAKE2b-256 9e81ca163f4e9d6d5f2aa0d6316cc1d6b2d28ddd622749ee177ef956548663be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb386f1c95340eb9ace4bc1270e29a374da8ff863cb8d0f7b07259c216bc132f
MD5 4fe56295572201f3ad7863791da4fb1b
BLAKE2b-256 23d87f199fe43ec45aed5a72118460e089d6873e52257457945d21df21372e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82f60c36dde242b54c2ae9b27cf6403fd3cb965cd143b4a7e1c616baa8fd4c0c
MD5 8e68de9c43c0479b3e742733f5d1a125
BLAKE2b-256 babdd00d4d18c97a2b66e13c7801595dfc5d9fc94c85be1fb3a4ce95ecd153b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd79bee8dbb52a7f21864926ecf7e323911caa9171fa8d8376d11910077e6f3a
MD5 4f0b7c2a32dfee84920e83087548ad8f
BLAKE2b-256 2c80d790a8b2cb94f2691c053e1154376fcae2cabb29c25c4f5a5a8ab349fb3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 68e197f51e9dbb633142940d7abf7000f83eb22bb5788aea478b42c41ea0faf8
MD5 8a6ea7c0ed59ad3ab72691ffd82f5bd3
BLAKE2b-256 c7ce4bbce637e25bfb8bdf045a7378488f6fd5aa382c4085b61ce10c2c2c1b86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4a313783ecffaa2d5f546d3809acba40adcf92e54e9693df1da9a04271da0ab3
MD5 062c1db1d32eb68e86f6aa2df69f4882
BLAKE2b-256 e4f520a6f83bf66d34c6ba5e571e75abdd65c2a6ddf7953768b44d18f0c29c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1808a9ba33f01fbb1de3a9a3ffa3f4eb7839132c38227b0dcdfb77131fee4e1e
MD5 99bf25f231ab99c9617fbb681bb72141
BLAKE2b-256 4f21e2416ee90331906b61527c29d72e023ba0fe48c0b4846462385f322661ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d86c91a32b026a76251b9c6868539022cf9d86ff35f6a70c688c822ace80e69e
MD5 fefc5c29e94cd31a8448f17679852679
BLAKE2b-256 313bb8ac8d3e5654df1aaf2f31feca647531db2b7b2646523a18452c53caaaf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5b0029a99f5fe55b779a68bc4c4d0adb84138d6256242844991eebec8fe5bcf
MD5 3b042824f3846116b94e60ff8a43bec0
BLAKE2b-256 1c75a2871803291f5fdd47895be007c003c8b7add390746c250d2b4294c65ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96840f7cd15503aa8a6fc5ba93e1f869c1d2a5b01da288c46321761022f3d888
MD5 07a66cf369e4eaed2683a951c9e39f64
BLAKE2b-256 de273694e3ec3ed745d8111c6935e53273254fbad2d837788e7f4b530597b1e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed16efd8de70c13cfbd956bd513a88308f89ab604868664355d49b52910d11fd
MD5 20a03a5efd7b2d9fb188e0ff657f024d
BLAKE2b-256 dfcb6d32bd158b28626594bf12d4f18b15b88656e6e9ad61a8fe930b9a88f523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 deac7aaf49b8dd404a45c9d220e7a28e845ffec2dc1220387da999b3ca1f64a1
MD5 f7404cd9865988bbb720f1642b93939c
BLAKE2b-256 cf1fd43d71975484cbdb54d7645e2fbcf2edfdde9192b0229967607bd7a2bd9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8d71394844f49d78f9b9c8e7a9c58ae26d7a9600bc3e4dbc277a8fe7964c680
MD5 3b0ef36361acbfacf961f74344eab623
BLAKE2b-256 ec78aa6ab04baf2bc50b09cbc52bdd12c9d7007e69f76eb76a2f486a911493f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58bad613bd90f33fe39b2091c530adc51fa24ff31f6238c04d3b20264700c8d7
MD5 38e52b07c3711757a16e05d0c8836b03
BLAKE2b-256 fb3b31a229655110409756d2cb2a7ff354198a185dae537d775a996c061f4033

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 7010c75bfad92460ae15f971fd4adf8b2e0580188171613b56232c8ca3180497
MD5 8bcb5b7dd3d0c637588386073d2e31d4
BLAKE2b-256 b7b268c233c61fc6ef0aa84d436571af00642a5bfcfa78d4143bfff9adde08d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b836e8c59c31c2a60c3bd971e95a4f7a5e608dc60aa12cfb764852083f539db6
MD5 dc548b0de3f461cb0326f993cdb690e6
BLAKE2b-256 4167c313f599e4a38fc247f8373993bb16bd4b19f1f09530fdcc11cb4667dd42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 106d18aed3c5f015e73c518e7f969ff2ffaa6256593cdc28cdabcbdc7575a2cd
MD5 779fcad9957ef5177d2e6627594ab8db
BLAKE2b-256 e4522811a82134f52c6476520f75c8d9c6f83580cd79165c673a43c4bd419853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9068bdf1dbe2d9900e00cb1a9c825c5a209b6ea7ae425b99acf21fe463cfce0c
MD5 8865c994f7f5b61c8e53488bfc8e687c
BLAKE2b-256 67b2899e9b4c8f32e3fe45102c9db9a9b7f848b1da326705d6e201cb938bab11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4341c1d5557f2ffd46edc72b9f897e58e75b67209a2b7c4199a64836da4086d
MD5 dbd5408d2406baee233e4bfaf0fede34
BLAKE2b-256 770f24011c8b031d917d19724b4c52a3060281b2f7f9323d19d3182450b71fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11007da392fcaef4ba3b9ed182cd30680acf8298b60efda6a43f2a65485edde2
MD5 260e4c907412ea93468768e3ee827fab
BLAKE2b-256 a2b78afa7af817520fe4a40e1da14c6c2b34c5350ed134bd1bf0e05d1f51414f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abfd05d4e50c3e0030810e12830d0f608cf2f3585604db5da3022b256ffb3623
MD5 d1ff8d11a06e38eced42304ef6d3c600
BLAKE2b-256 b05647b4c04e5b45d15e43764ec7160b05ecacc0e8b81168a74c58708d3630ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95218ba3f2d5f71a170b3a918b5947f12d799a20e8bca28fe7cdbd3588791ea6
MD5 f3d8fbe85748f5482653d2ad7061aadd
BLAKE2b-256 6edf5b472a6171d0056b2c94e46c0178b4fc858dc807fe9b2fbadd012fd47e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 724c1f64a2eaac0644b77cac47a9d63b924b1c417d9be35483debac419a2bd06
MD5 5184b3fc03d316eb691fc92e7842635d
BLAKE2b-256 3ae4a1bb6fe691222750b0e025170b6901c2f7217bc5f7da905564e43f95012f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8ce3c13d6e7341c6b059038fba6a0b4143f222bc323ba5061b75d5073c326f7
MD5 3ada8db1d93b11cf0851f3d2cc7ea97d
BLAKE2b-256 8eed40dd10539ed0762255464ac3bc7d22b2a042afd22c8de6333f1ec5626265

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 41ae770add7df32d7597244b1315843f1137f69a283b20667ac520ea08a98e74
MD5 18ceb628f28f877aa04167d5c0354b84
BLAKE2b-256 1d62687b7d74a4e781df637e40bc6fe6d39cd5db13e931cd05134c102f89fe0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8865250f8a06375c6268e4adf9e1758dd7b37b6847c476a1c5cc95cffd160ad0
MD5 19ebc8a73183f215924162a56d488cd7
BLAKE2b-256 3339a0714ac995e11a3a3631f650b40df7af22ffc7c83db38191d19ce6a119bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4562b6b5f8170a5396e7c8c20f88ef8495c48514dd983ded636f58523acda1c9
MD5 27a4d25afcd285e5117e29d435910c2b
BLAKE2b-256 ddf178b5f22b08826bac9e22bd68afd7ecd52160575d4ca22192b8c85779825f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e2f04be341504d93415c3c42b791c9fdc560f6e85c2d6ceb99a667953c021dd
MD5 1c919fda5c3f18d54bfc7c4703e70527
BLAKE2b-256 42cfa2eacdf27316e718a5142d12cd9ed8f54d99e979b0a66b83485e4e18ed19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6421dbb0add6c2fb97c8526da614abddca1605f39e40fd321f57ab3208c084a
MD5 c0a47a741b59e07fdb9c51d0767d50a0
BLAKE2b-256 02409087dc98702c64a5f002b5960b803e2868e865f5ff2998a63d254ccb820a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 154271228330d63b8499766540c66dbd58558b22488aa2ac4a94d47007c4241c
MD5 e91fadcfc0f01204d83abcaf4a180924
BLAKE2b-256 86c41685b33eeefbfc30a807fca5a96b8eb88c5df18f69a79027f381cae36153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b925155f52152c61e80a3718d910593ade8ebceb8b2ec4030db8eb3f6aee26a4
MD5 2631b04bf1acf384295267fb142ce1ef
BLAKE2b-256 f2c9ecf486ba2e9c905a103fc7abb77c491a97ea5fa91776875bef419be2ef0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac2d1da3df2aa2177321672721e58bd21916c9660c87963c5385d012f4620071
MD5 7c6142844622fbe30f1977caab49a798
BLAKE2b-256 240986ab6e521e00ace2ff915f5c2981d97a38badd1a560907145904509042b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af370c4210f7092c985772b011bdfffc3be4ef75da4990d1fcb78958ddae96d2
MD5 4886f3272566aaa6f1a77fe7b9fcba97
BLAKE2b-256 7316306e6b612bbe06cc6e6545a7a82b8afcd1eaf5d66aceaa867fb4ef4576f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 baaf5195e0d08e893d6636fa71c434e174db8c3be3dc997a3de5f1036f5f665b
MD5 e1c2a3e53c6cf04dfe1684c5b8802344
BLAKE2b-256 2829669999cbc63301b65d7f4e6d8ba53a0203f1ef0be41856535d706ae655b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8c8e7d30c6bd6ff1cae2d57d93a23c0a7244b4633dbb7e5f3c5c05db8998a294
MD5 8d3603c409bf90140e697736fd35e855
BLAKE2b-256 f28566f73e9633e55c23d8adbcdb66572809500be49503a6601295a468fa22f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd99a24742a8fed3f979f4f8d83a11b1af2492bfed90a78a9bdd7a24774b69f2
MD5 f3bf3760e2487d892c2ff4e26680abee
BLAKE2b-256 826a0c28c85e2acb7ba0368ffe3ff402d2b247028a8a3f1966941065a602fb85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21115b6a6086b026149aced1347cd702c4f75b8c4c015a59c72027273d229734
MD5 67d7f4ceced14ebbf977fd2f969f5365
BLAKE2b-256 661c84d05634a96cef09017162addc9a6fa6a50d5284944a5774d09b20ac59d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b210d964144bca52f6d085407d30b9316fad907146b5c0a77bd8cf30e171180a
MD5 8e93125bd338f64b386e33306427e67e
BLAKE2b-256 f999887d1e1ff294cfab172cab1d932dc5b1078d565b5e414e46d80bccd222f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cf5246d41de938797d99e52a94a4e934deecc2689b9cc4e8c7acbd44c243210
MD5 c6d928c2a583c4ff279f658779aeb104
BLAKE2b-256 bfcbd5893c18f365d0eecbffbe75d32ff6e1a0cfdc7e6b489c51877cfc47042e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a4b93c2226d977f7d0fd031370187dfd09fecac0ac2ab13716689ccbc2ce092
MD5 2a40b1d7183a8083af089a28a40a4516
BLAKE2b-256 0719435d8790f28b00788755c7ab53cb22da8b529dac7e536d34ac2f6e383876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c90b9129775c6826a43348c06d4d4acf7174e3ba8aaf70574d22952bc927ac6
MD5 ce0ea6d6a4bf1488f01421e4ca657659
BLAKE2b-256 5a7ee32fb20c9ace99b861c8ed0cfab69dad598818f1fae56835b8719136d93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48cf1f027190e87aba34d24c343a4069f2763255ace1a9a00a7676a1488ee995
MD5 447414dc45f89f8ec484aaa40e3e0ed7
BLAKE2b-256 5ff731865cb05cb178cf102cb7fdb906bdadc54296d75e90257e19328c644468

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0a8d3c73d8634cf97727b0a4dc649c4767bf4fb8c8ed4435d7a16ff71318856f
MD5 c45887c4d89ffe312b5e8e432ae9855a
BLAKE2b-256 e15b310959de1c820ab1254abac47a111fef0b7a2a0073c2a336eb6336a28085

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.5-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.4.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 489407a8ad4059acba3abba68622346ea77a9e3bf958a205cec79669e0654a4e
MD5 67fd9cea400c5d41fa2bdec9fbf66feb
BLAKE2b-256 7821142ecda4b258fa3c423b61f020cf79ac675a050f77c55276db8383eba216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5bf53abb00fec1b66f76516a6f99576ec9dca1ffedf77a1fc034ba09a29b1a3
MD5 b6cbb96c976d1c9ac82b81f5b0992a90
BLAKE2b-256 8e869694a3df06cfc8b6f9f7b0e1c9596ecbcd98c2c9b5799f659c2f1880df4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0002b9eb496d4dfffbe4c0cf93941ad7847af1e400ac849e4c96aee90a9ef86
MD5 d00fa51fa92a04daf79f4ff0d7795319
BLAKE2b-256 df4c79be83b6a6a0af0773859ecbb62f3be94bd1f591c8b9d7211c07544a0af6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe69b1218406bd03cb5aa90195cc74f6edb0ee6d5e19a22ac5052e30b172f7ea
MD5 6ab182b8b2fb8ec99b513f6467b8879e
BLAKE2b-256 f22fe09e9a69e9350f6d2321ee6c3b9ad262451fb4054323e18606baf3f7f62e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5cef0c63f6a60184a948103c127db7333972751cfdca77d058fc8b29450d471
MD5 b5d297a4c57e3b86b9bfa0389ca5867a
BLAKE2b-256 9c8a87d71f8b5fbbc21c90efadf83a761d393bdafe2225775cc64f3fae29b8f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef71885521d5ebb89cf2997d7ef133e5d98915cc80330166c377c155e2283279
MD5 753f634dcfaed8920d1d5013ca55dec6
BLAKE2b-256 6f0fd39ff20e5ed3f4b94b947a652b9330c12ec0f597e5bdf8a78b72917cdf2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 341550f8f2608496700be7a3de98eeba9e921a4ca609deedfefe17a1025c5517
MD5 13151e9fa28f52e658c4cbeaa12509fe
BLAKE2b-256 e1bf0b2be69109354c49cfc8e1ae8422e0ae28b29f123cf4f2a2ee2788661e05

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