From 23b60b4be46590a7f598a66220a81bed74c4c10d Mon Sep 17 00:00:00 2001 From: Virus Noir <67117684+VirusNoirrr@users.noreply.github.com> Date: Thu, 29 Feb 2024 23:00:19 +0100 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 3627ca5..e173d81 100644 --- a/README.md +++ b/README.md @@ -59,3 +59,12 @@ captchaTask.success # Success [True or False] captchaTask.token # Captcha Token (if solved) captchaTask.challengeKey # Captcha challenge key ``` + +* 4 - Example (Get balance) +```python +from procap import ProCap +apikey = "" # Api key (required) +solver = ProCap(apikey) +balance = solver.get_balance() +print(f"Your balance is {balance}$") +```