human_requests.abstraction.http¶
Classes¶
Represents an HTTP method. |
|
A dataclass containing the parsed URL components. |
Module Contents¶
- class HttpMethod(*args, **kwds)[source]¶
Represents an HTTP method.
- POST = 'POST'[source]¶
Submits data to a server to create a new resource. It can also be used to update existing resources.
- PUT = 'PUT'[source]¶
Updates a existing resource on a server. It can also be used to create a new resource.
- PATCH = 'PATCH'[source]¶
Updates a existing resource on a server. It only updates the fields that are provided in the request body.