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

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.0.tar.gz (2.4 MB view details)

Uploaded Source

Built Distributions

imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (296.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (270.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (273.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

imgsize-3.0.0-cp312-none-win_amd64.whl (129.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

imgsize-3.0.0-cp312-none-win32.whl (124.4 kB view details)

Uploaded CPython 3.12 Windows x86

imgsize-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

imgsize-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

imgsize-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (295.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

imgsize-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (268.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

imgsize-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

imgsize-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (272.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

imgsize-3.0.0-cp312-cp312-macosx_11_0_arm64.whl (224.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

imgsize-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl (225.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

imgsize-3.0.0-cp311-none-win_amd64.whl (131.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

imgsize-3.0.0-cp311-none-win32.whl (125.4 kB view details)

Uploaded CPython 3.11 Windows x86

imgsize-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

imgsize-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (298.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

imgsize-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

imgsize-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (268.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

imgsize-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

imgsize-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (272.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

imgsize-3.0.0-cp311-cp311-macosx_11_0_arm64.whl (224.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

imgsize-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl (226.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

imgsize-3.0.0-cp310-none-win_amd64.whl (131.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

imgsize-3.0.0-cp310-none-win32.whl (125.3 kB view details)

Uploaded CPython 3.10 Windows x86

imgsize-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

imgsize-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (298.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

imgsize-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

imgsize-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (268.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

imgsize-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

imgsize-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (272.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

imgsize-3.0.0-cp310-cp310-macosx_11_0_arm64.whl (224.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

imgsize-3.0.0-cp310-cp310-macosx_10_12_x86_64.whl (226.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for imgsize-3.0.0.tar.gz
Algorithm Hash digest
SHA256 a10c8a95066223a0c90241e33925d923d78d9d9b8d355173a26f4f2c03c9f461
MD5 38044152fc6292a0a5f91bb5a3aabd34
BLAKE2b-256 0027174e353794e98b270b80ff6544f9403f46be5145b39a1f79a754c1b938e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee079a76b3d3027ccd51684cbdf2640aa93764b38213473f7043efd260fc8488
MD5 73e5dac30f1c85dbaad4fb83e1d71b2b
BLAKE2b-256 e3bc33020a3c53f43d37fa7260c124d518d9806c3fc6af6c856095d92a8bb6c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c64a5fdd784161530899bf052aa872a04d0fda08fa2cabf6135d1b2d1a0b43a
MD5 fdf0b13745bbdaa1ccfa8931aaa2eed1
BLAKE2b-256 e3e8d47b6951210e81f11262e685728a88453241b11d3692fe132325621307e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ae5c59093ab4957a48fde6c157ff3c4fe6270d15a43919522fed6d8733fe4df
MD5 49cce1ccd73c511c2c3ac249b2f40d00
BLAKE2b-256 a8a9b65a6f8eee6fe3301d95430c9230c8c40c27c21b9ff172b9921508ab5eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8862966051281bc12e715641f3ef05fd321d6ae2b89b29e1b29320d606d702cf
MD5 b43810218a10379c50caa5eb67447b21
BLAKE2b-256 08841c4b7355e80cf719a3bdbbd6902cc70c1cb8e54cbd697b94a210ee9657cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 701496bb37b9d17e926e5c58399b42c16497fe147706ea48ca4fc50e092513db
MD5 5cafba1d066704b6ab3dc1ff9cef66fe
BLAKE2b-256 561ecfb7621492c59b5cfcf2967a3700b5322537ea527aab996315a8ff55efd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b11d56358d98aa27b5c61389871319ed776cad1831f5b720bd5f9065065f54c
MD5 8ae87ae1143565cc5b2561122d7a81f7
BLAKE2b-256 fc0c7cdbcf0ab34c25281a5d6278604fdbc46ae1ee8b1f59590cc2d4f239b9f7

See more details on using hashes here.

File details

Details for the file imgsize-3.0.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d5fdea32fce99f52cc00ab2e99028234b8829abef1d8d8c70c44bee51db620bc
MD5 1c5217355ca7e8e69db963afaf5cd045
BLAKE2b-256 33058660e1bced9d05ee239e6949b9a70518d29f6017945aaa93ee22d742f492

See more details on using hashes here.

File details

Details for the file imgsize-3.0.0-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for imgsize-3.0.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 01564b1886badeaa0c22e9b49a77c59cf8bcd1d46c9941281ee9b8b8459595f2
MD5 afe294b1a89bb0a3c04fca34b90a1068
BLAKE2b-256 d176a1f3bf1107905ab78cbe545ee24adbf89ab07ee816de11649c0bccd0849a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba5790d52364f8adea03e5442a1b25c7559f4adc72f03e4cfbad05f218aeec59
MD5 688bc790e2495dd7af68d63538b19082
BLAKE2b-256 2c7938710336e3553a817d72892ad971ea6df80797d1bf26693b6400102e321a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0ce3e60ebc51567a91813dd6f2435422ef5398d8f6353387ca81cb1f25db9c2
MD5 e40e373c48457d1590c549efb5bacc64
BLAKE2b-256 59ef34e91737a7199fabdccc40f4d413404010676c1bea9d3aaed62657e631d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6578c2f0d3541e6d10dd9cf8ed54555d01c82bb91ab58c454fa64727df6d29c
MD5 72575d3ac93b301e85424cb93b2b57ec
BLAKE2b-256 0fa9554b69dec0146974e24d5a5d535e9c71a995b78f0adedd89f84a44df5971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcb74d1cbc52d1667a7808ac905deafa31c977bf13bd8d489cd28678852c3b96
MD5 ecc6a94c25f6a26f1e186de28c77d834
BLAKE2b-256 bd81a571cefded9e72aec349c0cf553c81a0ff2380fdce8446fc1474880f08f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ca7227e605d7b8cf75c743d2e8033423df321309ee543492a1bb690605ab7ee
MD5 871bd400620a64bf55004e81f04a43ee
BLAKE2b-256 36f12d4568538c1b38b63bb9b6fb8ba5ecb857dd543684b720e9c0663d818575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d8b9ce3a0987ca9afb655a0a0eb543ce6e8b827e10b9b9f6b30214b818ee328
MD5 d091776e15be25b1a9614cc1981eec72
BLAKE2b-256 44cd6c0d31b97dd9f2a2151df9889697198c9fa2e14df46d55cae1869ae124a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef299f3f4e8925fe443eb9427469a038c1b4bd07f018fda5abeee6d7e46b8b9f
MD5 57befd8c343948c9c619a4c15dee8e17
BLAKE2b-256 afcb6e931501c3b9330aab71f3ad893606d49f49fddd2ce31e3278b9641c28e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3db53412a3a3c3a5245c313efce25bbc7b90dbf333b61176b3b2ca16143b17bb
MD5 69fa77b9684582a4fbdfb0d1e12f5f2b
BLAKE2b-256 8bb879a782c862b7c98fea1ddbdd88a5558293ac9d659361e3923c27f3159df5

See more details on using hashes here.

File details

Details for the file imgsize-3.0.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5ac59d5755322ea81a04ad79870198ec93209c8688825c52824720b522ea0832
MD5 1059b146ab2c44104bf77edfb552a5ad
BLAKE2b-256 0a81a7054d263f7eabcebec08579e68286acc4e8ff52e12cb8974bfe14538fd8

See more details on using hashes here.

File details

Details for the file imgsize-3.0.0-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for imgsize-3.0.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 4ee821e26354345ec2744e2f6c2ecfdba784f172544dcd57c0f5b3edf5ed9528
MD5 f630720a65f7c6b8e4112c75a91cb57a
BLAKE2b-256 a32948220fa92414513a8d7a5b5acd2b13c186d738f26bb5877ac8bde8867279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f11e206b9e8df6f7e4ac1954ccb849637ea1717d2fc244618c75f9a4cea27201
MD5 a0c7c00e9ff3007c11d67c0ccd718b19
BLAKE2b-256 9b01249e475623b237f71cd0e2513fc06151e273ae97cc06ef80f2b147b03e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 444f89ed832e2e5f7058525371ddc860c8de0b9d45c453dde4a4fecfb000ccfe
MD5 3d02c4282b46cd59fd40aa42ec4c573f
BLAKE2b-256 8cf205e186914de98ad706c79b8de47b844e1de64eb67490745f754e9dff902d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4250a655ffa88e9e02fabdb41bf7008d5b3b317fd7de4e87428bffe55203e0d
MD5 eb4464fe9daeeef169ef146685a40fe9
BLAKE2b-256 76856e7d3e08156d2903956932a7a1b8c7eec6cb94d70a870e0b774446795e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9e5c7ed00cc31d7b0bc7cfd698cba07e749e1dd455e15e6dd610301d1a4007a
MD5 cde823b75670b58c8a5bbcfa13a74dea
BLAKE2b-256 758c7349db785699e199178f35319ab6df986f9af3e3239ba401b94e440d8a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28b765c631f362249c4429cf163925c7388d2f5a26ec1e0321c7f5f526ee4815
MD5 7a9442b9bc5d7189bd1dd67203caf044
BLAKE2b-256 b913b89065740d32ac8869228c68b3f11ba60dce5c988760327e0885b8d9a83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06da87a59749a439b75a0383d711637d987552c4e2da772b7b45304cbbb1bbf8
MD5 8d8bb2a1d8469ba2cbd2923495e51b43
BLAKE2b-256 1bd242c6ce6c811909a7e3a1d06daaf535a0c262f80888b15bf17b35b32c0dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0077f041db82b6c9be2fcdb9b3e3abdf7e6b25ab03f70ff57c00f7648f2a1a78
MD5 9d364cb4d9df11f14bb79fa74e68c809
BLAKE2b-256 781c7fdd3e643268ff5585eb927dc77edbb89af17aaf35a69a9c805b8ad10d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ffd8ce1ae3145ce15107bc3f1b355ff617a0f77026f169bad131c6f418e254b
MD5 7cc5585b77d64092a06d5d08c78e9609
BLAKE2b-256 da06eea4981066ab5e58ac16d33061cb66eef1eff926df8d8305200aaf855a1c

See more details on using hashes here.

File details

Details for the file imgsize-3.0.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c64f72fdefdb50074d6698ac2e5d0a8f2912791710bc38c2a41d9b9bd4f7ec00
MD5 7dfd8850d38a25fb735de1fb9176c0cb
BLAKE2b-256 3a2bcd8ac8adba6e6351ba3e20a36e1315cc10f3b1f8c7d4a2421a70497a2a54

See more details on using hashes here.

File details

Details for the file imgsize-3.0.0-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for imgsize-3.0.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 81610ecbd7017a43f435ba03dbae16554d74b1ba5d681cddc9c4b1a035e6e191
MD5 b57783e730d042ff814a9edd3145b67d
BLAKE2b-256 5da92425cd91b7d171592297c4e6a15b67b588ec55a6822aa8ad2a1096810e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0f3967f895591745698d7ceecb03897cd3b7fd45508c50edce916c5eb189069
MD5 845a3fc03b68abe51384e4bc96549b4d
BLAKE2b-256 9729096794dd97589fa9728b3ec2356809a43bc649467086a268a165682785f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72bd4229f379b58262adb971aa75022232c5c485efd44a480f8247860b0b310d
MD5 04608b479dc0f1a6c91343b8679b3d16
BLAKE2b-256 01224ce2a73cbb747c96ae7328bf4b7ce0da80b3138e17d706c916421ed3508d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7dbefa807c141b6a476ebeb38b938c5e5b34bbba662e6501134be4eadc636a23
MD5 691d073a3a148b7ef0ab2263554797f4
BLAKE2b-256 db9e3961a5ad1f48ea46f21b774e7226e5e6b22bc7458fdfce59d852c0fefda7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56ace1f0294036367dbba47b4a8bb042554d3f3511d8037fe64b91e31a347509
MD5 04925e2418ba711d333ac073042ab8f5
BLAKE2b-256 f7a31ef68dfcdb6ba8ac250bd2ca6b9f6559ece5d69910018efeed0d3cd3161b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d1547365433777ffd3e7d2c15c97bcd305af9c1c601e7d3338677ac55b7368d
MD5 23c790f81f7bcff8122aa9e74e8c0090
BLAKE2b-256 b7a7034b977f6ff10f1c24bafbde7b0713032197cfc370371de6bbf2da69618f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b933882d7e0a364656e15ae1eb66885feecc18994c9ef1950d363eb6cf345142
MD5 ada0930f9484a365031cbd17fa2ba512
BLAKE2b-256 0050dea707e77e7fc40ce6f03e3e06c864f3bcf009755a0bfe6b34b248c0fb18

See more details on using hashes here.

File details

Details for the file imgsize-3.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fca3280c87f85bc1ed0edc9f713783e702e43caae095e382354b18c68a120d4
MD5 0473fd58017f7955f7f72f4427ab4cd9
BLAKE2b-256 0a572cb123ed2ff19967eabad2de6c58c76c8b82931d585fefd534b9f3a40625

See more details on using hashes here.

File details

Details for the file imgsize-3.0.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for imgsize-3.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1861206dbc4669d013299644958ba4acc5aa994121f32745741a0bf1353655d3
MD5 f5c75673065b1384464c94f0157e5565
BLAKE2b-256 5e63abc283474b4d3e8d81fb079d0d7a9937e6aea9636fd31f7e28a5cabc0087

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