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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

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