Adds support for processing keyword arguments that are understood by the requests package. This automatically adds functionality for both project and CLI usage for:
Changing the request method
Sending request headers, parameters, cookies or a request body
Sending authentication
Configuring redirects
Configuring timeouts
Configuring proxies
Configuring SSL verification
This includes breaking changes due to some of the CLI input options being changed/renamed, and the input parameter request_headers being renamed to headers
The default request method has also been changed from GET to HEAD
What types of changes do you want to introduce to DrHeader?
[ ] Bugfix (non-breaking change which fixes an issue)
[x] New feature (non-breaking change which adds functionality)
Proposed changes
Adds support for processing keyword arguments that are understood by the
requests
package. This automatically adds functionality for both project and CLI usage for:This includes breaking changes due to some of the CLI input options being changed/renamed, and the input parameter
request_headers
being renamed toheaders
The default request method has also been changed from
GET
toHEAD
What types of changes do you want to introduce to DrHeader?