Read and modify metadata of digital image, including EXIF, IPTC, XMP.
Reason this release was yanked:
Hide the old version on pypi. If you insist, download it from https://github.com/LeoHsiao1/pyexiv2/releases
Project description
pyexiv2
Read and modify metadata of digital image, including EXIF, IPTC, XMP.
- install:
pip install pyexiv2 - source code on github
Features
- Runs on C++ API of exiv2.
- Supports running on Linux 64bit.
- Supports running on Windows 64bit, with Python3(64bit).
- Supports various metadata
- Supports various image formats
- Supports Unicode characters that contained in image paths and data.
- Not thread-safe, because some global variables have been used.
Usage
-
read metadata :
>>> from pyexiv2 import Image >>> i = Image("tests/1.jpg") >>> i.read_exif() {'Exif.Image.DateTime': '2019:06:23 19:45:17', 'Exif.Image.Artist': 'TEST', 'Exif.Image.Rating': '4', ...} >>> i.read_iptc() {'Iptc.Envelope.CharacterSet': '\x1b%G', 'Iptc.Application2.ObjectName': 'TEST', 'Iptc.Application2.Keywords': 'TEST', ...} >>> i.read_xmp() {'Xmp.dc.format': 'image/jpeg', 'Xmp.dc.rights': 'lang="x-default" TEST', 'Xmp.dc.subject': 'TEST', ...}
-
modify metadata :
>>> # prepare the XMP data you want to modify >>> _dict = {"Xmp.xmp.CreateDate": "2019-06-23T19:45:17.834", # this will overwrite its original value, or add it if it doesn't exist ... "Xmp.xmp.Rating": ""} # set an empty str explicitly to delete the datum } >>> i.modify_xmp(_dict) >>> xmp_dict = i.read_xmp() # read it again >>> xmp_dict["Xmp.xmp.CreateDate"] '2019-06-23T19:45:17.834' # it has been set >>> xmp_dict["Xmp.xmp.Rating"] KeyError: 'Xmp.xmp.Rating' # it has been deleted # use i.modify_exif() and i.modify_iptc() in the same way
-
In short, please call the public methods of class
pyexiv2.Image:i = Image("tests/1.jpg") i.read_exif() i.read_iptc() i.read_xmp() i.read_all() i.modify_exif({"Exif.Image.ImageDescription": "test",...}) i.modify_iptc({"Iptc.Application2.ObjectName": "test",...}) i.modify_xmp({"Xmp.xmp.CreateDate": "2019-06-23T19:45:17.834",...}) i.modify_all({"EXIF":{...}, "IPTC":{...}, "XMP":{...}}) i.clear_exif() i.clear_iptc() i.clear_xmp() i.clear_all()
Tests
There are some test cases in folder "pyexiv2/tests". Run them by pytest:
pip install pytest psutil
pytest -v
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyexiv2-1.2.2.tar.gz.
File metadata
- Download URL: pyexiv2-1.2.2.tar.gz
- Upload date:
- Size: 2.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f40e4f751d18d135ab9e45fbc70b21bd23369e4415ca81f11741ef4bb9e6edcf
|
|
| MD5 |
b4e7d06c9d04586bea3a2ef61b6eec6d
|
|
| BLAKE2b-256 |
085a91fa16a406af01cd0ac2f3030044e904d30ab35dba4c6548d3bc1d94f303
|
File details
Details for the file pyexiv2-1.2.2-py3-none-any.whl.
File metadata
- Download URL: pyexiv2-1.2.2-py3-none-any.whl
- Upload date:
- Size: 2.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a480a2cab28a518c21d78906e27766c8845338dfc1d2c3d264b711b90a53742a
|
|
| MD5 |
ab062e3377b88dbd2156d7465a71dce1
|
|
| BLAKE2b-256 |
8b4f768cba4a39ca04c50e838cfedb32822b543d46ef22a87683e11326faa68f
|