__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 re import Pattern from typing import Any from pyflakes.reporter import Reporter __all__ = ["check", "checkPath", "checkRecursive", "iterSourceCode", "main"] PYTHON_SHEBANG_REGEX: Pattern[bytes] def check(codeString: str, filename: str, reporter: Reporter | None = ...) -> int: ... def checkPath(filename, reporter: Reporter | None = ...) -> int: ... def isPythonFile(filename) -> bool: ... def iterSourceCode(paths: Iterable[Any]) -> Iterator[Any]: ... def checkRecursive(paths: Iterable[Any], reporter: Reporter) -> int: ... def main(prog: str | None = ..., args: Sequence[Any] | None = ...) -> None: ...
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| METADATA.toml | File | 18 B | 0644 |
|
| __init__.pyi | File | 17 B | 0644 |
|
| api.pyi | File | 672 B | 0644 |
|
| checker.pyi | File | 14.29 KB | 0644 |
|
| messages.pyi | File | 4.89 KB | 0644 |
|
| reporter.pyi | File | 256 B | 0644 |
|