Load nutrical for nutrition calculation. 1from nutrical import Ingredient, Recipe 2from nutrical.utils import UREG Imei whole wheat toast 1toast = Ingredient("Imei Toast", 2 amount = '300g', 3 calories = 3 * 264, 4 protein = 3 * 11.4, 5 fiber = 3 * 8.1 6) 7toast = toast * (27) + 0 * toast 8toast servings amount calories fiber protein ———- ———- ———- ——- ——— 1 85.71 gram 226.29 6.94 9.77 Home-made Yogurt Protein: 6g / 100g 1powder = Ingredient("powered milk", amount='32g', …