@@ -1993,10 +1993,8 @@ def web_scrape_html(
19931993 extra_body : Body | None = None ,
19941994 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
19951995 ) -> BrandWebScrapeHTMLResponse :
1996- """Scrapes the given URL and returns the raw HTML content of the page.
1997-
1998- Uses
1999- automatic proxy escalation to handle blocked sites.
1996+ """
1997+ Scrapes the given URL and returns the raw HTML content of the page.
20001998
20011999 Args:
20022000 url: Full URL to scrape (must include http:// or https:// protocol)
@@ -2076,9 +2074,8 @@ def web_scrape_md(
20762074 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
20772075 ) -> BrandWebScrapeMdResponse :
20782076 """
2079- Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown
2080- (GFM), and returns the result. Uses automatic proxy escalation to handle blocked
2081- sites.
2077+ Scrapes the given URL, converts the HTML content to Markdown, and returns the
2078+ result.
20822079
20832080 Args:
20842081 url: Full URL to scrape and convert to markdown (must include http:// or https://
@@ -4098,10 +4095,8 @@ async def web_scrape_html(
40984095 extra_body : Body | None = None ,
40994096 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
41004097 ) -> BrandWebScrapeHTMLResponse :
4101- """Scrapes the given URL and returns the raw HTML content of the page.
4102-
4103- Uses
4104- automatic proxy escalation to handle blocked sites.
4098+ """
4099+ Scrapes the given URL and returns the raw HTML content of the page.
41054100
41064101 Args:
41074102 url: Full URL to scrape (must include http:// or https:// protocol)
@@ -4183,9 +4178,8 @@ async def web_scrape_md(
41834178 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
41844179 ) -> BrandWebScrapeMdResponse :
41854180 """
4186- Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown
4187- (GFM), and returns the result. Uses automatic proxy escalation to handle blocked
4188- sites.
4181+ Scrapes the given URL, converts the HTML content to Markdown, and returns the
4182+ result.
41894183
41904184 Args:
41914185 url: Full URL to scrape and convert to markdown (must include http:// or https://
0 commit comments