Metadata-Version: 2.1
Name: export-exif
Version: 2.0.0
Summary: Une bibliothèque pour traiter des images avec EXIF
Home-page: https://github.com/Jean-LouisB/ExifRecup.git
Author: Fabrice Kopf
Author-email: contact@fabricekopf.fr
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: exif
Requires-Dist: pathlib

# GET EXIF

### Instalation
pip:
    pip install my_library

git:
    https://github.com/Jean-LouisB/ExifRecup.git

## Versions
### V2.0.0
JPG uniquement

Créer un dossier "images" sur le bureau avec les photos
Par défaut il cherche le dossier "images" sur le bureau.

## Utilisation

    from getexif.process import Process


    try:
        process = Process()
        result = process.get_exif()
        print(f"{result} images ont été traités")
    except Exception as e:
        print(f"Erreur de traitement : {str(e)}")
