Disabling TLS certificate validation can be necessary in some
environments (eg. testing). Add a verify keyword argument that allows
the verification to be disabled.
The current implementation only accepts a boolean argument. Both
requests and aiohttp allow defining a custom CA bundle, which can be
implemented later if needed.
Disabling TLS certificate validation can be necessary in some environments (eg. testing). Add a
verify
keyword argument that allows the verification to be disabled.The current implementation only accepts a boolean argument. Both requests and aiohttp allow defining a custom CA bundle, which can be implemented later if needed.
Fixes #30