python3项目源代码下载_如何为Python开源项目免费构建在线文档?

# -*- coding: utf-8 -*-

"""Example Google style docstrings.This module demonstrates documentation as specified by the `Google PythonStyle Guide`_. Docstrings may extend over multiple lines. Sections are createdwith a section header and a colon followed by a block of indented text.Example:Examples can be given using either the ``Example`` or ``Examples``sections. Sections support any reStructuredText formatting, includingliteral blocks::$ python example_google.pySection breaks are created by resuming unindented text. Section breaksare also implicitly created anytime a new section starts.Attributes:module_level_variable1 (int): Module level variables may be documented ineither the ``Attributes`` section of the module docstring, or in aninline docstring immediately following the variable.Either form is acceptable, but the two should not be mixed. Chooseone convention to document module level variables and be consistentwith it.Todo:* For module TODOs* You have to also use ``sphinx.ext.todo`` extension.. _Google Python Style Guide:http://google.github.io/styleguide/pyguide.html"""

module_level_variable1 = 12345

module_level_variable2 = 98765

"""int: Module level variable documented inline.The docstring may span multiple lines. The type may optionally be specifiedon the first line, separated by a colon."""

def function_with_types_in_docstring(param1, param2):

"""Example function with types documented in the docstring.`PEP 484`_ type annotations are supported. If attribute, parameter, andreturn types are annotated according to `PEP 484`_, they do not need to beincluded in the docstring:Args:param1 (int): The first parameter.param2 (str): The second parameter.Returns:bool: The return value. True for success, False otherwise... _PEP 484:https://www.python.org/dev/peps/pep-0484/"""

def function_with_pep484_type_annotations(param1: int, param2: str) -> bool:

"""Example function with PEP 484 type annotations.Args:param1: The first parameter.param2: The second parameter.Returns:The return value. True for success, False otherwise."""

def module_level_function(param1, param2=None, *args, **kwargs):

"""This is an example of a module level function.Function parameters should be documented in the ``Args`` section. The nameof each parameter is required. The type and description of each parameteris optional, but should be included if not obvious.If \*args or \*\*kwargs are accepted,they should be listed as ``*args`` and ``**kwargs``.The format for a parameter is::name (type): descriptionThe description may span multiple lines. Followinglines should be indented. The "(type)" is optional.Multiple paragraphs are supported in parameterdescriptions.Args:param1 (int): The first parameter.param2 (:obj:`str`, optional): The second parameter. Defaults to None.Second line of description should be indented.*args: Variable length argument list.**kwargs: Arbitrary keyword arguments.Returns:bool: True if successful, False otherwise.The return type is optional and may be specified at the beginning ofthe ``Returns`` section followed by a colon.The ``Returns`` section may span multiple lines and paragraphs.Following lines should be indented to match the first line.The ``Returns`` section supports any reStructuredText formatting,including literal blocks::{'param1': param1,'param2': param2}Raises:AttributeError: The ``Raises`` section is a list of all exceptionsthat are relevant to the interface.ValueError: If `param2` is equal to `param1`."""

if param1 == param2:

raise ValueError('param1 may not be equal to param2')

return True

def example_generator(n):

"""Generators have a ``Yields`` section instead of a ``Returns`` section.Args:n (int): The upper limit of the range to generate, from 0 to `n` - 1.Yields:int: The next number in the range of 0 to `n` - 1.Examples:Examples should be written in doctest format, and should illustrate howto use the function.>>> print([i for i in example_generator(4)])[0, 1, 2, 3]"""

for i in range(n):

yield i

class ExampleError(Exception):

"""Exceptions are documented in the same way as classes.The __init__ method may be documented in either the class leveldocstring, or as a docstring on the __init__ method itself.Either form is acceptable, but the two should not be mixed. Choose oneconvention to document the __init__ method and be consistent with it.Note:Do not include the `self` parameter in the ``Args`` section.Args:msg (str): Human readable string describing the exception.code (:obj:`int`, optional): Error code.Attributes:msg (str): Human readable string describing the exception.code (int): Exception error code."""

def __init__(self, msg, code):

self.msg = msg

self.code = code

class ExampleClass(object):

"""The summary line for a class docstring should fit on one line.If the class has public attributes, they may be documented herein an ``Attributes`` section and follow the same formatting as afunction's ``Args`` section. Alternatively, attributes may be documentedinline with the attribute's declaration (see __init__ method below).Properties created with the ``@property`` decorator should be documentedin the property's getter method.Attributes:attr1 (str): Description of `attr1`.attr2 (:obj:`int`, optional): Description of `attr2`."""

def __init__(self, param1, param2, param3):

"""Example of docstring on the __init__ method.The __init__ method may be documented in either the class leveldocstring, or as a docstring on the __init__ method itself.Either form is acceptable, but the two should not be mixed. Choose oneconvention to document the __init__ method and be consistent with it.Note:Do not include the `self` parameter in the ``Args`` section.Args:param1 (str): Description of `param1`.param2 (:obj:`int`, optional): Description of `param2`. Multiplelines are supported.param3 (:obj:`list` of :obj:`str`): Description of `param3`."""

self.attr1 = param1

self.attr2 = param2

self.attr3 = param3 #: Doc comment *inline* with attribute

#: list of str: Doc comment *before* attribute, with type specified

self.attr4 = ['attr4']

self.attr5 = None

"""str: Docstring *after* attribute, with type specified."""

@property

def readonly_property(self):

"""str: Properties should be documented in their getter method."""

return 'readonly_property'

@property

def readwrite_property(self):

""":obj:`list` of :obj:`str`: Properties with both a getter and settershould only be documented in their getter method.If the setter method contains notable behavior, it should bementioned here."""

return ['readwrite_property']

@readwrite_property.setter

def readwrite_property(self, value):

value

def example_method(self, param1, param2):

"""Class methods are similar to regular functions.Note:Do not include the `self` parameter in the ``Args`` section.Args:param1: The first parameter.param2: The second parameter.Returns:True if successful, False otherwise."""

return True

def __special__(self):

"""By default special members with docstrings are not included.Special members are any methods or attributes that start with andend with a double underscore. Any special member with a docstringwill be included in the output, if``napoleon_include_special_with_doc`` is set to True.This behavior can be enabled by changing the following setting inSphinx's conf.py::napoleon_include_special_with_doc = True"""

pass

def __special_without_docstring__(self):

pass

def _private(self):

"""By default private members are not included.Private members are any methods or attributes that start with anunderscore and are *not* special. By default they are not includedin the output.This behavior can be changed such that private members *are* includedby changing the following setting in Sphinx's conf.py::napoleon_include_private_with_doc = True"""

pass

def _private_without_docstring(self):

pass

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值