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 16c59bc commit 23b60b4Copy full SHA for 23b60b4
README.md
@@ -59,3 +59,12 @@ captchaTask.success # Success [True or False]
59
captchaTask.token # Captcha Token (if solved)
60
captchaTask.challengeKey # Captcha challenge key
61
```
62
+
63
+* 4 - Example (Get balance)
64
+```python
65
+from procap import ProCap
66
+apikey = "" # Api key (required)
67
+solver = ProCap(apikey)
68
+balance = solver.get_balance()
69
+print(f"Your balance is {balance}$")
70
+```
0 commit comments