Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions doc/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

Unreleased
----------

- Added new function ``safe_load()`` that do not stop parsing of EXIF
after any error in data. Instead it collects all errors into special
list. As a result the function returns tuple contains a dict with
parsed EXIF and list of all errors.

1.1.3
-----

Expand Down
3 changes: 1 addition & 2 deletions piexif/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from ._remove import remove
from ._load import load
from ._load import load, safe_load
from ._dump import dump
from ._transplant import transplant
from ._insert import insert
from ._exif import *
from ._exceptions import *



VERSION = '1.1.3'
Loading