We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2cc4500 + 343bc2c commit cf0e43fCopy full SHA for cf0e43f
1 file changed
README.rst
@@ -43,6 +43,20 @@ If the company can't be found, then `None` will be returned.
43
44
See the [documentation](https://clearbit.com/docs#company-api) for more information.
45
46
+## Proxy Usage
47
+
48
+Passing a proxies dictionary allows you to specify proxy servers to pass the requests through given various protocols.
49
50
+```python
51
52
+proxies = {
53
+ 'http': 'http://user:password@proxyserver.tld:8080',
54
+ 'https': 'https://user:password@proxyserver.tld:8080',
55
+}
56
57
+response = clearbit.Enrichment.find(email='alex@clearbit.com',proxies=proxies)
58
+```
59
60
## Testing
61
62
Set the `PYTHONPATH` env var to the current directory to load the library locally:
0 commit comments