File size: 300 Bytes
0397cdb
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()