fetch
def fetch(
url:str, # URL to fetch
sel:str=None, # CSS selector to extract (None = full page)
heavy:bool=False, # JS rendering via headless browser
stealthy:bool=False, # Anti-bot stealth fetcher
session:bool=False, # Route through the persistent debug Chrome (reuses its logged-in cookies)
auto:bool=False, # Auto-escalate plain->heavy->stealthy->session on bot-block detection
as_json:bool=False, # Output JSON instead of markdown
):Fetch a URL and print as markdown.