# Information on Packaging up Python # *in progress* # Docstring example # Here's example python doc string, containing information on the project i.e. a link to the funder, the fact it was done by CEMAC and therefore credit the university. Remember to include the scientists names that this is for or who started the work or initiated the science behind the code. Here the doc-string follows a [PEP 257](https://www.python.org/dev/peps/pep-0257/) convention. Essentially use this formatting and users of the code will be able to perform ```help(mypythonmodule)``` to access the top level doc string and ```help(mypythonmodule.func1)``` to access the relevant info on functions with in your module. ```python """mypythonmodule a box This module was developed by CEMAC (Leeds University) as part of the XXXX Project. This scripts build on Work done by XXXX, doing this task and using this information. Example: To use:: import mypythonmodule c = mypythonmodule(arg1, arg2, arg3, karg=Val) Attributes: dataroot(str): A string containing path to data constant(float): A variable defined e.g. gravity 9.81 m/s**2 .. CEMAC_mypythonmodule: https://github.com/cemac/mypythonmodules_repo """ ```