You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the first example:
{
"@context": "http://schema.org",
"@type": "Recipe",
"name": "Frying pan pizza",
"description" : "Homemade pizza is easier than you think - impress your friends with our quick method",
"prepTime" : "PT85M",
"cookTime" : "PT5M",
...
}
For the second:
{
"@context": "http://schema.org",
"@type": "Recipe",
"name": "Garlic & rosemary lamb with red wine gravy",
"description" : "Nailing a classic dish like this is easier than you think — plus it’s a brilliant way to feed a crowd",
"prepTime" : "PT20M",
"cookTime" : "PT170M",
...
}
The results (including any Python error messages) that you are seeing
The program hangs indefinitely when attempting to scrape the website using the wild_mode. Code that reproduces the error:
from recipe_scrapers import scrape_me
a = scrape_me("https://www.coop.co.uk/recipes/frying-pan-pizza", wild_mode=True)
The text was updated successfully, but these errors were encountered:
Pre-filing checks
The URL of the recipe(s) that are not being scraped correctly
https://www.coop.co.uk/recipes/frying-pan-pizza
https://www.coop.co.uk/recipes/garlic-and-rosemary-lamb-with-red-wine-gravy
The results you expect to see
For the first example:
{
"@context": "http://schema.org",
"@type": "Recipe",
"name": "Frying pan pizza",
"description" : "Homemade pizza is easier than you think - impress your friends with our quick method",
"prepTime" : "PT85M",
"cookTime" : "PT5M",
...
}
For the second:
{
"@context": "http://schema.org",
"@type": "Recipe",
"name": "Garlic & rosemary lamb with red wine gravy",
"description" : "Nailing a classic dish like this is easier than you think — plus it’s a brilliant way to feed a crowd",
"prepTime" : "PT20M",
"cookTime" : "PT170M",
...
}
The results (including any Python error messages) that you are seeing
The program hangs indefinitely when attempting to scrape the website using the wild_mode. Code that reproduces the error:
The text was updated successfully, but these errors were encountered: