transmeaspy.my_module ===================== .. py:module:: transmeaspy.my_module .. autoapi-nested-parse:: Documentation about the TransMeasPy module. Functions --------- .. autoapisummary:: transmeaspy.my_module.hello Module Contents --------------- .. py:function:: hello(name: str) -> str Say hello. Function docstring using Google docstring style. :param name: Name to say hello to :type name: str :returns: Hello message :rtype: str :raises ValueError: If `name` is equal to `nobody` .. rubric:: Example This function can be called with `Jane Smith` as argument using >>> from transmeaspy.my_module import hello >>> hello('Jane Smith') 'Hello Jane Smith!'