A Python XMP metadata injection tool based on py3exiv2.
Project description
pyxmp
A Python XMP metadata injection tool based on py3exiv2
Installation
python -m pip install git+https://github.com/numbersprotocol/pyxmp.git#egg=pyxmp
Usage
To inject XMP metadata to the image, the input metadata should be a list of dict following the format below, with provider
, name
and value
as keys.
[
{
"provider": "InfoSnapshot",
"name": "Brand",
"value": "My Service"
},
{
"provider": "InfoSnapshot",
"name": "Current GPS Accuracy",
"value": "14.589"
},
{
"provider": "InfoSnapshot",
"name": "Current GPS Latitude",
"value": "25.045234"
},
{
"provider": "InfoSnapshot",
"name": "Current GPS Longitude",
"value": "121.530795"
},
{
"provider": "InfoSnapshot",
"name": "Current GPS Timestamp",
"value": "2020-09-15T13:50:25.143Z"
},
{
"provider":"InfoSnapshot",
"name":"Timestamp",
"value":"2020-09-15T13:50:30.203Z"
}
]
Then the metadata could be injected like the following example:
from pyxmp import pyxmp
metadata = {...} # Prepare the metadata like the above example
xmp_injected_image = pyxmp.inject(original_image_bytes, metadata, 'http://numbersprotocol.io/xmp/', 'examplePrefix')
To read the XMP metadata into a dict:
from pyxmp import pyxmp
metadata_dict = pyxmp.read(xmp_injected_image)
Example injected XMP metadata dict:
{
'Xmp.examplePrefix.infoSnapshot.brand': 'My Service',
'Xmp.examplePrefix.infoSnapshot.currentGPSAccuracy': '14.589',
'Xmp.examplePrefix.infoSnapshot.currentGPSLatitude': '25.045234',
'Xmp.examplePrefix.infoSnapshot.currentGPSLongitude': '121.530795',
'Xmp.examplePrefix.infoSnapshot.currentGPSTimestamp': '2020-09-15T13:50:25.143Z',
'Xmp.examplePrefix.infoSnapshot.timestamp': '2020-09-15T13:50:30.203Z'
}
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
pyxmp-0.1.1-py3-none-any.whl
(15.9 kB
view details)
File details
Details for the file pyxmp-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pyxmp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f658e45880111160eb5b31a0cd2b999b6af3b781e1833b2c8be2e45cd75f08d4 |
|
MD5 | 8189f6dfedbb22938b1262bd78a8a69c |
|
BLAKE2b-256 | 763435381629d353b7584bc5b1e651caa42ef1e5c982ba1a0ac05157397ed058 |