from brightdata_scraper import BrightDataScraperTool def main(): scraper = BrightDataScraperTool() url = "https://en.wikipedia.org/wiki/Meir_Kadosh" result = scraper.forward(url) print("Scraped Content (first 500 chars):") print(result) if __name__ == "__main__": main()