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

Uploaded Source

Built Distributions

snapr-0.4.6-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.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

snapr-0.4.6-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.6-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.6-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.6-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.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

snapr-0.4.6-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.6-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.6-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.6-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.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

snapr-0.4.6-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.6-cp312-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

snapr-0.4.6-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.6-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.6-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.4.6-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

snapr-0.4.6-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.6-cp311-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

snapr-0.4.6-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.6-cp310-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

snapr-0.4.6-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.6-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.6-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.6.tar.gz.

File metadata

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

File hashes

Hashes for snapr-0.4.6.tar.gz
Algorithm Hash digest
SHA256 d242b054a4cf31ef22cbebcb8c7b824d9cc380f430ddfa4023936f523e7aad1d
MD5 5cfc7b4fc9feca2f112d2c343e3349f4
BLAKE2b-256 96a8253d9618f0859e9c0604895e98280ba2d6c6e05417e85e0a692258200ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87b18963abe0f7fa2cc55f894f06fe1a36cb3a389e44b7595dbd6984edc39348
MD5 46f62152133622471611ce794a66392f
BLAKE2b-256 9050206fc7b7b9a7877b8437f7fdf19ef35d4133c126b08df5866075bb504621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c58143bdc626930638b4cc6cc45647d7ca55f4d68fc4287e0c6178a950dd617
MD5 8a61083a7828aa99a7dc0201e12fd3c1
BLAKE2b-256 2a22d9398afb07efecf858fa66d84d5a055b5e60d0b480a484d7426e000d8066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6e264c95c1b49daf7ffb8b921fc8d99ff6c8d9a5e4ef668522f9a7e9f6c3a45
MD5 ceb89a084275a7ebc5917df7d266ddf3
BLAKE2b-256 1bf016a006f03f43ac9746f24513801a895297f241788ac02834c22c1753efd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39142be46326c4031c9155d7c91b3023e60ebcb213f3938ee5213f62feb8dc96
MD5 cd0cedc46fd67443b4ab37ddcdba8609
BLAKE2b-256 d73da1fdbee66e67ba43ae9133b4df993e131f4670088b78a1b9da9269e256f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50352cd42493b080f493306d098ee5afce1f1a678e199cb4f4028aaa347e9219
MD5 fcae759f48371ce89e95d7402705fea2
BLAKE2b-256 4a8cac55d573f1cdf2620e24f4fe2351e6cec3faca0b98078f2e67c87867d8b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b074b1aa2349da6ee0bb453fef197b76a8999e4131e2b0af7c96ee741496a4a9
MD5 56aadf09248b6af95b2f9985ecbebbf0
BLAKE2b-256 be821932be58cd0c04f753e5b38ed8fe533e3adab21cbb0e49611f14e0be65c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a0bf8798582d8fdc41a92a13fe74c763d61d224b6aa3c9c785654c357b6eb0d
MD5 33350dee67be1b83b9c71d72da14eb92
BLAKE2b-256 c355856071fa39ebaf627d27c78f4112367179de24a58d9e7b27e056b26edabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b9c59197820407a9242d4f14a1f6356ebc49fb87f95e8849ec068df4c4278cd
MD5 4f7984dba6e6459cf3f1147cafbbe53e
BLAKE2b-256 3c743d96d5f9ce297698c2482805f49f5d0a7471d23b32c93d5deb4eae4e28f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f21d5ef0d216c40ba0bfaa27410555bbd5a6a788a51a8b2b0fac6b98c2acffc5
MD5 8aafa4e67ebcb1da69882e0ed37122a0
BLAKE2b-256 b846e41164e29f535cb97476b092670a10ead2aab518a9ae06ad24882b5465b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 222de1dff342a76466606df7c882170b12c884aaaef437582fa655b65526e5b7
MD5 265969fe6b4b145ba8b90257250ba358
BLAKE2b-256 3c68775e1d3487cf616e2d9edac51f0e82a0fe4fb87767fa9755fac11c0f58ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 512e7b7a326e5ca56d7eb92bad56a379251a24e57bcae29bf077ebc2d70b7151
MD5 a5253d052393e83bb76bba740d925850
BLAKE2b-256 0717a39565e2ad2152438bfdee9d24b51b18f7014b760060440cfe83f0f07963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d7abc296cb86cc4f0893fc55a66af8580cb41807946ab32cd0770b1ee0f135a
MD5 3745c4b4abc3b44a186f525e5bad43e3
BLAKE2b-256 ae0afca91aa5365afbab05a0eaecdc32b3fb37e55fec486193f391db6199a12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63cce272a04cc2a3a5e4e8dcfd23c4991e538a2ae28a1e922313a5f4db582dab
MD5 f71a77eb63ab59f675093e59bc15404e
BLAKE2b-256 19aac9d8e33622e313a6eae9a7e2fa1817e3a8f058e65393b59696a61993b471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69a40b329d68d0f0915e0b519b109f4f103ef88400cf94e9cb417ff421b434bf
MD5 201842122e5a0eea36b3362650e6c0c9
BLAKE2b-256 7491dc773ec17d7cb526165107256eeb4fbb0cd7be96617c1f17811b7fe9c81b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea2c72b2b65fab23ff696089a82659a5d2dc13a9f25d647fc69b794575837c3c
MD5 27c45b7bb99e32504b91cd96f2370990
BLAKE2b-256 e424d7b771ee863cfe722e8b84adf3e4d922b60299b69fac79415fbce442cec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb3a1d1338871c4121634426fb76a4cf39f84732b975047a9ec771945a503547
MD5 ee90011a1118681f286cb8405bbb0325
BLAKE2b-256 346cdf84ef0385a95e191da3daa91dbd90afa7311892a5443f0bd5eb088db3b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 6acfbf4fa7616508af21c541782a16fc40b593673e797d4710f11d0c10c627fe
MD5 4b921509bad7bbd86bd71e68ceed5fd8
BLAKE2b-256 e9d77f3b1383d8ac4a4ee14cecca9bdd6acc8764747d1470455968c92620c9ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 b940e83f035637f2b1edfc15281925093b9e3a90d423f8dc1e8c1329dbd98396
MD5 d8552f0bcd7366638085c04afb8e9794
BLAKE2b-256 db51b8a17de46ad90f7b1107c4207b27b24deec4a799a999d4223b7be13968d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0e8ff9dbb87ea5bbc80f14719842ede5463b58bc34caa5a29ee5e46d6bea9e5
MD5 9ea829a828e5ef80d1900fb748d062b5
BLAKE2b-256 1409e159fc66ccbe24d32672bb63c205ab1359ba05ea99c35e3bb9416c7339cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acf67f7dd4c0ccbbe7152f731a88004e5e6dfd082ca2e24f67ad7752ae2782f3
MD5 0cfa0ed116ba224070eda03fa27519a6
BLAKE2b-256 8fbcb3309f79c6f031c78e7be307ffd9d8e33ce1dd5af51f55c6a646d13a4b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 086f16c27f64ba9be33c4c3759f424aa9f6bcce58ad225d1d83ea97d77cd5740
MD5 dd58e668beabf4fa385e40f234223715
BLAKE2b-256 12d90ba9b93e88a9c389a66b4050d5952e03ea8a2a7bf5b7c10a70b76b47f6e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59a74d6fc7bf396549327a119f0124704b5b1442592c1ea11bfdd14f7f4119fa
MD5 5d413a52827eb8583c817b2e129afbee
BLAKE2b-256 72ff1409dbb3dbb229af986cc5c0ffe3c19061ae4f3b7c9e8fe2f4ecc52a2faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d288fd736fd57b0b3469e9d9a30abdbc656af5158f1bffb15a0a2636a2677c61
MD5 725527ace5b817bedf4a3bda695d2c6d
BLAKE2b-256 ba748052881eec4f5d45b025b7c9f3316fb3f1585d626e17d084d78b2b595d0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 240d01a9fe1a7ec20a9e58f07b52942ac628d24d64e2a0c944d40dfedb0370a7
MD5 81d21f12818c87bc95272596dea8dc5a
BLAKE2b-256 58996e0d2e359e1f15c713c25f9990726f8cdab39b73afb16b970ace6906fdcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5adfe1d65e04725c45938fd330cd4a846336857b2946d60d1b52b5ea0b7af7dc
MD5 528f83250982183248a242c408059702
BLAKE2b-256 2a94825907d61f92eb34ad69444cb26f86577d29af1b91113d5cdc9e849fa9b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca24c390e3d886644034a123b04c85d3678eb2863c5a900540c4b1bba6dd7f8a
MD5 dec640be309ddc5d91d96720a45d40e9
BLAKE2b-256 7b09541d7dd0508aef7b794ddb6c8a52019d3ac31fea4f1a678e815ea023a8d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a3c2a9ff578612cf42198faa4b44a09a2cdd29692cf8c0d57fe04dba31f68954
MD5 ba1b93d6c8ae617a5ab92ac7e96c4d79
BLAKE2b-256 92e61660ce5266c393767e49445c263fafe17eaa9604f8eaabe86ef6da377241

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 1dae5996f330c04c87ae1c7a47c90dfeb3148185521a47f8f97c7c5addeb5ceb
MD5 bc7d6d7e6ffc453596ff0da3f949adf2
BLAKE2b-256 0279269b588e914a8be1acccc8aa8bee2eb40d98f85add5d8e333d545084ff05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a26133d1b7acbb83833c018a0d46164321a3dd546877dd499a345e4d6110fc31
MD5 233a333dab3a0951f790377bdf484f51
BLAKE2b-256 481050ceada2282f1b44b208a24b3610ad0d9f8231124d1ad0f7fb1e74893c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 416748b15b0cc98af5a65b7865047b6cf9b57f1a07bbfca8788be892588f4c47
MD5 be1cdf1c564c79529df0c7cd4632bb76
BLAKE2b-256 4b4dd120fc48775020d74ed8b1ea6e413f37bd0adb8d45b3a4e9f84a3dd4197e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d46e93259d1257252e1882e7666fa8b6f123b9b2c73c3287b6d008a72f1939e
MD5 5e856bf7dd1bab59696bea188ce589ac
BLAKE2b-256 495cfa3ba162ec4709e6983bd6e5214e790d71ebf694e00bdcef1af82c0c0ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccdcd7bade1bc1edb2683633928d65886a5c2c476db51d34f838eff1d558caec
MD5 93a3541d87bad7c7881f05d1c3471632
BLAKE2b-256 1f3cf6580b3cb112875ff509ef7744e7554b2f5161d80b051affa5a6806bf5eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbb66fa82cfe06441bddec5e4518f6ee5de8d61068ca99763b3775be425f3da0
MD5 fc0a87a5f1315cc09a354d2115167269
BLAKE2b-256 512783159c2e78e2f8ef79520a822d02602be3f7573906d9d4aaea39e229a4da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfaadff614c55ba96e79a83064a9427ab8dce3065874789cfc9e17735b56da22
MD5 516580526f49868e6202448611db63f7
BLAKE2b-256 b902dc4218f3ebf582a84335a3e56708ae668cb8b3e50d33932e20621a843866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac5a18c025ae79069e599ce90eb0a747b744db772acf6822eb4cdc6c351125be
MD5 8327fb8763aad35aef38a78fbe71324d
BLAKE2b-256 3f66a04c8296d9248b42d45a2ff22f861929288d9047a53472f241dcb429f7c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db89134951c5d28342d27e6bfb04b5e2daf54f13f441cf3e032c3f820b47216e
MD5 8d085947d9bb04bf7ce19ad72accf690
BLAKE2b-256 0ec37e072cf8ab9314407c4546ac8f10118fcdcd53e8636c0e65230d5b5c3911

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3e1bcf0b42820e0e464f7f78eeddffa7cdb77250feb4fc60dc6e9b694696aaed
MD5 317355b4e95c25614077308418c5c252
BLAKE2b-256 69329be795793bb7bd36ec807d9c55cfff31c985a365707a2e04ec3b7be074df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 540c7204b48e27ffa2662b232f07f4204ae4a7a2cbca0e4cf4ac691a0b74e5fe
MD5 9bda8cdcc244bbff8537464a8c808912
BLAKE2b-256 09df23a294eff99cd36d66843065634763fa53d9c13deb72857aed74416b3c29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be7ee0a10ef413c5d4f0c0702b904f04d9fe87a27f8714c1bb75c1e5c544e266
MD5 5b118f2317f37ba3fb69f27866bf1ed5
BLAKE2b-256 3265e80bedf7cb77a378b57f0ab640a0f3e6500555b7f1d9484335071bc808ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bad08f327485c7529c4eb691f2fdf6fbbf8702a20450b894e010315dd73692fe
MD5 afe402e11126c9d77f7d15d615ab920b
BLAKE2b-256 a10ae86e668c95d5a99c90f67b7b84ced84a7bbd352daf8dbb3a22afb4c8682a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 152195137f2c50ffa66ea7f640abf87b6b22289f0b5b2ee69fc8b6dd646f5305
MD5 a00b4518c43109a0773d4411feac20f7
BLAKE2b-256 743612f3754e2d990f4df4597b217d6b051bf67fe181e4ffb24839b3db61c67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76eed4a58394f04cadd0c79a42840618e16c2fe9f9041dcd386ff64e458051b9
MD5 ded4246f6ddebeb2171560aaff63dec4
BLAKE2b-256 be4f4b881bb4c249f93ef01064e1717109b8f37f3ff51044b386729a8e1f5b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afe231dfee401af65657f19e663f58cb8d24483c419be7871b453a44283702a1
MD5 c12968074aea8fbefd94b31449d3c016
BLAKE2b-256 999b4081b3c4db70cb096172587a9101f4eaf377767262d2e00689e3e51761ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0945c2003414f1cbde57b746e15714f2fcc1f554b65ba09b28ccc4843a47dc50
MD5 473bd28ea252c85e29ec1fcea6622f49
BLAKE2b-256 1870ddfdfff5c1fa803870045983446e0f898a947ee68ab81030592696f1adf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb194ad450120827b08d3cab22333721e527dc2a66249bffa030b538d17bbbaf
MD5 99dd616a8771096f9d70b1cdea9c54b5
BLAKE2b-256 29c63bed19e575db3ad3b6f81db4e2054e2777cf3128f336eb16f19e03115a59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 98149939c7bd3bcae6efdf5eabdde1b2f66f520da18c0f7e0eb50f2a7a21f0c8
MD5 5e1abe681bae79a98a67c27a7cabeac2
BLAKE2b-256 7efbaea701687f98d872fa0dd504cdfa05f5aae2b7626b5ff029ef8e641bcd3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c465f7903a481b25de5d13596dcd9a09fe62b0c86ed4735e07556d056af8eae1
MD5 6a59293137d0bd3f63a7ad77ee47d51c
BLAKE2b-256 42c9e3cd83e366f6c8ad11116f3de03bf97f24fbe2ca4f7626476bebec09dd83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecdc23fe3b59c81e5e231984a3c7d116fe49985225c8c51ac161be868a0bb07f
MD5 c6b84e29fedce3765c437d37520f8610
BLAKE2b-256 1bcb276296662b879b36e4fa486bf8456b27245cdfe3be7e8b17a950ba181467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6a199231c5a2bf2ba8dc5e3c045627d50b31b8e1c7baff81f524623f96c3763
MD5 612a8b5196706dd879162097615308d0
BLAKE2b-256 d300ac3442e32cc78a71d7570aa9fb185be7c08b4f386a31e53bf926f1a8356b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30654b9fe4b29a4e950f0ff9d835495df4934304d42d82097a9c5f70d5aff7f0
MD5 b4bba5ce1e1882cdf50f3826a30c79cd
BLAKE2b-256 dc6c10a4c0068c5ecc1eb45d6ff1af22f167f38ec65e93b053ca465b617c3a0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b502ac311eda5410d6e7d96e32e6eab632808e5fef694a0aed71a3ddb0a4e57f
MD5 7551f22fd91bdd9c0f6e8c0629f30545
BLAKE2b-256 28d67e106aaf49ad3bee90246b1665084f884d067c60d37675b092a6c0382e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e990402d2454044fcae43aa0b51a1745075b5c2563d1ecdc053bf4f6d37da24f
MD5 faf0fea041ec20be1e1ec805f323f76d
BLAKE2b-256 b4d1b91f48a9d6298d5473a5fd5cc132a3e0f9f9b11cbf98aac59f61f0c6db8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69c187106ce853608544e16db3df2ed6f223ffea7858a21b7504a216864088c0
MD5 b1436c46abc2ed3a9454a5c2e6e9fdca
BLAKE2b-256 fb50971ea2340f64066039381b4f9c0b857e5f8fb209e8d516a7b663684f4fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c31ea09bf54c5335cea84fab396dbc12252f41ac0530b039f428bd5c0dcc2d83
MD5 3403654a0501dd4f8a77e88ed7f29559
BLAKE2b-256 aa3c1171d171b099a0c57d441a228120b28ab4dd0da328419dfc5e4d777e54ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7d4fc4ec80ca09dd292bfca78a14515abc7d0e7c2b7ac2384e15e9bf0f3c1183
MD5 bd653f4681303edf696dab30790f7c8c
BLAKE2b-256 e0201d80fc15e11a9077b28dfe0e56131d3d6c431bbb97a1ed6122167ac702fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: snapr-0.4.6-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.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 23a1c6288316a066761d74fbd4676a88a59b14900b813f10024f25c409d78692
MD5 1f4ae1de9d9e7650c1e52dd45a58b2c8
BLAKE2b-256 05e20d9904254330a30982db792dbde7d1d9832249d5ec9832756e32557e4521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0887720f28972b73a9f7bc1be246479fdc836587573ad8526beaa3a5382b6acb
MD5 e17adadea9c2708b91bcd66d5da91628
BLAKE2b-256 ff104123695c8983563c51f82dd0d678db67bb475483ca3014a483dfffaeb54b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2fea1891ec47b7608f8e709e49a9e72f0e45bf726c1e84610b75b9dd8785d92
MD5 3facc5fed41c787b915627e40029136d
BLAKE2b-256 685a55b82b05e4de85d9a60d9098bc78422a56ee539dcba1ab1526049c92257c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8d17e31434a147856d049418150d576da46676a5f78d857d856118517da9fe5
MD5 6682b1ce81b2126d26d9fae0bb1b8232
BLAKE2b-256 0c92a927a586e102a30b34c958afde0ea0c7564a66ab73fae261e9aa820bc04c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89bcf38838db69f328e0b5126324ae4d8950cef0fe6a813584b5e45cfedf8a3f
MD5 00a10c3d2f9ce576eab76486ed84e81a
BLAKE2b-256 f1500c8c16fafd55138ef841dce90080b4c30daa9427a65450adba935eda9159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89361710a24b7a830cf837bb932b827bc30f2e45497c538701d5ae0dcf2142b8
MD5 5a155cae7469d911632579e93ec97ba8
BLAKE2b-256 6ce6757e069dc5bf375885b2d03b807b793916bf56f5e084da703cf608ff8c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for snapr-0.4.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eefd39a7b70f5f6f523a3dbad856fa6c31f58c2aff6a8b30b12d99260a408e97
MD5 a92b1c1f014eaab3fb16fdb12deb05b1
BLAKE2b-256 8f5e61eb34beeee61c2d91207626f92ad7eacfbfe413053e42aedc0ce809418a

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