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_htmlfunction no longer usesrequeststo download recipes by default. To opt-in to backwards-compatible behaviour, ensure thatrequestsis installed (for example, by usingpip install recipe-scrapers[online]) and pass theonline=Trueargument to the function. - The
scrape_mefunction is no longer supported; please migrate to use thescrape_htmlfunction instead, and provide the HTML to scrape as an argument, or use theonline=Truefeature of the function.
Deprecations
- The
wild_mode=Trueargument is deprecated; please migrate to use thesupported_only=Falseargument instead.