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. 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.8.3 onwards is built with support for BMFF files. In order to use BMFF files in your Python program you need to call the enableBMFF function. 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.16.3.tar.gz (2.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

exiv2-0.16.3-cp312-cp312-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.12Windows x86-64

exiv2-0.16.3-cp312-cp312-manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

exiv2-0.16.3-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

exiv2-0.16.3-cp312-cp312-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

exiv2-0.16.3-cp311-cp311-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.11Windows x86-64

exiv2-0.16.3-cp311-cp311-manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

exiv2-0.16.3-cp311-cp311-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

exiv2-0.16.3-cp311-cp311-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

exiv2-0.16.3-cp310-cp310-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.10Windows x86-64

exiv2-0.16.3-cp310-cp310-manylinux_2_28_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

exiv2-0.16.3-cp310-cp310-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

exiv2-0.16.3-cp310-cp310-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

exiv2-0.16.3-cp39-cp39-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.9Windows x86-64

exiv2-0.16.3-cp39-cp39-manylinux_2_28_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

exiv2-0.16.3-cp39-cp39-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

exiv2-0.16.3-cp39-cp39-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

exiv2-0.16.3-cp38-cp38-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.8Windows x86-64

exiv2-0.16.3-cp38-cp38-manylinux_2_28_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

exiv2-0.16.3-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

exiv2-0.16.3-cp38-cp38-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

exiv2-0.16.3-cp37-cp37m-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

exiv2-0.16.3-cp37-cp37m-manylinux_2_28_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ x86-64

exiv2-0.16.3-cp37-cp37m-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

exiv2-0.16.3-cp36-cp36m-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

exiv2-0.16.3-cp36-cp36m-manylinux_2_28_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.28+ x86-64

exiv2-0.16.3-cp36-cp36m-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for exiv2-0.16.3.tar.gz
Algorithm Hash digest
SHA256 b3e0a227e5505609c144591ace479ad838839b7ae78c5ea0aec138ab4dc6e2a1
MD5 068e9adcf255554af78611a5a92b41aa
BLAKE2b-256 24a6f7d4a2ee144883a12225aeeccd649f64db5e4f27961808fee6e28291ec01

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for exiv2-0.16.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3e46dded8341ac08e64d1127c08b69fa23b12b4c863fe67afffd96b48e9da3c6
MD5 288c859f3d24a1077c98cb2e5bdc85fe
BLAKE2b-256 f655845fc1cb1ade34229aa2e8123bd1b66748a700563ea1f83a29c2855e1578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ea418ed1256d32aa2c2d63dc2c7987d6ce972c3c9d50c09409b9f7c236e3744
MD5 e8fcd652d179ebd5d69fe7bbd2b74340
BLAKE2b-256 5f30be8a948e0320f28cad0f64b2a4ae133a42490226b0a5787c0c10964b89d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e3d26ae875b365f8302fd8af1e8f6954d27a880959ad722b4f15b702c755143
MD5 91d495a64857a56a2fa757189303647a
BLAKE2b-256 1367d4ad3e8f86d6b6701bd9c75d2e665248d2dbf38a7a53aeaad5cb9be6b999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f908cad6dcaa2572420a4b1761784df97b0a6349e02e0608e673e631007b4273
MD5 f1bfa9d478f2bfb589910a7ede74776d
BLAKE2b-256 eaf80d401df1a5a62d54d2dc734571eba0e1cfe018c8abc6bfecb2235812deeb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for exiv2-0.16.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63447a62561ddbde186c68fa48e7199184712017c6609035a8ce17e5d1fd21e7
MD5 e7e67d2957708df2b79e8cbd457dbe17
BLAKE2b-256 82a33632c220bd02456377aa0e7fecae50662448f0f3d803b4d9feefe7bbc8f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 300ad34869e9ef78d2ce7e43965aca1f6bc7acdd7d7ab01b99fd71284cb895a7
MD5 fda92ac7773207df96303ef79c2cbdfa
BLAKE2b-256 2697499d2c11c50040a19c30c17fdbb55bf9e20d7030439b64af171b0fcee439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0220d79871952c5a388b8cbbbe6332185835605a433ae1516f4bd8647375baa5
MD5 da1f2b613d5501830b2847bb6d780ad7
BLAKE2b-256 c48d4d056ac576725aeeaaf23a24fdcf1b09aa3a2d08f9350b1f62f098fecddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 84d28ebc547188169ec6dac43c3420e8c1c9a9340a711fdf83388330441dcc3f
MD5 a8cd70ab935d260b817b5791427b8e0a
BLAKE2b-256 06dc8f2e98823829c9bbfd508229d2ba7a865cb5018ea75eb37f2f974136e7da

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for exiv2-0.16.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b8090b4e9cbdfa45a49602f98a3e2fb8bf93ed8208e511cb7eb2db464ea4d650
MD5 f16cbc1f539ad81729b25c68092ffe28
BLAKE2b-256 dceaefec20b5645192d723b1a55f1d2b701e5734bde35d1b21ba41cf3a8d40ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2cc368b9878ab9da015754daf40f526731340e21de1613fba9cec6443e3301e9
MD5 4ff84d92d6aedc2b3b83ffad745390e2
BLAKE2b-256 bb8a69318423053307fb92df6aebd625f3a7b947dabd375ab86ac70a424bcb8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68937da3712f78a782c65a081b8e3cd2b2efde6f0469db27818bf35ff84127cc
MD5 bcdccbfe559c465e660beb10f722c31e
BLAKE2b-256 da9de6f4280e60c130472d3e68dcfc34f6d82690b09329efa7d5ce2040b06264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 97a49c1a701823097f88ab9f4a8b37a1e3862b363254e1f30aad1f858fa76446
MD5 87bb857cb4c572555276ac7be80a19ef
BLAKE2b-256 54dc6ba7def857836741d2f58f747a9adba3cc85a7fcfc97ded24ed741b3d0d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for exiv2-0.16.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f54aee17c9315606521b58703d97384872917df2503a25de4a32d074129888c6
MD5 50f81cf83d46cd92ebee775a465055b6
BLAKE2b-256 bb5442e4ec21403ae9f942806afb69b779cd348f7cc539e9ff9a4e52f3ec4205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f45691ab7704c62cb9ec9fa56be2b1033463ef1c980d180eadaa5cd95d12119b
MD5 2a6ab2c42c4a717c6b2bcd448502b49a
BLAKE2b-256 a4327e2f7303e2528b7d06a42260c3897eeb708575fd0818019f35185e60c05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6669969fc3b29aadadba9f6d9b39d3c99ce8717929a0ead975401f742570280c
MD5 76cf3430598efb6b27f084b37df92dea
BLAKE2b-256 71832cc6d01c6e7c294f4d362d6c5cf38fb44fd1ba606442fded3e76273583a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 24dc55d48ed968898ad43153694b304d4a71b7858a6cd60d45573a1e85f2ab6d
MD5 1585d4cbb0895ff31c7832d31f3eafdf
BLAKE2b-256 70377fd0418cfdb9a2bc691936c8104c824e4d32f58e785c3ac55d60d79f9fd0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for exiv2-0.16.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c55ee0ffc0f4a85743000db7eabdc9498e6e0a550200e568ac066425e6bbc90c
MD5 efc249e77e8550b263d8af13ee682c9c
BLAKE2b-256 0e44ca3773399050bec841f60c21830022ffdbba94c983ddd8d72644f9e88097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2ba89fb97cafcf4f8a23d3ad128019f27b0141c415e0767c38e73594babfc67
MD5 33a26ba4edb9fb7aaa172bf46aa61c76
BLAKE2b-256 5e352d81484a25690504e358cc4ef2ffe6cc06c6666aad22aea1bab07e8b3e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95d7f3f2b1fc25b9db0c07bfc50387d0697c8fb351d954fe682748d52c06e85f
MD5 5d1341fb435413d59e9f08159abfa69c
BLAKE2b-256 8d4293ff031a6ac73257f42e847c54adc71dc73b5e6f35a5116215a3751ca0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff1cbcc8fb6291ef08c5e55542cc0e5ae81d746ccfc4c67f7fa8dc0cc312d1b8
MD5 161cc66cc3d1601ffd362adf555071ab
BLAKE2b-256 6487e59ab6a5d8245a86e6b560e159ec383b7f8d835c9bbe8f2b9e079d362246

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for exiv2-0.16.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 77aa1a5f896c72060e6a3b384d26672a640c456b93bdf68f05abbcc0e2737205
MD5 b51b08f7ea38123a1c2b8f536e549501
BLAKE2b-256 cdc741a7b5a3ba3d62512d94edfbea94da65e011c737a155f376d577b1834e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa838c17c292960f6684b268ef915ead5cffac18872420f8d5b7277cf4218d02
MD5 1b57d42959114c07dd72a6dce4a500a8
BLAKE2b-256 abe62ad1276bfa34303d60ecdee2486adcd0bc3a01ed4f14d100eaa3cb4d4b06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f42a73c1be0a34ae4d9d229280f20a2108d2ca27ae467438371ae0475c5dd8bb
MD5 43c9440e03a3f519dcdd0fba4027beca
BLAKE2b-256 9eeba1a3218224c97d2bc58d95f601fd34eb360ec11e70faaa9d774f395f807f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for exiv2-0.16.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 73162a40e899c92c2d99a6c8f7c0875d67ca7b3667c65df5bd05bc4c2d268156
MD5 c87dd14d3c6d05047a5b4f7b49fb7e7c
BLAKE2b-256 44398cc59616db8decaffacdf319539edcd976a04b8e5525297807c32f8115e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1fd04ddeff0be0c64af8a76c91ddf85ca224101b288dc9ee5a912b908463e0f
MD5 8871427f8eb8c8c567023c0ef4eaf3e4
BLAKE2b-256 f02b58867800154b2705bd0efebf8806be8763b8f58ba286fad16cc419d6d177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exiv2-0.16.3-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 32847b804948503b4e151996c943266830dbf23dc05134313c30166ff4b5e861
MD5 c61ad86207a424950a5484aafd849af8
BLAKE2b-256 218aa74575bb84af8b6d9dbb9159891ab89b4a23c007812ddb07d8fbeb0357ce

See more details on using hashes here.

Supported by

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