Python Project: Abraham Hicks Process Selector

Press play to try.

process_dict = {
1: ['rampage of appreciation', 'magical creation box', 'creative workshop', 'virtual reality', 'prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects'], 2: ['rampage of appreciation', 'magical creation box', 'creative workshop', 'virtual reality', 'prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'scripting', 'placemat process'], 3: ['rampage of appreciation', 'magical creation box', 'creative workshop', 'virtual reality', 'prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'scripting', 'placemat process'], 4: ['rampage of appreciation', 'magical creation box', 'creative workshop', 'virtual reality', 'prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'scripting', 'placemat process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if...", 'segment intending'], 5: ['rampage of appreciation', 'magical creation box', 'creative workshop', 'virtual reality', 'prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'scripting', 'placemat process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if...", 'segment intending'], 6: ['virtual reality', 'prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'scripting', 'placemat process', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if...", 'segment intending'], 7: ['virtual reality', 'prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'placemat process', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if...", 'segment intending'], 8: ['virtual reality', 'prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'placemat process', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if...", 'segment intending'], 9: ['prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'placemat process', 'find the feeling place', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if...", 'segment intending'], 10: ['prosperity game', 'meditation', 'evaluating dreams', 'book of positive aspects', 'placemat process', "reclaiming one's natural state of health", 'turning it over to the manager', 'releasing resistance to become free of debt', 'find the feeling place', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if...", 'segment intending'], 11: ['prosperity game', 'meditation', 'evaluating dreams', 'placemat process', "reclaiming one's natural state of health", 'turning it over to the manager', 'releasing resistance to become free of debt', 'find the feeling place', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if...", 'segment intending'], 12: ['prosperity game', 'meditation', 'evaluating dreams', "reclaiming one's natural state of health", 'turning it over to the manager', 'releasing resistance to become free of debt', 'find the feeling place', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if..."], 13: ['prosperity game', 'meditation', 'evaluating dreams', "reclaiming one's natural state of health", 'turning it over to the manager', 'releasing resistance to become free of debt', 'find the feeling place', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if..."], 14: ['prosperity game', 'meditation', 'evaluating dreams', "reclaiming one's natural state of health", 'turning it over to the manager', 'releasing resistance to become free of debt', 'find the feeling place', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if..."], 15: ['prosperity game', 'meditation', 'evaluating dreams', "reclaiming one's natural state of health", 'turning it over to the manager', 'releasing resistance to become free of debt', 'find the feeling place', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if..."], 16: ['prosperity game', 'meditation', 'evaluating dreams', "reclaiming one's natural state of health", 'turning it over to the manager', 'releasing resistance to become free of debt', 'find the feeling place', 'focus wheel process', 'pivoting', 'wallet process', 'clearing clutter for clarity', 'which thought feels better', "wouldn't be nice if..."], 17: ['meditation', 'evaluating dreams', 'moving up the emotional scale', "reclaiming one's natural state of health", 'turning it over to the manager', 'releasing resistance to become free of debt', 'find the feeling place', 'focus wheel process', 'pivoting', 'clearing clutter for clarity', 'which thought feels better'], 18: ['meditation', 'evaluating dreams', 'moving up the emotional scale', "reclaiming one's natural state of health", 'releasing resistance to become free of debt'], 19: ['meditation', 'evaluating dreams', 'moving up the emotional scale', "reclaiming one's natural state of health", 'releasing resistance to become free of debt'], 20: ['meditation', 'evaluating dreams', 'moving up the emotional scale', "reclaiming one's natural state of health", 'releasing resistance to become free of debt'], 21: ['meditation', 'evaluating dreams', 'moving up the emotional scale', "reclaiming one's natural state of health", 'releasing resistance to become free of debt'], 22: ['meditation', 'evaluating dreams', 'moving up the emotional scale', "reclaiming one's natural state of health", 'releasing resistance to become free of debt']}

mood_dict = {
1: 'Joy/Appreciation/Empowerment/Freedom/Love/Knowledge', 
2: 'Passion',
3: 'Enthusiasm/Eagerness/Happiness', 
4: 'Positive Expectation/Belief', 
5: 'Optimism', 
6: 'Hopefulness', 
7: 'Contentment',
8: 'Boredom', 
9: 'Pessimism',
10: 'Frustration/Irritation/Impatience', 
11: 'Overwhelment',
12: 'Disappointment',
13: 'Doubt',
14: 'Worry', 
15: 'Blame',
16: 'Discouragement',
17: 'Anger',
18: 'Revenge',
19: 'Hatred/Rage',
20: 'Jealousy',
21: 'Insecurity/Guilt/Unworthiness',
22: 'Fear/Grief/Desperation/Despair/Powerlessness'
}

for key, value in mood_dict.items():
  print(key, value)

while True:  
  try:    
    mood_number = int(input("Pick your mood number: "))

    process_list = process_dict.get(mood_number)
    print("\nProcesses: " + ', '.join(process_list))
    try_again = input("try again? y/n: ").lower()
    if try_again != 'y':
      break

  except (ValueError, TypeError):
    print("Please enter a valid number.")