You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -232,6 +232,18 @@ Except TimeoutException as e:
232
232
print(e)
233
233
```
234
234
235
+
236
+
### Proxies
237
+
238
+
You can pass your proxy as an additional argumen for methods: recaptcha, funcaptcha and geetest. The proxy will be forwarded to the API to solve the captcha.
239
+
240
+
```python
241
+
proxy={
242
+
'type': 'HTTPS',
243
+
'uri': 'login:password@IP_address:PORT'
244
+
}
245
+
```
246
+
235
247
### Async calls
236
248
You can also make async calls with [asyncio], for example:
0 commit comments