MerchantryTidbits

scraping / library

Beautiful Soup

Capability: Beautiful Soup

Use it when

  • parse static HTML into a navigable tree for scrapers
  • extract tags and text from HTML without a browser

What it solves

Install

pip install beautifulsoup4

Invoke

from bs4 import BeautifulSoup; soup = BeautifulSoup(html, 'lxml')

Alternatives

No reviewed alternatives recorded yet.