We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ef270a4
nitpick
httpx
pyquery
pyppeteer
from rsserpent.utils import Browser, HTTPClient # browser emulation - for sites with javascript async with Browser() as browser: await browser.goto("https://httpbin.org/html") content = await browser.content() # send plain HTTP requests with httpx async with HTTPClient() as client: response = await client.get("https://httpbin.org/get") data = response.json()