""" Example Lib """ class foo: """ Example class. """ ############################## Attributes ############################## ############################## Constructor ############################## def __init__(self): pass ############################## Methods ############################## def bar(self): """ Example Method. """ print("class foo, method bar")