OXIESEC PANEL
- Current Dir:
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
flake8
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:34:06 AM
rwxr-xr-x
📄
__init__.py
1.92 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
__main__.py
142 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📁
__pycache__
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📄
_compat.py
518 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📁
api
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📄
checker.py
23.46 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
defaults.py
1.08 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
discover_files.py
2.84 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
exceptions.py
2.3 KB
12/18/2024 10:23:16 AM
rw-r--r--
📁
formatting
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📁
main
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📁
options
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📁
plugins
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📄
processor.py
16.05 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
statistics.py
4.31 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
style_guide.py
15.35 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
utils.py
10.93 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
violation.py
3.57 KB
12/18/2024 10:23:16 AM
rw-r--r--
Editing: __init__.py
Close
"""Top-level module for Flake8. This module - initializes logging for the command-line tool - tracks the version of the package - provides a way to configure logging for the command-line tool .. autofunction:: flake8.configure_logging """ import logging import sys from typing import Optional from typing import Type LOG = logging.getLogger(__name__) LOG.addHandler(logging.NullHandler()) __version__ = "5.0.4" __version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit()) _VERBOSITY_TO_LOG_LEVEL = { # output more than warnings but not debugging info 1: logging.INFO, # INFO is a numerical level of 20 # output debugging information 2: logging.DEBUG, # DEBUG is a numerical level of 10 } LOG_FORMAT = ( "%(name)-25s %(processName)-11s %(relativeCreated)6d " "%(levelname)-8s %(message)s" ) def configure_logging( verbosity: int, filename: Optional[str] = None, logformat: str = LOG_FORMAT, ) -> None: """Configure logging for flake8. :param verbosity: How verbose to be in logging information. :param filename: Name of the file to append log information to. If ``None`` this will log to ``sys.stderr``. If the name is "stdout" or "stderr" this will log to the appropriate stream. """ if verbosity <= 0: return verbosity = min(verbosity, max(_VERBOSITY_TO_LOG_LEVEL)) log_level = _VERBOSITY_TO_LOG_LEVEL[verbosity] if not filename or filename in ("stderr", "stdout"): fileobj = getattr(sys, filename or "stderr") handler_cls: Type[logging.Handler] = logging.StreamHandler else: fileobj = filename handler_cls = logging.FileHandler handler = handler_cls(fileobj) handler.setFormatter(logging.Formatter(logformat)) LOG.addHandler(handler) LOG.setLevel(log_level) LOG.debug( "Added a %s logging handler to logger root at %s", filename, __name__ )