You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New Feature: added raw_bytes parameter to ExifTool.execute() to return bytes only with no decoding conversion.
Changed: ExifTool.execute() now accepts both [str,bytes]. When given str, it will encode according to the ExifTool.encoding property.
Technical change: Popen() no longer uses an -encoding parameter, therefore working with the socket is back to bytes when interfacing with the exiftool subprocess. This should be invisible to most users as the default behavior will still be the same.
Changed: ExifToolHelper.execute() now accepts Any type, and will do a str() on any non-str parameter.
Tests: Created associated test with a custom makernotes example to write and read back bytes.
Docs: Updated documentation with comprehensive samples, and a better FAQ section for common problems.
This discussion was created from the release v0.5.4.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Released to PyPI
raw_bytes
parameter toExifTool.execute()
to return bytes only with no decoding conversion.ExifTool.execute()
now accepts both[str,bytes]
. When givenstr
, it will encode according to theExifTool.encoding
property.ExifToolHelper.execute()
now acceptsAny
type, and will do astr()
on any non-str parameter.This discussion was created from the release v0.5.4.
Beta Was this translation helpful? Give feedback.
All reactions