We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68d2a87 commit dff71f4Copy full SHA for dff71f4
domaintools/api.py
@@ -57,7 +57,7 @@ def __init__(self, username, key, https=True, verify_ssl=True, rate_limit=True,
57
raise Exception("The DomainTools API endpoints no longer support http traffic. Please make sure https=True.")
58
if proxy_url:
59
if isinstance(proxy_url, str):
60
- self.extra_request_params['proxies'] = {'http://': proxy_url, 'https://': proxy_url}
+ self.extra_request_params['proxies'] = {'http://': proxy_url, 'https://': proxy_url}
61
else:
62
raise Exception("Proxy URL must be a string. For example: '127.0.0.1:8888'")
63
0 commit comments