/webscraping

Web scraping using python (httpx and selectolax)

Primary LanguagePython

Web Scraping using httpx and selectolax

httpx

Used to make http requests and fetch responses , better than its counterpart requests library since httpx has both synchronous and asynchronous capabilities.httpx can also handle both HTTP/1.1 and HTTP/2 requests.

Selectolax

Used to extract required data from the html parsed response using appropriate CSS selectors.