Making Your First Marinara
Prerequisites
Step 1: Setting Up Your Kitchen
from tomatopy import Kitchen, KitchenHardware
# Initialize kitchen
kitchen = Kitchen()
# Set up hardware
hardware = KitchenHardware()
stove = hardware.get_stove()
blender = hardware.get_blender()
# Configure stove
stove.configure(
burners={
1: {"temperature": 100, "size": "medium"}, # For simmering
2: {"temperature": 200, "size": "large"} # For initial cooking
}
)Step 2: Preparing Ingredients
Step 3: Creating the Recipe
Step 4: Cooking Process
Step 5: Quality Control
Step 6: Adjustments and Refinements
Step 7: Final Quality Check
Troubleshooting
Common Issues
Best Practices
Next Steps
Last updated
Was this helpful?