MerchantryTidbits

scraping / library

requests-html

Capability: requests-html

Use it when

  • requests-like session that can render JS with pyppeteer for simple pages
  • quick Python scrape with CSS selectors without full scrapy

What it solves

Install

pip install requests-html

Invoke

from requests_html import HTMLSession; r = HTMLSession().get(url); r.html.render(); r.html.find('a')

Alternatives

No reviewed alternatives recorded yet.