The Recipe Recommendation System project helps users find recipes they can make with the ingredients they have at home. Users can add ingredients to their list, receive recipe recommendations, and view detailed instructions. The system also allows saving and loading the list of ingredients.
json
(part of the Python Standard Library)
No additional modules are needed since json is part of the Python Standard Library.
- Clone the Repository:
git clone https://github.com/ShravanDalavi/Simple-Python-Mini-Projects.git
- Navigate to Directory:
cd Simple-Python-Mini-Projects/Recipe\ Recommendation\ System
- Run the Script:
python recipe_recommender.py
Recipe Recommendation System
1. Add Ingredient
2. Recommend Recipes
3. Save Ingredients to File
4. Load Ingredients from File
5. Exit
Choose an option: 1
Enter ingredient name: egg
Recipe Recommendation System
1. Add Ingredient
2. Recommend Recipes
3. Save Ingredients to File
4. Load Ingredients from File
5. Exit
Choose an option: 2
Recipe: Omelette
Ingredients: egg, milk, salt, pepper
Instructions: Beat eggs and milk, then cook in a pan with salt and pepper.
- This project uses the Python Standard Library modules.