__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from collections.abc import Iterable, Iterator, Sequence
from typing import Any
from pygments.token import _TokenType
from pygments.util import Future
class LexerMeta(type):
def __new__(cls, name, bases, d): ...
def analyse_text(self, text) -> None: ... # actually defined in class Lexer
# ClassVars of Lexer, but same situation as with StyleMeta and Style
name: str
aliases: Sequence[str] # not intended mutable
filenames: Sequence[str]
alias_filenames: Sequence[str]
mimetypes: Sequence[str]
priority: int
class Lexer(metaclass=LexerMeta):
options: Any
stripnl: Any
stripall: Any
ensurenl: Any
tabsize: Any
encoding: Any
filters: Any
def __init__(self, **options) -> None: ...
def add_filter(self, filter_, **options) -> None: ...
def get_tokens(self, text: str, unfiltered: bool = ...) -> Iterator[tuple[_TokenType, str]]: ...
def get_tokens_unprocessed(self, text: str) -> Iterator[tuple[int, _TokenType, str]]: ...
class DelegatingLexer(Lexer):
root_lexer: Any
language_lexer: Any
needle: Any
def __init__(self, _root_lexer, _language_lexer, _needle=..., **options) -> None: ...
def get_tokens_unprocessed(self, text: str) -> Iterator[tuple[int, _TokenType, str]]: ...
class include(str): ...
class _inherit: ...
inherit: Any
class combined(tuple[Any, ...]):
def __new__(cls, *args): ...
def __init__(self, *args) -> None: ...
class _PseudoMatch:
def __init__(self, start, text) -> None: ...
def start(self, arg: Any | None = ...): ...
def end(self, arg: Any | None = ...): ...
def group(self, arg: Any | None = ...): ...
def groups(self): ...
def groupdict(self): ...
def bygroups(*args): ...
class _This: ...
this: Any
def using(_other, **kwargs): ...
class default:
state: Any
def __init__(self, state) -> None: ...
class words(Future):
words: Any
prefix: Any
suffix: Any
def __init__(self, words, prefix: str = ..., suffix: str = ...) -> None: ...
def get(self): ...
class RegexLexerMeta(LexerMeta):
def process_tokendef(cls, name, tokendefs: Any | None = ...): ...
def get_tokendefs(cls): ...
def __call__(cls, *args, **kwds): ...
class RegexLexer(Lexer, metaclass=RegexLexerMeta):
flags: Any
tokens: Any
def get_tokens_unprocessed(self, text: str, stack: Iterable[str] = ...) -> Iterator[tuple[int, _TokenType, str]]: ...
class LexerContext:
text: Any
pos: Any
end: Any
stack: Any
def __init__(self, text, pos, stack: Any | None = ..., end: Any | None = ...) -> None: ...
class ExtendedRegexLexer(RegexLexer):
def get_tokens_unprocessed( # type: ignore[override]
self, text: str | None = ..., context: LexerContext | None = ...
) -> Iterator[tuple[int, _TokenType, str]]: ...
class ProfilingRegexLexerMeta(RegexLexerMeta): ...
class ProfilingRegexLexer(RegexLexer, metaclass=ProfilingRegexLexerMeta):
def get_tokens_unprocessed(self, text: str, stack: Iterable[str] = ...) -> Iterator[tuple[int, _TokenType, str]]: ...
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| filters | Folder | 0755 |
|
|
| formatters | Folder | 0755 |
|
|
| lexers | Folder | 0755 |
|
|
| styles | Folder | 0755 |
|
|
| METADATA.toml | File | 69 B | 0644 |
|
| __init__.pyi | File | 615 B | 0644 |
|
| cmdline.pyi | File | 272 B | 0644 |
|
| console.pyi | File | 170 B | 0644 |
|
| filter.pyi | File | 644 B | 0644 |
|
| formatter.pyi | File | 736 B | 0644 |
|
| lexer.pyi | File | 3 KB | 0644 |
|
| modeline.pyi | File | 61 B | 0644 |
|
| plugin.pyi | File | 741 B | 0644 |
|
| regexopt.pyi | File | 202 B | 0644 |
|
| scanner.pyi | File | 419 B | 0644 |
|
| sphinxext.pyi | File | 473 B | 0644 |
|
| style.pyi | File | 1.37 KB | 0644 |
|
| token.pyi | File | 907 B | 0644 |
|
| unistring.pyi | File | 358 B | 0644 |
|
| util.pyi | File | 1.06 KB | 0644 |
|