Skip to main content

Python interface to libexiv2

Project description

python-exiv2 is a low level interface (or binding) to the exiv2 C++ library. It is built using SWIG to automatically generate the interface code. The intention is to give direct access to all of the top-level classes in libexiv2, but with additional “Pythonic” helpers where necessary. Not everything in libexiv2 is available in the Python interface. If you need something that’s not there, please let me know.

Introduction

There are several other ways to access libexiv2 from within Python. The first one I used was pyexiv2 (old). After its development ceased I moved on to using gexiv2 and PyGObject. This works well, providing a Metadata object with high level functions such as set_tag_string and set_tag_multiple to get and set metadata values.

A more recent development is pyexiv2 (new). This new project is potentially very useful, providing a simple interface with functions to read and modify metadata using Python dict parameters.

For more complicated metadata operations I think a lower level interface is required, which is where this project comes in. Here is an example of its use:

Python 3.6.12 (default, Dec 02 2020, 09:44:23) [GCC] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import exiv2
>>> image = exiv2.ImageFactory.open('IMG_0211.JPG')
>>> image.readMetadata()
>>> data = image.exifData()
>>> data['Exif.Image.Artist'].print()
'Jim Easterbrook'
>>>

Please see USAGE.rst for more help with using the Python interface to libexiv2.

Transition to libexiv2 v0.28.x

Before python-exiv2 v0.16 the “binary wheels” available from PyPI incorporated libexiv2 v0.27.7 or earlier. Binary wheels for python-exiv2 v0.16.3 incorporate libexiv2 v0.28.2, and those for python-exiv2 v0.16.2 incorporate libexiv2 v0.27.7. Binary wheels for python-exiv2 v0.17.0 incorporate libexiv2 v0.28.3. If your software is currently incompatible with libexiv2 v0.28.x you can use the older version of libexiv2 by explicitly installing python-exiv2 v0.16.2:

$ pip install --user exiv2==0.16.2

There are some changes in the libexiv2 API between v0.27.7 and v0.28.x. Future versions of python-exiv2 will all incorporate libexiv2 v0.28.x, so please update your software to use the changed API.

Documentation

The libexiv2 library is well documented for C++ users, in Doxygen format. Recent versions of SWIG can convert this documentation to pydoc format in the Python interface:

$ pydoc3 exiv2.Image.readMetadata
Help on method_descriptor in exiv2.Image:

exiv2.Image.readMetadata = readMetadata(...)
    Read all metadata supported by a specific image format from the
        image. Before this method is called, the image metadata will be
        cleared.

    This method returns success even if no metadata is found in the
    image. Callers must therefore check the size of individual metadata
    types before accessing the data.

    :raises: Error if opening or reading of the file fails or the image
            data is not valid (does not look like data of the specific image
            type).

This is then converted to web pages by Sphinx and hosted on ReadTheDocs.

Unfortunately some documentation gets lost in the manipulations needed to make a useful interface. The C++ documentation is still needed in these cases.

Support for bmff files (e.g. CR3, HEIF, HEIC, AVIF, JPEG XL)

Python-exiv2 from version 0.17.0 has support for BMFF files enabled by default if libexiv2 was compiled with support for BMFF files enabled. In earlier versions you need to call the enableBMFF function before using BMFF files in your program. Use of BMFF files may infringe patents. Please read the Exiv2 statement on BMFF patents before doing so.

Installation

Python “binary wheels” are available for Windows, Linux, and MacOS. These include the libexiv2 library and should not need any other software to be installed. They can be installed with Python’s pip package. For example, on Windows:

C:\Users\Jim>pip install exiv2

or on Linux or MacOS:

$ pip3 install --user exiv2

If the available wheels are not compatible with your operating system or Python version then pip will download the python-exiv2 source and attempt to compile it. For more information, and details of how to compile python-exiv2 and libexiv2, see INSTALL.rst.

Problems?

Please email jim@jim-easterbrook.me.uk if you find any problems (or solutions!).

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

exiv2-0.17.1.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

exiv2-0.17.1-cp312-cp312-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

