gitextract_fe9h4enf/ ├── .github/ │ └── workflows/ │ └── lint-and-test.yml ├── .gitignore ├── CHANGELOG.md ├── COMPATIBILITY.txt ├── COPYING.BSD ├── COPYING.GPL ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── .gitignore │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── conf.py │ ├── examples.rst │ ├── faq.rst │ ├── index.rst │ ├── installation.rst │ ├── intro.rst │ ├── maintenance/ │ │ └── release-process.rst │ ├── package.rst │ └── reference/ │ ├── 1-exiftool.rst │ ├── 2-helper.rst │ └── 3-alpha.rst ├── exiftool/ │ ├── __init__.py │ ├── constants.py │ ├── exceptions.py │ ├── exiftool.py │ ├── experimental.py │ └── helper.py ├── mypy.ini ├── scripts/ │ ├── README.txt │ ├── flake8.bat │ ├── flake8.ini │ ├── flake8_requirements.txt │ ├── mypy.bat │ ├── mypy_reqiuirements.txt │ ├── pytest.bat │ ├── pytest_requirements.txt │ ├── sphinx_docs.bat │ ├── unittest.bat │ └── windows.coveragerc ├── setup.cfg ├── setup.py └── tests/ ├── README.txt ├── __init__.py ├── common_util.py ├── files/ │ ├── README.txt │ └── my_makernotes.config ├── test_alpha.py ├── test_exiftool_attr.py ├── test_exiftool_bytes.py ├── test_exiftool_configfile.py ├── test_exiftool_logger.py ├── test_exiftool_misc.py ├── test_exiftool_process.py ├── test_helper_checkexecute.py ├── test_helper_checktagnames.py ├── test_helper_gettags.py ├── test_helper_misc.py ├── test_helper_run.py ├── test_helper_settags.py └── test_helper_tags_float.py