sylikc / pyexiftool

PyExifTool (active PyPI project) - A Python library to communicate with an instance of Phil Harvey's ExifTool command-line application. Runs one process with special -stay_open flag, and pipes data to/from. Much more efficient than running a subprocess for each command!
Other
144 stars 17 forks source link

exiftool.py: use ujson when it exists #2

Closed ickc closed 4 years ago

ickc commented 4 years ago

UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 2.5+ and 3.

May be used as a drop in replacement for most other JSON parsers for Python:

from https://pypi.org/project/ujson/

sylikc commented 4 years ago

good catch. I may also use ujson in my own uses.