Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.19 KB

api.rst

File metadata and controls

57 lines (37 loc) · 1.19 KB

API

requests

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 the canonical documentation.

Main Interface

All of Request's functionality can be accessed by these 6 methods. They all return a Response <models.Response> object.

head

get

post

put

patch

delete

request


requests.models.Response

Exceptions

HTTPError

RequestException

requests.models.AuthenticationError

requests.models.URLRequired

requests.models.InvalidMethod

Internals

These items are an internal component to Requests, and should never be seen by the end user (developer). This part of the API documentation exists for those who are extending the functionality of Requests.

Classes

requests.models.Request