SILENT KILLERPanel

Current Path: > > usr > lib > python2.7 > site-packages > > pip > utils > >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //usr/lib/python2.7/site-packages//pip/utils//

NameTypeSizeLast ModifiedActions
__init__.py File 27187 bytes April 21 2022 18:08:21.
__init__.pyc File 27725 bytes April 21 2022 18:08:35.
__init__.pyo File 27666 bytes April 21 2022 18:08:36.
appdirs.py File 8811 bytes April 21 2022 18:08:21.
appdirs.pyc File 8607 bytes April 21 2022 18:08:35.
appdirs.pyo File 8607 bytes April 21 2022 18:08:35.
build.py File 1312 bytes April 21 2022 18:08:21.
build.pyc File 1719 bytes April 21 2022 18:08:35.
build.pyo File 1719 bytes April 21 2022 18:08:35.
deprecation.py File 2232 bytes April 21 2022 18:08:21.
deprecation.pyc File 2317 bytes April 21 2022 18:08:35.
deprecation.pyo File 2317 bytes April 21 2022 18:08:35.
encoding.py File 971 bytes April 21 2022 18:08:21.
encoding.pyc File 1282 bytes April 21 2022 18:08:35.
encoding.pyo File 1282 bytes April 21 2022 18:08:35.
filesystem.py File 899 bytes April 21 2022 18:08:21.
filesystem.pyc File 780 bytes April 21 2022 18:08:35.
filesystem.pyo File 780 bytes April 21 2022 18:08:35.
glibc.py File 2939 bytes April 21 2022 18:08:21.
glibc.pyc File 1826 bytes April 21 2022 18:08:35.
glibc.pyo File 1826 bytes April 21 2022 18:08:35.
hashes.py File 2866 bytes April 21 2022 18:08:21.
hashes.pyc File 3961 bytes April 21 2022 18:08:35.
hashes.pyo File 3961 bytes April 21 2022 18:08:35.
logging.py File 3327 bytes April 21 2022 18:08:21.
logging.pyc File 4842 bytes April 21 2022 18:08:35.
logging.pyo File 4842 bytes April 21 2022 18:08:35.
outdated.py File 5989 bytes April 21 2022 18:08:21.
outdated.pyc File 5680 bytes April 21 2022 18:08:35.
outdated.pyo File 5680 bytes April 21 2022 18:08:35.
packaging.py File 2080 bytes April 21 2022 18:08:21.
packaging.pyc File 2461 bytes April 21 2022 18:08:35.
packaging.pyo File 2461 bytes April 21 2022 18:08:35.
setuptools_build.py File 278 bytes April 21 2022 18:08:21.
setuptools_build.pyc File 347 bytes April 21 2022 18:08:35.
setuptools_build.pyo File 347 bytes April 21 2022 18:08:35.
ui.py File 11597 bytes April 21 2022 18:08:21.
ui.pyc File 11683 bytes April 21 2022 18:08:35.
ui.pyo File 11613 bytes April 21 2022 18:08:36.

Reading File: //usr/lib/python2.7/site-packages//pip/utils///logging.py

from __future__ import absolute_import

import contextlib
import logging
import logging.handlers
import os

try:
    import threading
except ImportError:
    import dummy_threading as threading

from pip.compat import WINDOWS
from pip.utils import ensure_dir

try:
    from pip._vendor import colorama
# Lots of different errors can come from this, including SystemError and
# ImportError.
except Exception:
    colorama = None


_log_state = threading.local()
_log_state.indentation = 0


@contextlib.contextmanager
def indent_log(num=2):
    """
    A context manager which will cause the log output to be indented for any
    log messages emitted inside it.
    """
    _log_state.indentation += num
    try:
        yield
    finally:
        _log_state.indentation -= num


def get_indentation():
    return getattr(_log_state, 'indentation', 0)


class IndentingFormatter(logging.Formatter):

    def format(self, record):
        """
        Calls the standard formatter, but will indent all of the log messages
        by our current indentation level.
        """
        formatted = logging.Formatter.format(self, record)
        formatted = "".join([
            (" " * get_indentation()) + line
            for line in formatted.splitlines(True)
        ])
        return formatted


def _color_wrap(*colors):
    def wrapped(inp):
        return "".join(list(colors) + [inp, colorama.Style.RESET_ALL])
    return wrapped


class ColorizedStreamHandler(logging.StreamHandler):

    # Don't build up a list of colors if we don't have colorama
    if colorama:
        COLORS = [
            # This needs to be in order from highest logging level to lowest.
            (logging.ERROR, _color_wrap(colorama.Fore.RED)),
            (logging.WARNING, _color_wrap(colorama.Fore.YELLOW)),
        ]
    else:
        COLORS = []

    def __init__(self, stream=None):
        logging.StreamHandler.__init__(self, stream)

        if WINDOWS and colorama:
            self.stream = colorama.AnsiToWin32(self.stream)

    def should_color(self):
        # Don't colorize things if we do not have colorama
        if not colorama:
            return False

        real_stream = (
            self.stream if not isinstance(self.stream, colorama.AnsiToWin32)
            else self.stream.wrapped
        )

        # If the stream is a tty we should color it
        if hasattr(real_stream, "isatty") and real_stream.isatty():
            return True

        # If we have an ASNI term we should color it
        if os.environ.get("TERM") == "ANSI":
            return True

        # If anything else we should not color it
        return False

    def format(self, record):
        msg = logging.StreamHandler.format(self, record)

        if self.should_color():
            for level, color in self.COLORS:
                if record.levelno >= level:
                    msg = color(msg)
                    break

        return msg


class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler):

    def _open(self):
        ensure_dir(os.path.dirname(self.baseFilename))
        return logging.handlers.RotatingFileHandler._open(self)


class MaxLevelFilter(logging.Filter):

    def __init__(self, level):
        self.level = level

    def filter(self, record):
        return record.levelno < self.level

SILENT KILLER Tool