Python: Import All Functions from a File
If you have a helper file containing a bunch of functions and don't want to manually specify each one when importing them to a different file in Python, use the following code at the top of your file:
from .functions import *
In the above example, I am importing all functions from the functions.py
file located in the same directory as the current file. If you have a file in a different location change the path to point to it.