In [4]:
import my_module
help(my_module)


Help on module my_module:

NAME
    my_module

CLASSES
    builtins.object
        MyTestClass
    
    class MyTestClass(builtins.object)
     |  Methods defined here:
     |  
     |  __init__(self, x=0)
     |      Initialize self.  See help(type(self)) for accurate signature.
     |  
     |  doSomething(self)
     |  
     |  ----------------------------------------------------------------------
     |  Data descriptors defined here:
     |  
     |  __dict__
     |      dictionary for instance variables (if defined)
     |  
     |  __weakref__
     |      list of weak references to the object (if defined)

FILE
    /home/jonathan/work/BornAgain-tutorial/python/my_module.py



In [ ]: