fix: Changed scrape_me to scrape_html

It was needed to support the latest version of recipe_scrapers.
This commit is contained in:
Sayantan Santra 2024-09-21 19:08:16 -05:00
parent f4f23cb527
commit 81269e74eb
Signed by: SinTan1729
GPG Key ID: 0538DD402EA50898
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ except ImportError:
import requests
url_getter = requests
from recipe_scrapers import scrape_me, WebsiteNotImplementedError, SCRAPERS
from recipe_scrapers import scrape_html, WebsiteNotImplementedError, SCRAPERS
ROOT = '~/.config/recipe_box/'
@ -163,7 +163,7 @@ def main():
for url in args.url:
if url:
try:
scraper = scrape_me(url, wild_mode=wild_mode)
scraper = scrape_html(html=None, org_url=url, wild_mode=wild_mode, online=True)
except WebsiteNotImplementedError:
print('No scraper defined for {url}'.format(url=url))
print('Try using the -w [wild-mode] option, your mileage may vary.')