helloworld_module ================= This module is a placeholder module for demonstrating how to use Sphinx documentation. Overview -------- .. currentmodule:: helloworld.helloworld_module .. autosummary:: helloworld_function HelloWorld Example Usage ------------- Note that here, we assume helloworld is a globally installed package, containing the module helloworld, which contains a function and a class called helloworld and HelloWorld, respectively. .. code-block:: python #!/usr/bin/env python import helloworld_module from helloworld output = helloworld_module.helloworld_function() hw = helloworld_module.HelloWorld() Functions and Classes --------------------- .. automodule:: helloworld.helloworld_module :members: :show-inheritance: