We are building a frog 🐸 named Ribbet, a virtual pet that has multiple behaviors that can be called upon each with their own unique message/response.
NOTE: This is a python packaged that can be installed and utilized in your terminal. This is not a python package that can be imported into a python file.
The unique responses will be:
- -h/--help: List of commands
- hello(name): "🐸: Hi there (name)"
- encourage: "🐸: You are the smartest frog in the pond!",
"You got this! Leap by leap!" or
"You are amazing!" selected based on the frog's mood! (randomly) - frogmode: "🐸: I EAT BUGS, let's eat bugs together"
- feed(snack): "🐸: Thanks for the sweet little treat! (snack) is yummy! Nom nom nom"
- kill(anything): "🐸: I killed (anything) for you! You are safe now!" or
"I don't like (anything), I only eat yummy snacks! nom nom nom" selected based on the frog's mood! (randomly) - goodbye(name): "🐸: Bye bye (name), go catch some flies for me!"
Install the ribbet module using pip
pip install ribbet
Call ribbet from the command line to interact with your virtual frog while coding.
To access menu with all functions:
ribbet
Functions:
- hello
ribbet hello {name}
- encourage
ribbet encourage
- frogmode
ribbet frogmode
- feed
ribbet feed {snack}
- kill
ribbet kill {anything}
- goodbye
ribbet goodbye {name}
- hello
Your-MacBook-Pro:Documents username$ ribbet hello Name
🐸: Hi there Name!
- encourage
Your-MacBook-Pro:Documents username$ ribbet encourage
🐸: You are amazing!
- frogmode
Your-MacBook-Pro:Documents username$ ribbet frogmode
🐸: I EAT BUGS, let's eat bugs together
- feed
Your-MacBook-Pro:Documents username$ ribbet feed worm
🐸: Thanks for the sweet little treat! Worm is yummy! nom nom nom
- kill
Your-MacBook-Pro:Documents username$ ribbet kill bugs
🐸: I don't like bugs, I only eat yummy snacks! nom nom nom
- goodbye
Your-MacBook-Pro:Documents username$ ribbet goodbye Name
🐸: Bye bye Name, go catch some flies for me!
- Clone the repository:
git clone https://github.com/software-students-spring2024/3-python-package-exercise-berries.git
- Create a virtual environment:
python -m venv env
source env/bin/activate
- Install dependencies:
pip install -r requires.txt
- Add your changes in a new branch
- Make sure all changes are passing by running:
pytest
- Contribute your changes via pull requests