Making Your First Marinara
This tutorial will guide you through creating a classic marinara sauce using TomatoPy. We'll cover everything from ingredient selection to final taste testing.
Prerequisites
Before starting, make sure you have:
Basic understanding of Python
TomatoPy installed
Virtual environment set up
Step 1: Setting Up Your Kitchen
First, let's initialize our virtual kitchen and configure the equipment:
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
Let's create our ingredients with optimal properties:
Step 3: Creating the Recipe
Let's set up our recipe with proper proportions and cooking instructions:
Step 4: Cooking Process
Now, let's execute the cooking process step by step:
Step 5: Quality Control
Let's analyze our sauce to ensure it meets our standards:
Step 6: Adjustments and Refinements
Based on our analysis, we can make adjustments if needed:
Step 7: Final Quality Check
Let's perform a final quality assessment:
Troubleshooting
Common Issues
Sauce Too Acidic
Sauce Too Thick
Insufficient Flavor
Best Practices
Always Check Ingredient Quality
Monitor Temperature
Regular Stirring
Next Steps
Perfect Pizza Production - Learn to make pizza
Advanced Flavor Profiling - Master taste analysis
API Reference - Explore the full API
Last updated
Was this helpful?