File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 11from __future__ import unicode_literals
22
3+ from requests import post
34import hmac
45import uuid
56from base64 import b64encode , b64decode
@@ -58,7 +59,8 @@ def __init__(self,
5859 :param api_key: Your api_key string associated with your account.
5960 :param rest_endpoint: (optional) Override the default rest_endpoint to target another endpoint string.
6061 :param proxies: (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
61- :param timeout: (optional) How long to wait for the server to send data before giving up, as a float.
62+ :param timeout: (optional) How long to wait for the server to send data before giving up, as a float,
63+ or as a (connect timeout, read timeout) tuple
6264 """
6365 self .customer_id = customer_id
6466 self .api_key = api_key
You can’t perform that action at this time.
0 commit comments