Update docs

[ci skip]
This commit is contained in:
Mike Helmick 2013-09-25 10:45:24 -04:00
parent bc373c3436
commit 082528490e

View file

@ -102,8 +102,8 @@ Here is an example of sending the request through proxies:
client_args = { client_args = {
'proxies': { 'proxies': {
'http': '10.0.10.1:8000', 'http': 'http://10.0.10.1:8000',
'https': '10.0.10.1:8001', 'https': 'https://10.0.10.1:8001',
} }
} }
@ -122,8 +122,8 @@ or both (and set a timeout variable):
'User-Agent': 'My App Name' 'User-Agent': 'My App Name'
}, },
'proxies': { 'proxies': {
'http': '10.0.10.1:8000', 'http': 'http://10.0.10.1:8000',
'https': '10.0.10.1:8001', 'https': 'https://10.0.10.1:8001',
} }
'timeout': 300, 'timeout': 300,
} }