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

Retrieve recipe information from the url of a cooking website

example/recipe_extractor_example.dart

import 'package:recipe_extractor/recipe_extractor.dart';

void main() async {
  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
2
likes
130
points
92
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.17 - 2025.04.01

Retrieve recipe information from the url of a cooking website

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

html, http, web

More

Packages that depend on recipe_extractor