-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
CK
authored and
CK
committed
Jun 3, 2024
1 parent
ea5f311
commit 159235d
Showing
5 changed files
with
83 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from captchakiller import CaptchaKiller | ||
|
||
captcha_killer = CaptchaKiller() | ||
|
||
""" | ||
Use custom configuration | ||
captcha_killer = CaptchaKiller("API_KEY") | ||
""" | ||
|
||
""" | ||
REQUIRED - publickey: DF9C4D87-CB7B-4062-9FEB-BADB6ADA61E6 // Public key of the FunCaptcha challeng | ||
REQUIRED - site: https://demo.arkoselabs.com // URL of the website where the FunCaptcha challenge is located | ||
OPTIONAL - surl: https://client-api.arkoselabs.com // URL of the Arkose Labs API server | ||
OPTIONAL - datatype: blob // Data type of the data sent in the challenge | ||
OPTIONAL - data: ENsYWf9hLu6E5oSTcPby1t8iK4TCZgv... // Data sent in the challenge | ||
""" | ||
|
||
response = captcha_killer.funcaptcha("DF9C4D87-CB7B-4062-9FEB-BADB6ADA61E6", "https://demo.arkoselabs.com") | ||
|
||
if response['success']: | ||
print("Captcha solved: " + response["result"]) | ||
else: | ||
print("Error: " + str(response["errorId"]) + " - " + response["error"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters