iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 4
0

requests的文件是透過Sphinx生成,使用reStructuredText,副檔名為.rst

  1. 從docs/index.rst觀察可分成User Guide, Community Guide, API Documentation / GuideContributor Guide

  2. 寫在Docstring內的描述可以轉變成文件

def post(url, data=None, json=None, **kwargs):
    r"""Sends a POST request.

    :param url: URL for the new :class:`Request` object.
    :param data: (optional) Dictionary, list of tuples, bytes, or file-like
        object to send in the body of the :class:`Request`.
    :param json: (optional) json data to send in the body of the :class:`Request`.
    :param \*\*kwargs: Optional arguments that ``request`` takes.
    :return: :class:`Response <Response>` object
    :rtype: requests.Response
    """

    return request('post', url, data=data, json=json, **kwargs)

可以對照 https://2.python-requests.org/en/master/api/#requests.post

參考


上一篇
Day3-Makefile
下一篇
Day5-__init__.py
系列文
Why it works: python requests and urllib330
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言