Skip to content

15.0.0-rc3

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayaddison jayaddison released this 25 Apr 15:31
· 155 commits to main since this release

This is the third release candidate for the v15 major version of recipe-scrapers. There's no plan at the moment to discontinue the v14 / mainline branch, particularly due to the interface breaks here.

Breaking changes

  • The scrape_html function no longer uses requests to download recipes by default. To opt-in to backwards-compatible behaviour, ensure that requests is installed (for example, by using pip install recipe-scrapers[online]) and pass the online=True argument to the function.
  • The scrape_me function is no longer supported; please migrate to use the scrape_html function instead, and provide the HTML to scrape as an argument, or use the online=True feature of the function.

Deprecations

  • The wild_mode=True argument is deprecated; please migrate to use the supported_only=False argument instead.