Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
pygments /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
filters
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
formatters
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
lexers
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
styles
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
__init__.py
2.89
KB
-rw-r--r--
2025-04-08 17:01
__main__.py
348
B
-rw-r--r--
2025-04-08 17:01
cmdline.py
22.98
KB
-rw-r--r--
2025-04-08 17:01
console.py
1.68
KB
-rw-r--r--
2025-04-08 17:01
filter.py
1.87
KB
-rw-r--r--
2025-04-08 17:01
formatter.py
4.26
KB
-rw-r--r--
2025-04-08 17:01
lexer.py
34.29
KB
-rw-r--r--
2025-04-08 17:01
modeline.py
1005
B
-rw-r--r--
2025-04-08 17:01
plugin.py
1.85
KB
-rw-r--r--
2025-04-08 17:01
regexopt.py
3
KB
-rw-r--r--
2025-04-08 17:01
scanner.py
3.02
KB
-rw-r--r--
2025-04-08 17:01
sphinxext.py
7.71
KB
-rw-r--r--
2025-04-08 17:01
style.py
6.26
KB
-rw-r--r--
2025-04-08 17:01
token.py
6.08
KB
-rw-r--r--
2025-04-08 17:01
unistring.py
61.73
KB
-rw-r--r--
2025-04-08 17:01
util.py
9.8
KB
-rw-r--r--
2025-04-08 17:01
Save
Rename
""" pygments.plugin ~~~~~~~~~~~~~~~ Pygments plugin interface. 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-2025 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ from importlib.metadata import entry_points 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): groups = entry_points() if hasattr(groups, 'select'): # New interface in Python 3.10 and newer versions of the # importlib_metadata backport. return groups.select(group=group_name) else: # Older interface, deprecated in Python 3.10 and recent # importlib_metadata, but we need it in Python 3.8 and 3.9. return groups.get(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()