15.0.0-rc3
Pre-release
Pre-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 usesrequests
to download recipes by default. To opt-in to backwards-compatible behaviour, ensure thatrequests
is installed (for example, by usingpip install recipe-scrapers[online]
) and pass theonline=True
argument to the function. - The
scrape_me
function is no longer supported; please migrate to use thescrape_html
function instead, and provide the HTML to scrape as an argument, or use theonline=True
feature of the function.
Deprecations
- The
wild_mode=True
argument is deprecated; please migrate to use thesupported_only=False
argument instead.