I have a GP.py file that I am then running a MyBot.py file from.
In the MyBot.py file, I have the line
from GP import *
I have a su
import * indeed import all classes, functions,variables and etc..
if you want to import only specific class use
from GP import class_name
and as far as i know you cannot import only class methods