Getting Started
Documentation
Tutorial - Examples
""" This is a module to be used as a reference for building other modules """ [docs]def foo(): """docstring for foo""" return 'foo' [docs]class Bar(): """docstring for Bar""" [docs] def __init__(self, arg): super().__init__() self.arg = arg