We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following:
conn = aiohttp.ProxyConnector(proxy="http://some.proxy.com") r = yield from aiohttp.request('get', 'http://localhost:1234/path', connector=conn)
generates a request to the proxy:
GET http://localhost/parth HTTP/1.1
Note that the port was dropped.