(self, root, cacert=None, debug=False, basic_auth=None)
| 108 | |
| 109 | class HTTPClient(object): |
| 110 | def __init__(self, root, cacert=None, debug=False, basic_auth=None): |
| 111 | self.root = get_url_without_trailing_slash(root) |
| 112 | self.cacert = cacert |
| 113 | self.debug = debug |
| 114 | self.basic_auth = basic_auth |
| 115 | |
| 116 | @add_ssl_verify_to_kwargs |
| 117 | @add_auth_token_to_headers |
nothing calls this directly
no test coverage detected