2012年6月22日 星期五

Sphinx:註解文件產生器,實作入門教學


一、Install

easy_install -U sphinx

二、Configuration

1. cd your_project_name

2. sphinx-quickstart
Enter the root path for documentation.
> Root path for the documentation [.]:
You have two options for placing the build directory for Sphinx output.
Either, you use a directory "_build" within the root path, or you separate
"source" and "build" directories within the root path.
> Separate source and build directories (y/N) [n]: y
Inside the root directory, two more directories will be created; "_templates"
for custom HTML templates and "_static" for custom stylesheets and other static
files. You can enter another prefix (such as ".") to replace the underscore.
> Name prefix for templates and static dir [_]:
The project name will occur in several places in the built documentation.
> Project name: Your_Project_Name
> Author name(s): Your_Name
Sphinx has the notion of a "version" and a "release" for the
software. Each version can have multiple releases. For example, for
Python the version is something like 2.5 or 3.0, while the release is
something like 2.5.1 or 3.0a1. If you don't need this dual structure,
just set both to the same value.
> Project version: Your_Project_Version (ex. 0.1)
> Project release [0.1]:
The file name suffix for source files. Commonly, this is either ".txt"
or ".rst". Only files with this suffix are considered documents.
> Source file suffix [.rst]:
One document is special in that it is considered the top node of the
"contents tree", that is, it is the root of the hierarchical structure
of the documents. Normally, this is "index", but if your "index"
document is a custom template, you can also set this to another filename.
> Name of your master document (without suffix) [index]:
Sphinx can also add configuration for epub output:
> Do you want to use the epub builder (y/N) [n]:
Please indicate if you want to use one of the following Sphinx extensions:
> autodoc: automatically insert docstrings from modules (y/N) [n]: y
> doctest: automatically test code snippets in doctest blocks (y/N) [n]:
> intersphinx: link between Sphinx documentation of different projects (y/N) [n]: y
> todo: write "todo" entries that can be shown or hidden on build (y/N) [n]: y
> coverage: checks for documentation coverage (y/N) [n]: y
> pngmath: include math, rendered as PNG images (y/N) [n]:
> mathjax: include math, rendered in the browser by MathJax (y/N) [n]:
> ifconfig: conditional inclusion of content based on config values (y/N) [n]: y
> viewcode: include links to the source code of documented Python objects (y/N) [n]: y
A Makefile and a Windows command file can be generated for you so that you
only have to run e.g. `make html' instead of invoking sphinx-build
directly.
> Create Makefile? (Y/n) [y]:
> Create Windows command file? (Y/n) [y]: n

3. cd source
4. nano conf.py
sys.path.insert(0, os.path.abspath('.')) 改成 sys.path.insert(0, '.')
5. nano index.rst
.. toctree::
:maxdepth: 2
.. automodule:: Your_Module_Name (ex. db.py -> db)
:members:
6. cd ..
7. nano Your_Module_file.py
def connect(self, host, user="abc", passwd="def", db="kkk"):
'''資料庫連線函數
:param host: 資料庫主機IP
:param user: 資料庫連線帳號
:param passwd: 資料庫連線密碼
:param db: 連到哪個資料庫
:returns: NULL
'''
8. make html
9. open your browser from buile/html/index.html

相關文章 :

1 意見:

旅遊 提到...

謝謝喔

張貼留言

Related Posts with Thumbnails
by TemplatesForYou-TFY
SoSuechtig