exiv2-0.17.1-cp312-cp312-manylinux_2_28_x86_64.whl (15.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

exiv2-0.17.1-cp312-cp312-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

exiv2-0.17.1-cp312-cp312-macosx_10_15_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

exiv2-0.17.1-cp311-cp311-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

exiv2-0.17.1-cp311-cp311-manylinux_2_28_x86_64.whl (15.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

exiv2-0.17.1-cp311-cp311-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

exiv2-0.17.1-cp311-cp311-macosx_10_15_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

exiv2-0.17.1-cp310-cp310-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

exiv2-0.17.1-cp310-cp310-manylinux_2_28_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

exiv2-0.17.1-cp310-cp310-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

exiv2-0.17.1-cp310-cp310-macosx_10_15_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

exiv2-0.17.1-cp39-cp39-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

exiv2-0.17.1-cp39-cp39-manylinux_2_28_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

exiv2-0.17.1-cp39-cp39-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

exiv2-0.17.1-cp39-cp39-macosx_10_15_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

exiv2-0.17.1-cp38-cp38-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

exiv2-0.17.1-cp38-cp38-manylinux_2_28_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

exiv2-0.17.1-cp38-cp38-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

exiv2-0.17.1-cp38-cp38-macosx_10_15_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

exiv2-0.17.1-cp37-cp37m-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

exiv2-0.17.1-cp37-cp37m-manylinux_2_28_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ x86-64

exiv2-0.17.1-cp37-cp37m-macosx_10_15_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

exiv2-0.17.1-cp36-cp36m-win_amd64.whl (8.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

exiv2-0.17.1-cp36-cp36m-manylinux_2_28_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.28+ x86-64

exiv2-0.17.1-cp36-cp36m-macosx_10_15_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

File details

Details for the file exiv2-0.17.1.tar.gz.

File metadata

  • Download URL: exiv2-0.17.1.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for exiv2-0.17.1.tar.gz
Algorithm Hash digest
SHA256 90a06c8922d3910845141ea72866c70d4212785b0af24c7353cc86952755ed09
MD5 2e5a93e90d0c27541da66d405e534545
BLAKE2b-256 8e4df419bedcc8945a825ae1f13c3b5c8d26ce76f41f42a7be6d63c61e13dfd3

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: exiv2-0.17.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for exiv2-0.17.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a3f68e270ce549de77a1b8fae682063c80914f59848e490f2df1877a0df097fb
MD5 da74ff982a622b651ee9caa97422cc96
BLAKE2b-256 687595ceaffbda4ae6445a88428f29a5f34f23a1be86643685e401d702790568

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0a519d63d098bcfde984c49c1596ae74fa06b9353413446604a4c4bc991fb33
MD5 ae3a910f92fe33ecd5d0c31552ad181c
BLAKE2b-256 36b3caacd71f174a2176eaf81c3b6ac1a31b6e02a97831e0067ac74309050e50

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 840f23d2d5fdb3585ec6fb089336a7c47f75a429a50f14c9b5de84ed3dd10856
MD5 fe53c57010c7923952b2bf29f1c63088
BLAKE2b-256 9bb11f0dc777c2f279c021495eb1bfc78aabedf80a6fde01359ab58475cfd5a3

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1e2791884638a4b985c6b03f4dc86fcd8b3562b7df85280575db73fad9b2bd7e
MD5 de8fbc327fd0e959ae57f6a4f5dfe960
BLAKE2b-256 6f10e97662e85f3b7f9ec1e051906e42a63d1c108aa4e80db76e544b9d3975b1

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: exiv2-0.17.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for exiv2-0.17.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8dffe99ba1d03cc7df02d400ad101562d6c5c45f14a238fb2f6d1d8b8781fc3
MD5 7666528691cc58aa58bcd9d9d50b4ad6
BLAKE2b-256 1102ef26f2bbb8f74d99cee17960af514a07ba468b2f4d0869d9f11d79457baa

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d84792c66727facb3dce092301174fa045b365a1f59ebc610e674ac63ff4b1f5
MD5 3c8235c3709cd426bb044c60d3e002cf
BLAKE2b-256 61ebbc9829fd2c869a91fb4b4cb86dbe9ace621fb6eea29564a341a78750cc97

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 313fc7a8b743cf8bd5a2f0037377b38557c560712c4def14705039ecb2436de5
MD5 de9aaf2543b436bfc8d66e38eb967ccb
BLAKE2b-256 6be2bcfd1af55869ea4ba58748189c150cbfb3c9aea120b0203f6a2475bc9ca4

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b1c3bc34ee7f455b07cc2a98a3eca5169e5a26358e1cc6289ba627c57d729a18
MD5 b2aa2e8e04fa759f931386d27bb6395a
BLAKE2b-256 3787d2e9f8db7cf7b68bee3a607c19cdc2a658904a8957839a8ac61c4c34ccec

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: exiv2-0.17.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for exiv2-0.17.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f0182457dbd859cac07689c22c5055ab65a5bdf45b151dab8ce81351c3f2cf2
MD5 efa9959a0740cd24d3a9a911a998fbf8
BLAKE2b-256 c260c40e0f52df31637c445511ae5db7e070f2edecca11350ca39bf406ac7cb1

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a7e492c00cb9c9a0d5f9033293d4c13ff404bfed7e9e42242c273d576f494a8
MD5 ce8c89f8a102e2ebdf135e29c82e0fbc
BLAKE2b-256 8e4d724bd397003e9c19a1886fd364e4f8064794b8965b9b1cad48e9dc7c87fd

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80e8c7f34e90b80b1d40a62be98193a3129768b10cc82018cb10b65ecae2831e
MD5 181170e9ede8e90b5ac83d2675ca9fca
BLAKE2b-256 caee0da23a2674ac28ca1b398bf1dc17a2825ce0330445769ed65694b03403c7

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 80f9837a76bd0357431b5c1c5f114bf19a5473d7d83544d64dc9ff69b773aa2b
MD5 e38f2681aec9e6f673c397f99f1d1a26
BLAKE2b-256 db7f62b772e096ec40f047bb67e70ecf19bdb247726183b06668262dd9cfb876

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: exiv2-0.17.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for exiv2-0.17.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dfbef32913e74e9cd00b7670f71ebeb25b869ed8814d6f05e83e8fc9d74b3ce2
MD5 28e03c13caf108a743c0443d0c84ecb5
BLAKE2b-256 d27fe65018b6808eec8523fa6e306d01d147f22a22e9848a09b2b9e8d9c8ee35

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddf1f47a19a7ffcac442956b56e46284c99e38a69f38b6f08a64d741f18b11e1
MD5 5565c4fb23a61585b34a0421b51ce9c2
BLAKE2b-256 cbb1508eac4cd9781a9c0185fef3419137fd4cada8bf102f2ef8de6f2bf6cc4f

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7843406030784e10142d18615ac0539e257c4f42f66e62ee1760f11a93d1de93
MD5 9e25b748c057534d0f835b9896aa6a15
BLAKE2b-256 d286cc6ef86bc4709393c08822120d816026390afb1dbffbdf173e39b5d54dc1

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b99f06a87b0b1d1f5bb5effe800a71c6bede1848d1c6ec35cbe2d1e28a35d751
MD5 af5f9acf2da264e553572870dd4d6c69
BLAKE2b-256 76e952edc9a423e5d5fc123b21d16bae99816d3539433b617339703a6f5259b3

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: exiv2-0.17.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for exiv2-0.17.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 09662c07e00e9e15da9d00bebad56497cf6ad6c4676664da19599ec714130cf8
MD5 4a60ca623cf290664ef52df5c83ffe1c
BLAKE2b-256 8f8c18a0f865dca96d310c8929dfc60869e2dbb4c9d2976c735ae6f377632535

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0e97f70ced794d5013c5c0b31bb0d4c5166148701e71c591694a228b13c26d7
MD5 40ed251c7939286de9dafd7b99685f8e
BLAKE2b-256 c46520f528895b7149c37cc1f6b2163a8efef73d8b4800be43806056eb574275

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae3b53b69aa37e44409c221977c3f6fcd24b242cdb705b68c9c958b0aef43faa
MD5 5d21f6360e8ae0067306bde83b697174
BLAKE2b-256 b34916450cf01f9390bc2053796f8cb217f6326dce21f611d01fa2fb61cfd115

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f59e36790787446bf539134869cd1b9db64c1cc8b61ebfb463d8a3d84dcdebf8
MD5 803a96ffd3aabec7392ecdb899c6f36f
BLAKE2b-256 50ef980f208e9d69d2a32275b9c655871aacfa79effd74d06b33a3b285401f53

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: exiv2-0.17.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for exiv2-0.17.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ea992b4829c4090240af8fdd8ae57b88e120a8c5894032e34bdc5c066cec1085
MD5 4e1e1d9783f3c2d52c046d7c89cb2c1c
BLAKE2b-256 64e0364630b11b8a39658ab50fb962b29a78f26f6a8299f4b456d62f6f3831db

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76a44b7ae62ee1c413fd8df3899825cd991aabb305fa4cc39c333b911ea369e8
MD5 d15c0eb6f50cc002c4c899eb4aa69765
BLAKE2b-256 6a5c9b186a1c66a5e4dec3b445927b3782dcad2f2e16eafa245ea14a4982d895

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2ad4fb41641aa7198a6ac66ba78ce6bfb7933b8887f2f104853829de6fa6831b
MD5 f659a817b86ca287024a9181fcde2f4d
BLAKE2b-256 9d053d0a6d5944a81cf54caa83e81afd243a374de8ffc744f021c164eb1e4e55

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: exiv2-0.17.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for exiv2-0.17.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bfb1548b5eff24f9967a0cee2c2b5f148b98c3049c45025ae770e0037590dd7b
MD5 76d9926e8d94bf3cc852bf6328ca4032
BLAKE2b-256 c40bbdacb1da30aec669d14aa2eb85553184645264fc991b8a088af7f27a9aa3

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp36-cp36m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4277c2a3fee64acbb9f4a0af57f396677de8130dbdd5ce082d71fe268ff1ad44
MD5 be672b5b90c7f185e81a8307fb4655ed
BLAKE2b-256 486423c36537d832129c51d00dbee3e21ba7f699d5b1f0e8bd851561948eafb7

See more details on using hashes here.

File details

Details for the file exiv2-0.17.1-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for exiv2-0.17.1-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ca3dbf75a93d4c888ccae31ceb2a68ecb8fd2e362245e8c5e68c3d8ce673532
MD5 905788a0419379ea18b693a92e4d24c8
BLAKE2b-256 f51082e2788ea04b4efc0ae330e0e5717447a7947b82319f45feb7a1b231a580

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