Integration
Last updated
Last updated
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:
However, again, it is easier to import all functions from a module, which we can do with code like the following:
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!
Don't forget to keep making regular commits to GitHub as part of your Testing and Debugging documentation.