recipe_extractor 1.0.0 copy "recipe_extractor: ^1.0.0" to clipboard
recipe_extractor: ^1.0.0 copied to clipboard

Retrieve recipe name, ingredients and instructions from a recipe URL.

Retrieve recipe name, ingredients and instructions from a recipe URL.

Getting started #

With dart :

dart pub get recipe_extractor

With Flutter :

flutter pub get recipe_extractor

Import package :

import package:recipe_extractor/recipe_extractor.dart

Usage #

const String recipeUrl = "https://www.marmiton.org/recettes/recette_cookies-maison_86989.aspx";

RecipeData recipeData = await extractRecipe(recipeUrl);

print(recipeData.name);
print(recipeData.ingredients);
print(recipeData.instructions);

Additional information #

Supported recipe sites :

  • marmiton.org

More coming soon...

2
likes
0
points
34
downloads

Publisher

unverified uploader

Weekly Downloads

Retrieve recipe name, ingredients and instructions from a recipe URL.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

html, http, web

More

Packages that depend on recipe_extractor