how to build a class in python with an import statement code example
Example: import class from another file python
from <file that has the class in> import <the class name you want to import>
# Or do this if you want to import everything inside one file
from <file that has the class in> import *