Integration
This is the part where you need to get all your functions from your module
working in your main.py
file.
Now, we can import each function one by one, but it is likely easier for you to import all functions from your module.
So at the top of your main.py
file, you could add a line like the following for one function:
from pokedex import search_pokemon
However, again, it is easier to import all functions from a module, which we can do with code like the following:
from pokedex import *
That will import ALL functions from the module so that you can use them as if they were in the same file. Remember to store BOTH of these files in the SAME FOLDER if you want it to work!
Testing and Debugging - Don't Forget!
Don't forget to keep making regular commits to GitHub as part of your Testing and Debugging documentation.
Last updated