add proxy support (#41)
This commit is contained in:
parent
f9b1ffd168
commit
8105d07269
@ -28,10 +28,16 @@ class Translator(object):
|
|||||||
|
|
||||||
:param user_agent: the User-Agent header to send when making requests.
|
:param user_agent: the User-Agent header to send when making requests.
|
||||||
:type user_agent: :class:`str`
|
:type user_agent: :class:`str`
|
||||||
|
|
||||||
|
:param proxies: proxies configuration.
|
||||||
|
Dictionary mapping protocol or protocol and host to the URL of the proxy
|
||||||
|
For example ``{'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}``
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, service_urls=None, user_agent=DEFAULT_USER_AGENT):
|
def __init__(self, service_urls=None, user_agent=DEFAULT_USER_AGENT, proxies=None):
|
||||||
self.session = requests.Session()
|
self.session = requests.Session()
|
||||||
|
if proxies is not None:
|
||||||
|
self.session.proxies = proxies
|
||||||
self.session.headers.update({
|
self.session.headers.update({
|
||||||
'User-Agent': user_agent,
|
'User-Agent': user_agent,
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user