use a class in python in another file code example
Example: import class from another file python
#from your main script
from folder.file import Klasa
#OR
from folder import file
k = file.Klasa()
#OR
import folder.file as myModule
k = myModule.Klasa()