INNER CODE UNIT · Python

filtered_print

cwuom/NeriPlayer · tools_pub/ytmusic_api_probe.py:198

def filtered_print(*args: Any, **kwargs: Any) -> None:
    text = " ".join(str(arg) for arg in args).strip()
    if any(text.startswith(prefix) for prefix in SUPPRESSED_PRINT_PREFIXES):
        return
    _ORIGINAL_PRINT(*args, **kwargs)


builtins.print = filtered_print


@dataclass
class BootstrapData:
    home_status: int
    api_key: str
    visitor_data: str
    session_index: str
    web_remix_version: str
    remote_host: str

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…