Giter Site home page Giter Site logo

Many useless warnings about exif-py HOT 2 OPEN

MichaelMonashev avatar MichaelMonashev commented on August 20, 2024
Many useless warnings

from exif-py.

Comments (2)

dwinant avatar dwinant commented on August 20, 2024 2

Without hacking the module, in your main code where you call exifread, try:
import logging
then
logging.getLogger("exifread").setLevel(logging.ERROR)

from exif-py.

guwidoe avatar guwidoe commented on August 20, 2024

I have the same problem. This is very annoying! Unfortunately, the development of this module does not seem super active...
I fixed it like this until the underlying issue gets fixed:

Go to the implementation of process_file and look at the first try except block, it looks like this:

    try:
        offset, endian, fake_exif = _determine_type(fh)
    except ExifNotFound as err:
        logger.warning(err)
        return {}
    except InvalidExif as err:
        logger.debug(err)
        return {}

logger.warning(err) is what prints the warning. You can get rid of it like this:

    try:
        offset, endian, fake_exif = _determine_type(fh)
    except ExifNotFound as err:
        if warnings:
            logger.warning(err)
        return {}
    except InvalidExif as err:
        logger.debug(err)
        return {}

and just add a warnings parameter to the function declaration:

def process_file(fh: BinaryIO, stop_tag=DEFAULT_STOP_TAG,
                 details=True, strict=False, debug=False,
                 truncate_tags=True, auto_seek=True, warnings=False):

Now if you really need the warning, you can still set warnings to True.

from exif-py.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.