Python import uses Package(dot notation)
import X, is preferredfrom X import *
| # Python Generate Docs | |
| ## List of Doc Generators | |
| |Name|List| | |
| |----|----| | |
| |[mkdocs](http://www.mkdocs.org)| Needs to use markdown files to generate documentations| | |
| |[pdoc](https://github.com/BurntSushi/pdoc)| Generate to HTML/Plain Text from modules and py files| | |
| |[sphinx](http://sphinx-doc.org/)| Generate from py files into rST and converts to HTMLs| |
| #!/usr/bin/env python | |
| """Simple HTTP Server With Upload. | |
| This module builds on BaseHTTPServer by implementing the standard GET | |
| and HEAD requests in a fairly straightforward manner. | |
| """ |
Sphinx is used to document api-docs, the python docs also uses this.
Sphinx uses rst to write documents, but I've used markdown to write docs for a
These frameworks/libraries are node plugins