Available http client adaptersΒΆ

Use your own HTTP client:

>>> def client(uri, method, body, headers):
...       headers = [('Content-Length', '0')]
...       location = None # the Location header if any
...       body_iter = ['']
...       return '200 Ok', location, headers, body_iter

>>> proxy = HostProxy(application_url, client=client)