@britesc
Quite understand. Maybe there are some youtube videos or spoken books which would allow to learn with overstressing sight.
Read up on classes and instances, you will need a thorough understanding for Python/OOP no matter what you do. Remember usage works like:
class SomeClass(optionalClassItDerivesFrom): # class definition
def __init__(self, optionalAnyParameters): # class constructor, called first whenever an instance is created
...
# outside world
classInstanceVariable = SomeClass() # create an instance of the class
A class is like Animal or Lion --- it defines attributes and behaviours for animals/lions, but it does not create any animal or lion. lion1 = Lion() creates an instance of a Lion(), i.e. some individual lion with Lion attributes.