Skip to main content

No project description provided

Project description

imgsize

Given some data, determines whether the data is likely an image and if so, what size and type it is and whether it is animated or not.

Formats

Supported formats:

  • PNG/APNG
  • JPEG
  • GIF
  • AVIF/AVIS
  • BMP

Usage

from imgsize import get_size

some_image_data: bytes = ...

size = get_size(some_image_data)
if size is None:
    print("Could not handle data")
else:
    size.width
    size.height
    size.mime_type
    size.is_animated

You should not pass the entire image data, the first kilobyte or so should suffice.

API

imgsize.get_size(data: bytes) -> imgsize.Size | None

Given the data in the bytes provided, attempts to determine the image format, size and whether it is an animated image or not, otherwise returns None.

imgsize.Size

A class with four properties: width: int, height: int, mime_type: str, is_animated: bool.

Instances of imgsize.Size are equatable, hashable and iterable (yielding width and height).

Instances of imgsize.Size have a as_dict() method which returns the properties as a dictionary.

Notes

imgsize does not validate whether the data passed is a valid image or not. The intended use of this library is to reject data early and quickly if it does not appear to be an image format you intend to support. If you need to validate the entire image, the suggested workflow is to use this library to reject data that is not images, is not a file format you support, has dimensions beyond what you wish to support or is animated if you only want static images, then pass it to a library that does actual image parsing to determine if the data is actually an image.

imgsize only supports a few formats, the supported formats is mostly based on what browsers support, and does not necessarily support all features or variants of those formats, as a result, there might be false positives and false negatives.

Building

Use maturin to build: maturin build

To build & install into your local env: maturin develop

Testing

Rust

cargo test

Python

The following must be run in a virtual env:

pip install '.[test]'
pytest python-tests

Release

  1. Change the version number in Cargo.toml
  2. Push to the main branch on GitHub (preferably via Pull Request)
  3. Create a Release (git tag) on GitHub
  4. Release will automatically be pushed to PyPI

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

imgsize-3.0.3.tar.gz (2.4 MB view details)

Uploaded Source

Built Distributions

imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (441.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (467.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (540.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (447.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (292.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

imgsize-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl (438.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

imgsize-3.0.3-cp313-cp313t-musllinux_1_2_i686.whl (465.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

imgsize-3.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl (536.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

imgsize-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl (444.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

imgsize-3.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

imgsize-3.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (328.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

imgsize-3.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

imgsize-3.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

imgsize-3.0.3-cp313-cp313-win_amd64.whl (134.8 kB view details)

Uploaded CPython 3.13Windows x86-64

imgsize-3.0.3-cp313-cp313-win32.whl (129.3 kB view details)

Uploaded CPython 3.13Windows x86

imgsize-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (439.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

imgsize-3.0.3-cp313-cp313-musllinux_1_2_i686.whl (465.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

imgsize-3.0.3-cp313-cp313-musllinux_1_2_armv7l.whl (537.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

imgsize-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (445.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

imgsize-3.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (271.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

imgsize-3.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

imgsize-3.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (329.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

imgsize-3.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

imgsize-3.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

imgsize-3.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (288.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

imgsize-3.0.3-cp313-cp313-macosx_11_0_arm64.whl (237.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

imgsize-3.0.3-cp313-cp313-macosx_10_12_x86_64.whl (243.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

imgsize-3.0.3-cp312-cp312-win_amd64.whl (135.0 kB view details)

Uploaded CPython 3.12Windows x86-64

imgsize-3.0.3-cp312-cp312-win32.whl (129.8 kB view details)

Uploaded CPython 3.12Windows x86

imgsize-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

imgsize-3.0.3-cp312-cp312-musllinux_1_2_i686.whl (466.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

imgsize-3.0.3-cp312-cp312-musllinux_1_2_armv7l.whl (537.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

imgsize-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (445.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

imgsize-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

imgsize-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (310.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

imgsize-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (329.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

imgsize-3.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (279.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

imgsize-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

imgsize-3.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (289.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

imgsize-3.0.3-cp312-cp312-macosx_11_0_arm64.whl (237.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

imgsize-3.0.3-cp312-cp312-macosx_10_12_x86_64.whl (244.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

imgsize-3.0.3-cp311-cp311-win_amd64.whl (135.3 kB view details)

Uploaded CPython 3.11Windows x86-64

imgsize-3.0.3-cp311-cp311-win32.whl (130.0 kB view details)

Uploaded CPython 3.11Windows x86

imgsize-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (440.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

imgsize-3.0.3-cp311-cp311-musllinux_1_2_i686.whl (467.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

imgsize-3.0.3-cp311-cp311-musllinux_1_2_armv7l.whl (539.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

imgsize-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (446.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

imgsize-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

imgsize-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

imgsize-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (330.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

imgsize-3.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

imgsize-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

imgsize-3.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (290.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

imgsize-3.0.3-cp311-cp311-macosx_11_0_arm64.whl (240.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

imgsize-3.0.3-cp311-cp311-macosx_10_12_x86_64.whl (246.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

imgsize-3.0.3-cp310-cp310-win_amd64.whl (135.1 kB view details)

Uploaded CPython 3.10Windows x86-64

imgsize-3.0.3-cp310-cp310-win32.whl (129.8 kB view details)

Uploaded CPython 3.10Windows x86

imgsize-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

imgsize-3.0.3-cp310-cp310-musllinux_1_2_i686.whl (466.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

imgsize-3.0.3-cp310-cp310-musllinux_1_2_armv7l.whl (538.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

imgsize-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl (446.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

imgsize-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

imgsize-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

imgsize-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (330.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

imgsize-3.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (279.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

imgsize-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

imgsize-3.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (289.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file imgsize-3.0.3.tar.gz.

File metadata

  • Download URL: imgsize-3.0.3.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3.tar.gz
Algorithm Hash digest
SHA256 34063437a7a14d1c985e38a4b4072ff96e9050a30f74809d116f760eea39a876
MD5 590b427572e7ad6b2a34660b17b6ca74
BLAKE2b-256 9a7bc07c235eda979e18cce49122396a39f0731ed49b459f6e4dee918712bce5

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d5deafe12eff2b75d501edf9712f1199d33c517064e66bbfd88732596de00c7
MD5 5fa6b43ae262175af4c92295f81fa0fd
BLAKE2b-256 5291bd6be391f7320bbe6bd88d6ae72f7d754060b525e6b1f09a9be768e8cae6

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92faa218199ee362337de872c41eaa493e88f5fe464a9bbf9c25c4d4cc858eb5
MD5 4d8187d74270642fe3c2951a4ee5b836
BLAKE2b-256 f56532ce2e204bf20e2b4ee753c2716741b3eba7325fa50a9725d7cc46e517c5

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 248a620a1898226c829d175ddafdfe9161f2492298d933d84d21c3540583da55
MD5 74e136acd294e7c42d2eb248ceac4e89
BLAKE2b-256 5212d0ef04fc1015c623236b16057f78ebae8049946f7a0461a753660d888f1e

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bedd228142162f7b46f10671b3c15babad80babd6d2168c433c2cefa422855c3
MD5 35e5e1bc28e89a0d92aa6804b61139fd
BLAKE2b-256 e11fdb52ead6d215f09e07308bbda1ba285581089b6f24a8283a9edeaea9fbde

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1243393f107cf7924b441dc0078df80b28a75cbe853747703b88474e186a516e
MD5 b40c996b2295c4b513e60f7b1881401b
BLAKE2b-256 5b81f36cd7301a85a22ae5fa80fa49a8df95c54c7554339487dbeee35f066aaf

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3aa55a45781697fe6a1fa5c7ef66ba24f06701b7a5d76e83b04e97667c1339ea
MD5 6d556b3f1b910782acc3351eec54b75a
BLAKE2b-256 86a1aca0adf295976df85e8f90b7681c4aa732c6872fe91b53fe9a6f92eb2c84

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b4036a201bbb93c633b8d488ce94eae432cc33b9f3e033d0f29429e604299bf
MD5 2fe07d2539c07283970ea94fc6849e7b
BLAKE2b-256 66e1e9c518ff38380fcf4cdf5ca400cbc3ad633f11e118de36a3476fe8096198

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ca72f76299f0900a1f60f261d7423bf65ce8d9f804cba6882884aeeff80d368
MD5 7726349d0b75e6d384dd7af0e0973bc1
BLAKE2b-256 5fb2844bf584cc83bdad2f87aec0c0ddfc9043a407675873f684c5b3a35e3c0b

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1db1101fc1054dcf844c24656430cb1e2591ce3d617b34546eb1550bdb989c5
MD5 af29d1614cac34640f7bf9aadfd7534a
BLAKE2b-256 57eac808b92b47919771195ce3e9ab4f67c9dcf8224cd3c2cc2f8e84921404c0

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e364c544abccfd78b3e19236f6170f21f45a8b45b1f46a1cf9e444489640ab69
MD5 4b428f2d45fc0d59e1074a7824d7fc0e
BLAKE2b-256 54cd013b8ffa677b4e489ebb9f59baef45bd73669aaa7a666c835271d3b7b1db

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d05d27c7618a4e91d90021f13c668906284b40b1af49797c9f873aa2c6d3eb43
MD5 8e36a00ede1e403dd3f8d8e68b65b0d4
BLAKE2b-256 730b190431e3a2d2721917a5ecbb10d48992db8cc3877be5368bba01524dc516

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5b5e88d60d30ed51735ed087504d9b2a3b4a6477120c9f58bd12ffcc0a43a17
MD5 62060c58c21f94d273bea42c5e41f513
BLAKE2b-256 6d932ee9e5dd47912c30059f6ea42cdb45117c18490ab2bdb1a14b1c103ad526

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfedb27d44e9a41bf0b3b6c58e716f9f883c8c8e0f5af283c19bccb7bf95dc3d
MD5 1f552b7dc411d3ab7fe99521128d4e14
BLAKE2b-256 f35019f6db232740b7ac08ed59c072fd16f56a3c5e591f24572580617e5c4149

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 788c887d624c2018cf84ca4ab019f45ce5df03ccc9bc7f973abdddcc16b5f69a
MD5 204bbbcf0edc3137d7d7b6d0ec0d714e
BLAKE2b-256 5728fcd4d451092291984cf62c7ba721d9a236dc93b855256b994f6eecb54d8b

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc3ef76174741ca0d7f71d3bf854ae95354bd4c228c087d49e0a79e8ac1c7086
MD5 05a2ad1a8b968a26157392713a7aaeef
BLAKE2b-256 f5a4bb8f6eada96cd0f2fde6565823850b7adb61c4e61df8a3c4a29879fce034

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a67478e6c4a3b0f5b203d0de2716323243d1bab2212a5da9f9a58bfeebda164
MD5 e5be81a7a5f9987338175f5b74358851
BLAKE2b-256 a276a00b2d73532bc977203d2c485db485be9a1309c0ba0196541b8e1ab80a7c

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fb8f229f067b7d53f0df03c2993f929ba24c48d6c0592b32db3cc093a94faae
MD5 db4e0bd82f2111cca1a7dade35009ba5
BLAKE2b-256 d27ba45e2b16ee900c4fa604f69472dc4077f0531905d02fa3e15ea3121e0861

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 650ce49e860c3ee80f77bbbc7a88f96ce322de415ab54d1609f80130d7a3aa4c
MD5 9927b295ef3cd4faa58278d9c4f6c060
BLAKE2b-256 835a893d04ff8dc02a5d744a481907e10c2b1adb0ab7d687bb3b262cae072cbc

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: imgsize-3.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 134.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 96fde1bbabf21c0c23ecfa900a929d18f150842530d3524b580c88602e82cc76
MD5 eb1847e9486f4c9ef6c5cab2c1f1bcc5
BLAKE2b-256 060f58470d1496143249eeb357c5daa4a4ba61e5adf453b410c4ced249cf42d6

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: imgsize-3.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 129.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eaddf6ce7ee51b12072011a30a142690cadf45052a0075e42aa9ccc9a85cb646
MD5 36a4786a155c877e1619e9838807400b
BLAKE2b-256 75fe51a7d875fdcffbd8919d1af023dcfd98f14136bbfe68e8b0ead5b3ba9df1

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de16b807218b3019a5b1303b23ce56488f1915eb0426d7d10054ec78ad73716f
MD5 52d99acb7214b5423872064e98ec4222
BLAKE2b-256 d84d8bab11bd8f731bdf2cc235b537c20b3654dcf52204c2f52421533062949e

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dec05be5d16784155ab2b8ebbac0a2cb773d62f861367d47fab3a970ee4b09de
MD5 217421d8d10ff66dd9c2b63fc4ecbc38
BLAKE2b-256 0d3a8c3d30905dd23b3acf52549a4f018d3973a4d10b32fb941bf89cfa3cfb6b

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2eae28b85ddaa8a3fcc672d939ec04e46c89f17ed5f3e60528cc3ecf6d6ba4c2
MD5 99dcc89b65c4bdcfb6d88d8253845007
BLAKE2b-256 a1d6c3acfbccc002e96b162fba5c357e4ed3a91bf7c7b8526d5217111ea88b99

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3aa94727dc6256522a5c4036bfcd7d14d414b8dad9dec25e809482a2b83e19bc
MD5 d0fbf1d374a0a7a38e198ae65a623bd6
BLAKE2b-256 2232744828d6fe9ae0d794d1e69c91b8d4e28b62c6fccc862e89f1109f2b1f8a

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10854e5da827b96ce894aeb71f5a1131d8b0eda05cae4b034b3439acf400fa25
MD5 02810c4fae221869e58c0b7176ab4285
BLAKE2b-256 cc010e7df71fcba53882098625f5358fba33dbb77816f7f301eb2593dd86a289

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bdfc722f8b5188cce88467e1199a5547d74ccfe5f90fce5e083a538a4363dc14
MD5 d6d8709ba0ec945be947987f390e3716
BLAKE2b-256 a06ca5bbde7007b2124f3ef8f0d07438a86d1897e94a66dd47f9757d38827f9c

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2018ae4122117f2c7b2e568af3c86844ee36ffb4a3993a3af2f4ec53a613230
MD5 29d834f8d36e837a4ac832aab8dc104d
BLAKE2b-256 99934fc3f11fdc67650415b18c8ad7a6d75715589ba99fe3df2b215db1ef0a60

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b777edcd20c207f36905b695816314c46d9d3d3b9c9e2c3b01a6712754ed0cc0
MD5 7906b2a02f7d89abaf4d5aa238425ecb
BLAKE2b-256 a26723951f1c29e18d3dc1a261683aa58a8cf1e2b7a2f49d28ec81a56136355f

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04b4fbee45d57971a0b14cd4e89bdd1beaba4ef3688d37916175d2d688c0f555
MD5 1a5f8611cb886068a29aafca106b0304
BLAKE2b-256 af4cb67ab34156c7ec6e1f4f23aacae5df78e40c61a014f309a4b66e767bfcec

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ceb2930f6878eb38c57d2d337f926aa71279be6408abd50e81557e4256129f7
MD5 afe5269a436aa2102fd2340cc6508d92
BLAKE2b-256 c4405963a83dc1e5d4fc9ab530a8b5d771f97099b1ab4b71b855fd915c3b1a2e

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcb1fe6a8dbbbbd01c8b3570e94b5ef1b0d77a8123ab839474528f347e1cdc17
MD5 53e3f5bf12b308f27e059567083e1ee5
BLAKE2b-256 b71e318a084758e8e83557428f260e5a2e154ee9d0bf3a0e4ad29a5e9a580e49

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 657800da1e002c95cbf99dc363e94fde1d86d8cc50c83cb3239838f3892839ab
MD5 4e41292605fe4cb635c34271d26cb4e3
BLAKE2b-256 3a24117bd6dc98eaf3a76bde6504bc6f2f7864c073c107c081b9ec22fa727c7f

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: imgsize-3.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 135.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a84364821ac91a7197d19e2d45ae142aca852d1a76205720ebc686f9836c4657
MD5 5a8ec227374b9a3dc829d3b1d7536a00
BLAKE2b-256 d56b69dc858374f082c533a4872809afebf90aa14b3fbcda12cac8491e0b5296

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: imgsize-3.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 129.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9e9c66eb6b547dbaace36db8309a18a62720d7c03f3e1b75b4e10cd52ef71826
MD5 0ab52c00d92a0886632c2832e9dcd276
BLAKE2b-256 8ea1c8d574f83026f60e66ed7d342470d5d5a1d548a26cb60f21fda24036374f

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 428a3ae3abc6cbcb13c035953247b7e8db652167ed60847b2f4edc256692d7b1
MD5 32dc0660e5eb7c1d2ef107e4c3106020
BLAKE2b-256 a5f0e495ccdc8f9607211dbe0387481b0ec889b7129985d56bea5feaf0458e7b

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6ba16b89710112fd5bb09bf07118937292efb7c971d534c44e60bd47209a4c8
MD5 d2b05c5b1efdc55f9e570f2ee807edb6
BLAKE2b-256 f6322a2e828346b092049c626b0978828206ced09baf8379b6d77dc27998a40c

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07c75df3c2f749bfc72c1d4788f64d8723a3e16effdcd17270c7de164016f02f
MD5 4bf98b123bba616cd40eb6c504f8a651
BLAKE2b-256 42c5d042921b0910dbcf202f3579895f0971ed47b4741ebe2579384bdfecee5b

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe2639735f44fa8993a9d63a77a8ccd32041ddb3596a53280ac012a0f2bb8a37
MD5 36f335c65d4a807a87058bd4b708ad26
BLAKE2b-256 78b0a48b2980f2ea30463826c70ebab0f0834783c11af6b89bbc4a51773c6084

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93d15d2e74e5d0babbc93331ff424a890183f586c3b668fd6f360b3aeaf6ee3b
MD5 d29d2990329822d3358c8fd195b9a80e
BLAKE2b-256 ae5ee6b3d8884b54bf672598ba9200dd9733433bc74fdcfd5b4d0ec9dedced69

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 adb9a78f724cd4c7fdf66c987a57b4cd27ac549b4607a6d21a119db8620a958d
MD5 f38f27fb3bf1fb4c10eb8fdfe1cc12bf
BLAKE2b-256 b4f71d9af0fe21e7e0374be393730f2080913fd4d3ff70a101010ee7dfc71bfd

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33b2d199d70a607d75efb24fffe05513a5565a9de55dc6a06ee605a4b4c02f1b
MD5 f11b7d03a0ef8c77236c2c2e6cc2f257
BLAKE2b-256 df4e506662b5622bdaaa30c6ca4b8758665c9fce9fad3f17607ba1813f88c7a5

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39b8ad691e3c6bbefafef1083dd2d868fce8b3f3955038f6b7ed368844edc19c
MD5 e5081fac843096a77c0e88ed6f66a575
BLAKE2b-256 49e831a3fec26dddce393e6c19211e70fd2a1b943bc9a39ceb6a88cea28e1d12

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67d4988ab43a7aa4691411cc28e2a3f1c764f5c08774ccb93b4a29b0aec3af38
MD5 073b93f58bf4f5ca12127509df5ad981
BLAKE2b-256 2cbabb5d402d97011e1efef2c4ec59ab2369bd14cd0d01e6a463055d9b56628b

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eef6bbbaac681dafd2493ac47fd250a2cd1aefe8bdd915d2932ffd3d4b801f4f
MD5 9c67eb7ee7562aadc10a49aea80e2400
BLAKE2b-256 5e0004cddb4e83d59c82da668c6224b7eac9ed3b445e1efc2c835364010f6085

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06eb5a920b44c0e788036767799234b391348d7dc1f03368d81d72a4caa7befd
MD5 035c5dedb51b5604b36c784ef5d46b9e
BLAKE2b-256 4c532bc169031b599fd333d1c6f0d4a485f91083ff301bd769f41ff96e1d0760

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6fa75b090ba704d85d48c9ad1531d9bf5d102ca051f13a762cb582e264939b02
MD5 e8fb2c0c77a2adf39c0b77d4be4cd83e
BLAKE2b-256 43bff0f647f85a825f51a7df3d9c0f31d3846ab23915639ee80763689320196c

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: imgsize-3.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 135.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 619b43922af2d44eba3ed861e5a5cd9a6a7339807b95f55cba834d9cad6a3ccd
MD5 00b34ac0ebef5be6a3271d1dbb002ea9
BLAKE2b-256 2ebb222a73a1b0aa2befe6e0efbc5f3f04f4ed4f2721538aef17b19371480b40

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: imgsize-3.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 130.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d11ff1c0a470bd66cb850fdca2b3a5d285bc846eb9609b4380c91e368a062024
MD5 68cb878af4ec9966afd3000f68b7ef63
BLAKE2b-256 22a11c6cc593137df8704f7154733c25efb052e77ae64fef86f22ae7c701c0c2

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6355cc9a97db991c0b96ff47ab5e47a4a8da9cf889260049dff97051853fe1b5
MD5 e94c2b5988fc97bdfc397fed36faead4
BLAKE2b-256 683c0b086214b8dca6e5ed6f3d13be985ee6e62ca091ee70db7a45026688dfd8

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dc06060fc1e1e9de1ea5dd75599c9228e1e7e39b2ed32495ff88263b8c91829
MD5 b3120c9e9898d6af53673b2009984946
BLAKE2b-256 87b4d8a15fedf2a6130d6b67190348a8cb5f8d28bc7c283704894ec513589686

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ec764a8e835f533dd1b2d1c121fed0385236ecf037d92d8be7dc1fe268f077c
MD5 00a3bb28a8dd1fc5c8ad4364c2bcb159
BLAKE2b-256 4e492069c1200e99b12bfa93e4561ffcafe581f414d3dd249fdef95ff9d2d3ea

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af1a37862949122963cdd209e1a810f51c8f493fd07c5f2d1e40f100fcfa52fc
MD5 12f87c8342282e01f59dfc8394cc3927
BLAKE2b-256 3e6d37bf56e6e3fd0f838ada144301802338cebb62727170e05f796ce16180f4

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36d0f6779a8d48cb9e02d4b79f2216a4acb656301d4df23d632f2aef55632ab7
MD5 0855cbbe0c0473439cc861ac6b564bc2
BLAKE2b-256 be8d466ea217fcc998de32bbb3ac4cbc334901a0bb58c42e657a5d227dc5aed5

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 95f3797ea654b16ce488a1fc1c8dabae58a5fe1601c0e502db74ad92189bda41
MD5 15fed54348f358b167d59768ecb3bff3
BLAKE2b-256 558ce1a53e3e77ec58bd4f3af19a1ad6df87527d70720403e9ee3835e4015dd0

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5719295802c14f263000c6fb71cf263c10ab65c0fd9d5a47d56b48afb917b5da
MD5 1ac28c6b042b57da041a73218139436c
BLAKE2b-256 e6c19802537be9e418259b44832c2acb9fc606b92cf1b488fd1c9f3f11594ccf

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97babe630ded3309a01af6d19d5b3b7a85746cbf253a774fa33e77971eac3189
MD5 aefa9affaaecafdfa236082ade4f1b41
BLAKE2b-256 0f7eb645d675546d216027231cf6ceff781016568d500165c10eeb2fdafdbfe8

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6389484a9aafb75fe66e9aaa3c4e81299b421d209c8fe9ce151bd32923817d3
MD5 e8e964cf4a741b0d669ca34eda7c975e
BLAKE2b-256 50efca8b297082cf0f2cbf76f44b57bba855c17754e7d50b3f09eee8a8968cc7

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b8718bbfe6217a53499e7a4e6e31c00b3a2ffeb57a36e760a69b141af338e4e
MD5 f2a696560d95adb1ba16b4c237582ce7
BLAKE2b-256 00be6ba8da9902e10ee5f1010f922602435e36563478ea4dc81739ae64ace5f0

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 706a6ff8600db4f5a0baa7660d8d8afa6af4a02d1d777665a65be4c2214b6fd6
MD5 6ebf70f0c8850541c0e6c09b2d6b7c3d
BLAKE2b-256 a3ba0df89ffc01b62308fd36063e1dd32791c72cb760d1ce7bbd21741a5ab563

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 253925e4d8ac531cfda074f652fd221e602be785e57385e357f59f14682f5cf5
MD5 7d04a62d0817d25f07553ba0dc9ae008
BLAKE2b-256 f2ed8d0ed148d90d70a9047b8cac9fea1719ff70921f3c68dbd5df67f65854ba

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: imgsize-3.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 135.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 67aee4603c079d2ba895ae4add1c0139f0a1dbd6c69f83c075f3b1dade10864b
MD5 fab29977945910dacda45a5116eeaeda
BLAKE2b-256 4334a6d3bd0bd71a4cae83e892093d590ff3f0ed5b9734c886611599a293318f

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: imgsize-3.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 129.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b3a352bc405685d18c844bd307d883f473db40ee4a925f1813f366b27961c83
MD5 55042b8122a64de0fcaa5aaafedfb8a8
BLAKE2b-256 aeb708c01c4ba10db39ccae746a40d50087c9172da39ff7aca55b6ce94e1c219

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 997dee130b3d030fc22e460ff843a253d6959581110286b04ce9f656f0e806be
MD5 614f539adaef9a6c8e26b74bf50f745d
BLAKE2b-256 3648e0d16c46d472821f07b3b6a552e90ce8be756a2990de4f294d7ce9144310

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a433528cd29b1da24f25aa2b0e4696cb7fa0f2f78965dee38d360fb860ca8e85
MD5 bb12717cf63b8e7c5e2b4323bd4d2374
BLAKE2b-256 ed1d6a304d50689e680a8159e84891531c409397b87b732e8a9ea115c3adfdbe

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28825e67d2216708ac51c5b188e8c5436c6d52bbdf8f4e1e620977fba70e279e
MD5 354b62226f43cafff696158681159681
BLAKE2b-256 4bd181a9e28c54800bc2531ab6e09638e6cedf5098029377de54c5ced8cadb0a

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 060c3fcdb2b02220b82f95784999963a3098fec91401a4a1dd260738a6415804
MD5 3ee7047d63022de3c95f4ba54c3cb3f4
BLAKE2b-256 6e57d74a92066aba1bb936c7a217315cf07bd9bd0e6914bd1a1d33d5aace6fe5

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af553a23f44e02462f37c05b8e93af619565170cbc23da0444368a1cecbba8d2
MD5 fc00011cdc2ff905acf69c225789ddfd
BLAKE2b-256 9472626fc7c9146db9312803c779404676918dc8377193ca3663bbbe01f880b8

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b6f0582675808527fb753c4540304208dfb919344a1795263abae1482cfee2d
MD5 66c29ba65684218e87dedd74413db6c6
BLAKE2b-256 39b9ce8c3c1dc4d6e4f4571f99d9c4acede4b436bc5f6ac235bd623eb293dce2

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc27f304495a24c17351f41ada9f90423e8afaf9c577ab5fc20f3b62e09337ec
MD5 1bcfb719c85e704f02979e9a9dedc940
BLAKE2b-256 7bde85ec86de20badce48a388b6b438fe317ae064d8cb49262e8cc7556238afc

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d44d9a69bae032e1605b5655a0dd5362902dac9da1e54cee2915724e50ee6963
MD5 211772ce4e6138a84bfd8d07d0884090
BLAKE2b-256 e6f94ea3ef061f5eccef1b05ae7608f1bd3fc3e1f5ea69acb8d16d5bf39d9c4b

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a7fb8a8ce46ea69a43dda53f0d5a43f20e3f5bd06045faa3eb59c00d395b84f
MD5 c34b33f7a5e73bfb0243bd0719d508ac
BLAKE2b-256 cf37b6b4b1187dff96f10a4173d46c7021b5e355fe7ca1529374d8477e30696d

See more details on using hashes here.

File details

Details for the file imgsize-3.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for imgsize-3.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5cce3dad1a9e4c63bcf8686d98b0a340fe014fa94e41c54df6efdbc7a21fd060
MD5 da607eeb324597f3b7ddc9356627d643
BLAKE2b-256 dbb5457c7b28279bcc0f0df9f81a87257dc46f7248a80fd3d3dbd7d2be93e830

See more details on using hashes here.

Supported by

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