SILENT KILLERPanel

Current Path: > > opt > alt > python38 > lib > > python3.8 > site-packages > pip > _vendor > pygments >


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: //opt/alt/python38/lib//python3.8/site-packages/pip/_vendor/pygments/

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
filters Directory - -
formatters Directory - -
lexers Directory - -
styles Directory - -
__init__.py File 3002 bytes November 13 2023 21:40:26.
__main__.py File 353 bytes November 13 2023 21:40:26.
cmdline.py File 23408 bytes November 13 2023 21:40:26.
console.py File 1697 bytes November 13 2023 21:40:26.
filter.py File 1938 bytes November 13 2023 21:40:26.
formatter.py File 2917 bytes November 13 2023 21:40:26.
lexer.py File 32005 bytes November 13 2023 21:40:26.
modeline.py File 986 bytes November 13 2023 21:40:26.
plugin.py File 1727 bytes November 13 2023 21:40:26.
regexopt.py File 3072 bytes November 13 2023 21:40:26.
scanner.py File 3092 bytes November 13 2023 21:40:26.
sphinxext.py File 4630 bytes November 13 2023 21:40:26.
style.py File 6257 bytes November 13 2023 21:40:26.
token.py File 6143 bytes November 13 2023 21:40:26.
unistring.py File 63187 bytes November 13 2023 21:40:26.
util.py File 9110 bytes November 13 2023 21:40:26.

Reading File: //opt/alt/python38/lib//python3.8/site-packages/pip/_vendor/pygments//plugin.py

"""
    pygments.plugin
    ~~~~~~~~~~~~~~~

    Pygments setuptools plugin interface. The methods defined
    here also work if setuptools isn't installed but they just
    return nothing.

    lexer plugins::

        [pygments.lexers]
        yourlexer = yourmodule:YourLexer

    formatter plugins::

        [pygments.formatters]
        yourformatter = yourformatter:YourFormatter
        /.ext = yourformatter:YourFormatter

    As you can see, you can define extensions for the formatter
    with a leading slash.

    syntax plugins::

        [pygments.styles]
        yourstyle = yourstyle:YourStyle

    filter plugin::

        [pygments.filter]
        yourfilter = yourfilter:YourFilter


    :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
"""
LEXER_ENTRY_POINT = 'pygments.lexers'
FORMATTER_ENTRY_POINT = 'pygments.formatters'
STYLE_ENTRY_POINT = 'pygments.styles'
FILTER_ENTRY_POINT = 'pygments.filters'


def iter_entry_points(group_name):
    try:
        from pip._vendor import pkg_resources
    except (ImportError, OSError):
        return []

    return pkg_resources.iter_entry_points(group_name)


def find_plugin_lexers():
    for entrypoint in iter_entry_points(LEXER_ENTRY_POINT):
        yield entrypoint.load()


def find_plugin_formatters():
    for entrypoint in iter_entry_points(FORMATTER_ENTRY_POINT):
        yield entrypoint.name, entrypoint.load()


def find_plugin_styles():
    for entrypoint in iter_entry_points(STYLE_ENTRY_POINT):
        yield entrypoint.name, entrypoint.load()


def find_plugin_filters():
    for entrypoint in iter_entry_points(FILTER_ENTRY_POINT):
        yield entrypoint.name, entrypoint.load()

SILENT KILLER Tool