Meal

class myfitnesspal.meal.Meal(name: str, entries: List[Entry])

Stores information about a particular meal.

__getitem__(value: int) Entry

Returns a particular entry for thsi meal.

property entries: List[Entry]

Entries for this meal.

property name: str

Name of this meal.

property totals: Dict[str, float]

Nutrition totals for all entries for this meal.