Quick Start Guide
Get up and running with TomatoPy in minutes! This guide will walk you through the basics of creating and manipulating virtual ingredients.
Basic Usage
Creating Your First Tomato
from tomatopy import Tomato
# Create a fresh tomato
my_tomato = Tomato(
ripeness=0.8, # 80% ripe
variety="San Marzano",
weight=150 # grams
)
# Check tomato properties
print(my_tomato.ripeness) # 0.8
print(my_tomato.variety) # "San Marzano"Setting Up Your Virtual Kitchen
from tomatopy import Kitchen
# Initialize your kitchen
kitchen = Kitchen()
# Configure kitchen settings
kitchen.set_temperature(180) # Celsius
kitchen.set_humidity(65) # PercentageBasic Cooking Operations
Working with Multiple Ingredients
Taste Testing
Next Steps
Tips and Tricks
Last updated
Was this helpful?