Compare commits

..

No commits in common. "main" and "0.1.0" have entirely different histories.
main ... 0.1.0

3 changed files with 3 additions and 9 deletions

View file

@ -2,12 +2,6 @@
## [Unreleased] ## [Unreleased]
## [0.1.1] - 24/02/2025
### New
- [#1] Add exiftool json output.
## [0.1.0] - 24/02/2025 ## [0.1.0] - 24/02/2025
- Initial release. - Initial release.

View file

@ -1,7 +1,7 @@
""" """
exif-database.exiftool: Python wrapper around exiftool(1) exif-database.exiftool: Python wrapper around exiftool(1)
""" """
import json
import subprocess import subprocess
import sys import sys
from datetime import datetime from datetime import datetime
@ -122,4 +122,4 @@ def execute_exiftool(img_file: str) -> dict:
if __name__ == '__main__': if __name__ == '__main__':
print(json.dumps(execute_exiftool(sys.argv[1]), default=str)) print(execute_exiftool(sys.argv[1]))

View file

@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "exif-database" name = "exif-database"
version = "0.1.1" version = "0.1.0"
authors = [ authors = [
{ name = "Aloïs Micard", email = "alois@micard.lu" }, { name = "Aloïs Micard", email = "alois@micard.lu" },
] ]