1from <file that has the class in> import <the class name you want to import>
2
3# Or do this if you want to import everything inside one file
4from <file that has the class in> import *
1#from your main script
2
3from folder.file import Klasa
4
5#OR
6
7from folder import file
8k = file.Klasa()
9
10#OR
11
12import folder.file as myModule
13k = myModule.Klasa()
14