How do I document a module in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:20:06Z http://stackoverflow.com/feeds/question/44084 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/44084/how-do-i-document-a-module-in-python 5 How do I document a module in Python? Auron 2008-09-04T16:06:48Z 2008-09-19T17:23:33Z <p>That's it. If you want to document a function or a class, you put a string just after the definition. For instance:</p> <pre><code>def foo(): """This function does nothing.""" pass </code></pre> <p>But what about a module? How can I document what a <em>file.py</em> does?</p> http://stackoverflow.com/questions/44084/how-do-i-document-a-module-in-python/44094#44094 2 Answer by David Locke for How do I document a module in Python? David Locke 2008-09-04T16:12:07Z 2008-09-04T16:12:07Z <p>It's easy, you just add a docstring at the top of the module.</p> http://stackoverflow.com/questions/44084/how-do-i-document-a-module-in-python/44095#44095 12 Answer by Grégoire Cachet for How do I document a module in Python? Grégoire Cachet 2008-09-04T16:12:23Z 2008-09-04T16:12:23Z <p>For the packages, you can document it in <code>__init__.py</code>. For the modules, you can add a docstring simply in the module file.</p> <p>All the information is here: <a href="http://www.python.org/dev/peps/pep-0257/" rel="nofollow">http://www.python.org/dev/peps/pep-0257/</a></p> http://stackoverflow.com/questions/44084/how-do-i-document-a-module-in-python/44098#44098 3 Answer by Chris Upchurch for How do I document a module in Python? Chris Upchurch 2008-09-04T16:12:52Z 2008-09-04T16:12:52Z <p>You do it the exact same way. Put a string in as the first statement in the module.</p> http://stackoverflow.com/questions/44084/how-do-i-document-a-module-in-python/44110#44110 0 Answer by Auron for How do I document a module in Python? Auron 2008-09-04T16:19:55Z 2008-09-04T16:19:55Z <p>Ok, thank you for your quick answers :)</p>