brightdata-ai-agent / test_scraper.py
meirk-brd
Merge remote README with local changes
0397cdb
raw
history blame contribute delete
300 Bytes
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()