About 176 results
Open links in new tab
  1. Requests: HTTP for Humans™ — Requests 2.32.5 documentation

    This part of the documentation, which is mostly prose, begins with some background information about Requests, then focuses on step-by-step instructions for getting the most out of Requests.

  2. Developer Interface — Requests 2.32.5 documentation

    This part of the documentation covers all the interfaces of Requests. For parts where Requests depends on external libraries, we document the most important right here and provide links to …

  3. Quickstart — Requests 2.32.5 documentation

    By default, requests does not support this, but there is a separate package which does - requests-toolbelt. You should read the toolbelt’s documentation for more details about how to use it.

  4. requests.api — Requests 2.32.5 documentation - docs.python …

    Source code for requests.api """ requests.api ~~~~~~~~~~~~ This module implements the Requests API. :copyright: (c) 2012 by Kenneth Reitz. :license: Apache2, see LICENSE for …

  5. Overview: module code — Requests 2.32.5 documentation

    All modules for which code is available requests.adapters requests.api requests.auth requests.cookies requests.exceptions requests.models requests.sessions requests.utils

  6. Advanced Usage — Requests 2.32.5 documentation

    Jun 13, 2012 · Now, we could look at the documentation, but we might have a little more fun if we use Requests instead. We can take advantage of the Requests OPTIONS verb to see what …

  7. Requests: HTTP per gli Esseri Umani — Requests 2.7.0 …

    Requests è una libreria HTTP con licenza Apache2, scritta in Python per gli Esseri Umani. Il modulo urllib2 della libreria standard Python mette a disposizione quasi tutte le principali …

  8. Installation of Requests — Requests 2.32.5 documentation

    Installation of Requests This part of the documentation covers the installation of Requests. The first step to using any software package is getting it properly installed. $ python -m pip install …

  9. 快速上手 — Requests 2.18.1 文档 - docs.python-requests.org

    Requests 会自动为你解码 gzip 和 deflate 传输编码的响应数据。 例如,以请求返回的二进制数据创建一张图片,你可以使用如下代码:

  10. requests.sessions — Requests 2.32.5 documentation

    Basic Usage:: >>> import requests >>> s = requests.Session () >>> s.get ('https://httpbin.org/get') <Response [200]> Or as a context manager:: >>> with requests.Session () as s: ... s.get …