-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added description of parameters to method documentation in solver.p…
…y file (#79) - Updated the “see more info in the API docs” link in the README.md file - Added a description of methods supporting proxies for the solution and information about whether we have our own proxy for customers in the proxies section in the README.md file - Added extended examples amazon_waf_options.py, geetest_v4_options,.py, turnstile_options.py to examples. - Added data parameter to hcaptcha_options.py example - Changed the name of the sol=>solver variable in the example file keycaptcha_options.py - Added package description to __init__.py file Signed-off-by: Maxim S <[email protected]>
- Loading branch information
Showing
8 changed files
with
694 additions
and
309 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,47 @@ | ||
import sys | ||
import os | ||
|
||
sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))) | ||
|
||
from twocaptcha import TwoCaptcha | ||
|
||
# in this example we store the API key inside environment variables that can be set like: | ||
# export APIKEY_2CAPTCHA=1abc234de56fab7c89012d34e56fa7b8 on Linux or macOS | ||
# set APIKEY_2CAPTCHA=1abc234de56fab7c89012d34e56fa7b8 on Windows | ||
# you can just set the API key directly to it's value like: | ||
# api_key="1abc234de56fab7c89012d34e56fa7b8" | ||
|
||
api_key = os.getenv('APIKEY_2CAPTCHA', 'YOUR_API_KEY') | ||
|
||
|
||
config = { | ||
'server': '2captcha.com', # can be also set to 'rucaptcha.com' | ||
'apiKey': api_key, | ||
'softId': 123, | ||
# 'callback': 'https://your.site/result-receiver', # if set, sovler with just return captchaId, not polling API for the answer | ||
'defaultTimeout': 120, | ||
'recaptchaTimeout': 600, | ||
'pollingInterval': 10, | ||
} | ||
|
||
solver = TwoCaptcha(**config) | ||
|
||
try: | ||
result = solver.amazon_waf(sitekey='AQIDAHjcYu/GjX+QlghicBgQ/7bFaQZ+m5FKCMDnO+vTbNg96AGIqvS8v6ScFa8ZpNRrlQgKAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMx9gxoe10Zg35PWhzAgEQgDvUtMMkqkFQByMLK2329D8iX4mjvaTuUhU70LD4vLp54v3+4K1nYY2hB+OM1hMbncnMbP63y4UOrY77jg==', | ||
iv='CgAGVTNd9JAAAAnB', | ||
context='Lte3LdSjiAN6nNcV0omaNt/ydFmd/eTwRCxYEeuW97LZe3IbAXWi4Er9CWQ3HbDgJ0KSpDgwyoskjKCK4VRQzYufPCdrfCYCveZCt9pMNoAluEtj0oix2GXOPVkw2d4bYOg3MtY5ZUHLR3L467NEInnRE99w5NOgokH5Ie7eOi5sYAqYtZrHABGEgrdAOVvU7bcwvrCERi9wB/WS75geb3oFy6z7Apue9GFa86Ld20jjgy4LWfaen+2fpfKHmCHTKVWfto17Bg+l5i0sr+uFRzpk1We64Fhh1Wl1NHF6M6dpS5s=', | ||
url='https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest', | ||
challenge_script="https://41bcdd4fb3cb.610cd090.us-east-1.token.awswaf.com/41bcdd4fb3cb/0d21de737ccb/cd77baa6c832/challenge.js", | ||
captcha_script="https://41bcdd4fb3cb.610cd090.us-east-1.captcha.awswaf.com/41bcdd4fb3cb/0d21de737ccb/cd77baa6c832/captcha.js", | ||
callback="https://mysite.com/2captcha.txt" | ||
# proxy={ | ||
# 'type': 'HTTPS', | ||
# 'uri': 'login:password@IP_address:PORT' | ||
# } | ||
) | ||
|
||
except Exception as e: | ||
sys.exit(e) | ||
|
||
else: | ||
sys.exit('result: ' + str(result)) |
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,41 @@ | ||
import sys | ||
import os | ||
import requests | ||
sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))) | ||
|
||
from twocaptcha import TwoCaptcha | ||
|
||
# in this example we store the API key inside environment variables that can be set like: | ||
# export APIKEY_2CAPTCHA=1abc234de56fab7c89012d34e56fa7b8 on Linux or macOS | ||
# set APIKEY_2CAPTCHA=1abc234de56fab7c89012d34e56fa7b8 on Windows | ||
# you can just set the API key directly to it's value like: | ||
# api_key="1abc234de56fab7c89012d34e56fa7b8" | ||
|
||
api_key = os.getenv('APIKEY_2CAPTCHA', 'YOUR_API_KEY') | ||
|
||
config = { | ||
'server': '2captcha.com', # can be also set to 'rucaptcha.com' | ||
'apiKey': api_key, | ||
'softId': 123, | ||
# 'callback': 'https://your.site/result-receiver', # if set, sovler with just return captchaId, not polling API for the answer | ||
'defaultTimeout': 120, | ||
'recaptchaTimeout': 600, | ||
'pollingInterval': 10, | ||
} | ||
|
||
solver = TwoCaptcha(**config) | ||
|
||
try: | ||
result = solver.geetest_v4(captcha_id='e392e1d7fd421dc63325744d5a2b9c73', | ||
url='https://2captcha.com/demo/geetest-v4', | ||
# proxy={ | ||
# 'type': 'HTTPS', | ||
# 'uri': 'login:password@IP_address:PORT' | ||
# } | ||
) | ||
|
||
except Exception as e: | ||
sys.exit(e) | ||
|
||
else: | ||
sys.exit('result: ' + str(result)) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import sys | ||
import os | ||
|
||
sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))) | ||
|
||
from twocaptcha import TwoCaptcha | ||
|
||
# in this example we store the API key inside environment variables that can be set like: | ||
# export APIKEY_2CAPTCHA=1abc234de56fab7c89012d34e56fa7b8 on Linux or macOS | ||
# set APIKEY_2CAPTCHA=1abc234de56fab7c89012d34e56fa7b8 on Windows | ||
# you can just set the API key directly to it's value like: | ||
# api_key="1abc234de56fab7c89012d34e56fa7b8" | ||
|
||
api_key = os.getenv('APIKEY_2CAPTCHA', 'YOUR_API_KEY') | ||
|
||
|
||
config = { | ||
'server': '2captcha.com', # can be also set to 'rucaptcha.com' | ||
'apiKey': api_key, | ||
'softId': 123, | ||
# 'callback': 'https://your.site/result-receiver', # if set, sovler with just return captchaId, not polling API for the answer | ||
'defaultTimeout': 120, | ||
'recaptchaTimeout': 600, | ||
'pollingInterval': 10, | ||
} | ||
|
||
solver = TwoCaptcha(**config) | ||
|
||
try: | ||
result = solver.turnstile(sitekey='0x4AAAAAAAVrOwQWPlm3Bnr5', | ||
url='https://2captcha.com/demo/turnstile', | ||
# data="str", | ||
# pagedata="str", | ||
# action="str", | ||
# useragent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36" | ||
# proxy={ | ||
# 'type': 'HTTPS', | ||
# 'uri': 'login:password@IP_address:PORT' | ||
# } | ||
) | ||
|
||
except Exception as e: | ||
sys.exit(e) | ||
|
||
else: | ||
sys.exit('result: ' + str(result)) |
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 |
---|---|---|
|
@@ -2,4 +2,14 @@ | |
from .solver import (TwoCaptcha, SolverExceptions, ValidationException, | ||
NetworkException, ApiException, TimeoutException) | ||
|
||
""" | ||
Python 3 package for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, | ||
funcaptcha, geetest and solve any other captchas. | ||
website 2captcha [https://2captcha.com/] | ||
[email protected] | ||
# License: MIT | ||
""" | ||
|
||
__author__ = '2captcha' | ||
__version__ = '1.2.4' |
Oops, something went wrong.