DJ音标发音: [sfiŋks] KK音标发音: [sfɪŋks]html
an ancient imaginary creature with a lion's body and a woman's headnode
Sphinx在此处是一个可自动生成python项目api的工具,使用起来也比较简单,只须要在项目上进行简单的配置,便可生成项目的api文档(以下图)
python
pip install sphinx
文件头模板设置
** File->settings->Editor->File and Code Templates->Python Script
git
函数知识模板设置
** File->Settings->Tools->Python integrated Tools->Docstring format,把该框选为Google或nunpy等
因numpy对于多个returns的支持较好,因此选用了numpy
github
配置你的项目名,版本,等
在此处的选项中,除了autodoc使用非默认的选项,选了y,其余的,皆使用默认项。配置项选错了也不要紧,最后均可以在conf.py中更改api
sphinx-quickstart
Welcome to the Sphinx 1.8.3 quickstart utility. Please enter values for the following settings (just press Enter to accept a default value, if one is given in brackets). Selected root path: . 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]: 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: test_sphinx > Author name(s): testname > Project release []: 0 If the documents are to be written in a language other than English, you can select a language here by its language code. Sphinx will then translate text that it generates into that language. For a list of supported codes, see http://sphinx-doc.org/config.html#confval-language. > Project language [en]: 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]: Indicate which of the following Sphinx extensions should be enabled: > 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]: > todo: write "todo" entries that can be shown or hidden on build (y/n) [n]: > coverage: checks for documentation coverage (y/n) [n]: > imgmath: include math, rendered as PNG or SVG 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]: > viewcode: include links to the source code of documented Python objects (y/n) [n]: > githubpages: create .nojekyll file to publish the document on GitHub pages (y/n) [n]: 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]: Creating file .\conf.py. Creating file .\index.rst. Creating file .\Makefile. Creating file .\make.bat. Finished: An initial directory structure has been created. You should now populate your master file .\index.rst and create other documentation source files. Use the Makefile to build the docs, like so: make builder where "builder" is one of the supported builders, e.g. html, latex or linkcheck.
在doc文件夹下获得以下
echarts
sphinx-apidoc -o [生成rst的位置] [项目代码的位置] -f(强制从新覆盖写,不然会检测,若是有同名文件存在,会跳过不更新) sphinx-apidoc -o rst ../src
import os import sys sys.path.insert(0, os.path.abspath('../src'))
autodoc_mock_imports = ["pandas","pyecharts"]
extensions = ['sphinx.ext.autodoc','sphinx.ext.napoleon']
make html
在doc下的子文件夹中会生成若干html,打开index.html便可查阅相关的函数API
ide