recipe_extractor

Last updated:

0 purchases

recipe_extractor Image
recipe_extractor Images
Add to Cart

Description:

recipe extractor

Retrieve recipe information from the url of a cooking website.
Getting started #
https://pub.dev/packages/recipe_extractor/install
Usage #
If an element cannot be extracted, its value will be null
RecipeData :



Item
Type
Value Description




name
String?
Recipe name


image
String?
Presentation image link


servings
String?
Number of servings (Example: For 3 people, For 10 muffins etc...)


ingredients
List < String > ?
Ingredient list


instuctions
List < String > ?
List of preparation instructions


source
String?
Recipe source url



const String recipeUrl = "https://www.allrecipes.com/recipe/218792/ggs-chocolate-sheet-cake";

RecipeData recipeData = await extractRecipe(recipeUrl);

print(recipeData.name);
print(recipeData.image);
print(recipeData.servings);
print(recipeData.ingredients?.join("\n"));
print(recipeData.instructions?.join("\n"));
print(recipeData.source);
copied to clipboard
Additional information #



Supported recipe sites :




marmiton.org


allrecipes.com


swissmilk.ch


bbcgoodfood.com


simplyrecipes.com


recipetineats.com


topsecretrecipes.com


giallozafferano.it


cucchiaio.it



More coming soon...

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.