-
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 method atb_captcha to solver.py (#75)
- Added examples atb_captcha.py, atb_captcha_options.py to examples folder - Added test test_atb_captcha.py to tests folder - Added description of the method to README.md - And fixed example keycaptcha.py removed extra characters "!" in code Signed-off-by: Maxim S <[email protected]>
- Loading branch information
Showing
6 changed files
with
136 additions
and
1 deletion.
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,29 @@ | ||
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') | ||
|
||
solver = TwoCaptcha(api_key) | ||
|
||
try: | ||
result = solver.atb_captcha( | ||
app_id='af25e409b33d722a95e56a230ff8771c', | ||
api_server='https://cap.aisecurius.com', | ||
url='http://mysite.com/', | ||
) | ||
|
||
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,43 @@ | ||
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.atb_captcha(app_id='af25e409b33d722a95e56a230ff8771c', | ||
api_server='https://cap.aisecurius.com', | ||
url='http://mysite.com/', | ||
# 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import unittest | ||
|
||
try: | ||
from .abstract import AbstractTest | ||
except ImportError: | ||
from abstract import AbstractTest | ||
|
||
|
||
class AtbCaptchaTest(AbstractTest): | ||
|
||
def test_all_params(self): | ||
params = { | ||
'app_id': 'af25e409b33d722a95e56a230ff8771c', | ||
'api_server': 'https://cap.aisecurius.com', | ||
'url': 'http://mysite.com/' | ||
} | ||
|
||
sends = { | ||
'method': 'atb_captcha', | ||
'app_id': 'af25e409b33d722a95e56a230ff8771c', | ||
'api_server': 'https://cap.aisecurius.com', | ||
'pageurl': 'http://mysite.com/' | ||
} | ||
|
||
return self.send_return(sends, self.solver.atb_captcha, **params) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |
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