python-rucaptcha 6.1.1__py3-none-any.whl → 6.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ from python_rucaptcha.__version__ import __version__ # noqa
@@ -1 +1 @@
1
- __version__ = "6.1.1"
1
+ __version__ = "6.2"
@@ -0,0 +1,110 @@
1
+ from typing import Union
2
+
3
+ from .core.base import BaseCaptcha
4
+ from .core.enums import atbCaptchaEnm
5
+
6
+
7
+ class atbCaptcha(BaseCaptcha):
8
+ def __init__(
9
+ self,
10
+ websiteURL: str,
11
+ appId: str,
12
+ apiServer: str,
13
+ method: Union[str, atbCaptchaEnm] = atbCaptchaEnm.AtbCaptchaTaskProxyless,
14
+ *args,
15
+ **kwargs,
16
+ ):
17
+ """
18
+ The class is used to work with CapyPuzzle.
19
+
20
+ Args:
21
+ rucaptcha_key: User API key
22
+ websiteURL: The full URL of target web page where the captcha is loaded.
23
+ We do not open the page, not a problem if it is available only for authenticated users
24
+ appId: The value of `appId` parameter in the website source code.
25
+ apiServer: The value of `apiServer` parameter in the website source code.
26
+ method: Captcha type
27
+
28
+ Examples:
29
+ >>> atbCaptcha(rucaptcha_key="aa9011f31111181111168611f1151122",
30
+ ... websiteURL="https://www.tencentcloud.com/account/register",
31
+ ... appId="2009899766",
32
+ ... apiServer="https://cap.aisecurius.com",
33
+ ... method=atbCaptchaEnm.AtbCaptchaTaskProxyless.value,
34
+ ... ).captcha_handler()
35
+ {
36
+ "errorId":0,
37
+ "status":"ready",
38
+ "solution":{
39
+ "token": "sl191suxzluwxxh6f:"
40
+ },
41
+ "cost":"0.00299",
42
+ "ip":"1.2.3.4",
43
+ "createTime":1692863536,
44
+ "endTime":1692863556,
45
+ "solveCount":1,
46
+ "taskId":75190409731
47
+ }
48
+
49
+ >>> await atbCaptcha(rucaptcha_key="aa9011f31111181111168611f1151122",
50
+ ... websiteURL="https://www.tencentcloud.com/account/register",
51
+ ... appId="2009899766",
52
+ ... apiServer="https://cap.aisecurius.com",
53
+ ... method=atbCaptchaEnm.AtbCaptchaTaskProxyless.value,
54
+ ... ).aio_captcha_handler()
55
+ {
56
+ "errorId":0,
57
+ "status":"ready",
58
+ "solution":{
59
+ "token": "sl191suxzluwxxh6f:"
60
+ },
61
+ "cost":"0.00299",
62
+ "ip":"1.2.3.4",
63
+ "createTime":1692863536,
64
+ "endTime":1692863556,
65
+ "solveCount":1,
66
+ "taskId":75190409731
67
+ }
68
+
69
+ Returns:
70
+ Dict with full server response
71
+
72
+ Notes:
73
+ https://rucaptcha.com/api-docs/atb-captcha
74
+ https://2captcha.com/api-docs/atb-captcha
75
+ """
76
+ super().__init__(method=method, *args, **kwargs)
77
+
78
+ self.create_task_payload["task"].update({"websiteURL": websiteURL, "appId": appId, "apiServer": apiServer})
79
+
80
+ # check user params
81
+ if method not in atbCaptchaEnm.list_values():
82
+ raise ValueError(f"Invalid method parameter set, available - {atbCaptchaEnm.list_values()}")
83
+
84
+ def captcha_handler(self, **kwargs) -> dict:
85
+ """
86
+ Sync solving method
87
+
88
+ Args:
89
+ kwargs: additional params for `requests` library
90
+
91
+ Returns:
92
+ Dict with full server response
93
+
94
+ Notes:
95
+ Check class docstirng for more info
96
+ """
97
+
98
+ return self._processing_response(**kwargs)
99
+
100
+ async def aio_captcha_handler(self) -> dict:
101
+ """
102
+ Async solving method
103
+
104
+ Returns:
105
+ Dict with full server response
106
+
107
+ Notes:
108
+ Check class docstirng for more info
109
+ """
110
+ return await self._aio_processing_response()
@@ -57,6 +57,9 @@ class Control(BaseCaptcha):
57
57
  https://rucaptcha.com/api-docs/get-balance
58
58
  https://rucaptcha.com/api-docs/report-correct
59
59
  https://rucaptcha.com/api-docs/report-incorrect
60
+ https://2captcha.com/api-docs/get-balance
61
+ https://2captcha.com/api-docs/report-correct
62
+ https://2captcha.com/api-docs/report-incorrect
60
63
  """
61
64
 
62
65
  super().__init__(method=ControlEnm.control, *args, **kwargs)
@@ -144,3 +144,18 @@ class CoordinatesCaptchaEnm(str, MyEnum):
144
144
 
145
145
  class GridCaptchaEnm(str, MyEnum):
146
146
  GridTask = "GridTask"
147
+
148
+
149
+ class FriendlyCaptchaEnm(str, MyEnum):
150
+ FriendlyCaptchaTaskProxyless = "FriendlyCaptchaTaskProxyless"
151
+ FriendlyCaptchaTask = "FriendlyCaptchaTask"
152
+
153
+
154
+ class TencentEnm(str, MyEnum):
155
+ TencentTask = "TencentTask"
156
+ TencentTaskProxyless = "TencentTaskProxyless"
157
+
158
+
159
+ class atbCaptchaEnm(str, MyEnum):
160
+ AtbCaptchaTask = "AtbCaptchaTask"
161
+ AtbCaptchaTaskProxyless = "AtbCaptchaTaskProxyless"
@@ -0,0 +1,124 @@
1
+ from typing import Union
2
+
3
+ from .core.base import BaseCaptcha
4
+ from .core.enums import FriendlyCaptchaEnm
5
+
6
+
7
+ class FriendlyCaptcha(BaseCaptcha):
8
+ def __init__(
9
+ self,
10
+ websiteURL: str,
11
+ websiteKey: str,
12
+ method: Union[str, FriendlyCaptchaEnm] = FriendlyCaptchaEnm.FriendlyCaptchaTaskProxyless,
13
+ *args,
14
+ **kwargs,
15
+ ):
16
+ """
17
+ The class is used to work with Friendly Captcha.
18
+
19
+ Args:
20
+ rucaptcha_key: User API key
21
+ websiteURL: The full URL of target web page where the captcha is loaded. We do not open the page,
22
+ not a problem if it is available only for authenticated users
23
+ websiteKey: The value of `data-sitekey` attribute of captcha's `div` element on page.
24
+ method: Captcha type
25
+
26
+ Examples:
27
+ >>> FriendlyCaptcha(rucaptcha_key="aa9011f31111181111168611f1151122",
28
+ ... websiteKey="2FZFEVS1FZCGQ9",
29
+ ... websiteURL="https://example.com",
30
+ ... method=FriendlyCaptchaEnm.FriendlyCaptchaTaskProxyless.value
31
+ ... ).captcha_handler()
32
+ {
33
+ "errorId":0,
34
+ "status":"ready",
35
+ "solution":{
36
+ "token":"PUZZLE_Abc1dEFghIJKLM2no34P56q7rStu8v"
37
+ },
38
+ "cost":"0.00299",
39
+ "ip":"1.2.3.4",
40
+ "createTime":1692863536,
41
+ "endTime":1692863556,
42
+ "solveCount":1,
43
+ "taskId":75190409731
44
+ }
45
+
46
+ >>> FriendlyCaptcha(rucaptcha_key="aa9011f31111181111168611f1151122",
47
+ ... websiteKey="2FZFEVS1FZCGQ9",
48
+ ... websiteURL="https://example.com",
49
+ ... method=FriendlyCaptchaEnm.FriendlyCaptchaTaskProxyless.value
50
+ ... ).captcha_handler()
51
+ {
52
+ "errorId":0,
53
+ "status":"ready",
54
+ "solution":{
55
+ "token":"PUZZLE_Abc1dEFghIJKLM2no34P56q7rStu8v"
56
+ },
57
+ "cost":"0.00299",
58
+ "ip":"1.2.3.4",
59
+ "createTime":1692863536,
60
+ "endTime":1692863556,
61
+ "solveCount":1,
62
+ "taskId":75190409731
63
+ }
64
+
65
+ >>> await FriendlyCaptcha(rucaptcha_key="aa9011f31111181111168611f1151122",
66
+ ... websiteKey="2FZFEVS1FZCGQ9",
67
+ ... websiteURL="https://example.com",
68
+ ... method=FriendlyCaptchaEnm.FriendlyCaptchaTaskProxyless.value
69
+ ... ).aio_captcha_handler()
70
+ {
71
+ "errorId":0,
72
+ "status":"ready",
73
+ "solution":{
74
+ "token":"PUZZLE_Abc1dEFghIJKLM2no34P56q7rStu8v"
75
+ },
76
+ "cost":"0.00299",
77
+ "ip":"1.2.3.4",
78
+ "createTime":1692863536,
79
+ "endTime":1692863556,
80
+ "solveCount":1,
81
+ "taskId":75190409731
82
+ }
83
+
84
+ Returns:
85
+ Dict with full server response
86
+
87
+ Notes:
88
+ https://rucaptcha.com/api-docs/friendly-captcha
89
+ """
90
+ super().__init__(method=method, *args, **kwargs)
91
+
92
+ self.create_task_payload["task"].update({"websiteURL": websiteURL, "websiteKey": websiteKey})
93
+
94
+ # check user params
95
+ if method not in FriendlyCaptchaEnm.list_values():
96
+ raise ValueError(f"Invalid method parameter set, available - {FriendlyCaptchaEnm.list_values()}")
97
+
98
+ def captcha_handler(self, **kwargs) -> dict:
99
+ """
100
+ Sync solving method
101
+
102
+ Args:
103
+ kwargs: additional params for `requests` library
104
+
105
+ Returns:
106
+ Dict with full server response
107
+
108
+ Notes:
109
+ Check class docstirng for more info
110
+ """
111
+
112
+ return self._processing_response(**kwargs)
113
+
114
+ async def aio_captcha_handler(self) -> dict:
115
+ """
116
+ Async solving method
117
+
118
+ Returns:
119
+ Dict with full server response
120
+
121
+ Notes:
122
+ Check class docstirng for more info
123
+ """
124
+ return await self._aio_processing_response()
@@ -0,0 +1,112 @@
1
+ from typing import Union
2
+
3
+ from .core.base import BaseCaptcha
4
+ from .core.enums import TencentEnm
5
+
6
+
7
+ class Tencent(BaseCaptcha):
8
+ def __init__(
9
+ self,
10
+ websiteURL: str,
11
+ appId: str,
12
+ method: Union[str, TencentEnm] = TencentEnm.TencentTaskProxyless,
13
+ *args,
14
+ **kwargs,
15
+ ):
16
+ """
17
+ The class is used to work with CapyPuzzle.
18
+
19
+ Args:
20
+ rucaptcha_key: User API key
21
+ websiteURL: The full URL of target web page where the captcha is loaded.
22
+ We do not open the page, not a problem if it is available only for authenticated users
23
+ appId: The value of `appId` parameter in the website source code.
24
+ method: Captcha type
25
+
26
+ Examples:
27
+ >>> Tencent(rucaptcha_key="aa9011f31111181111168611f1151122",
28
+ ... websiteURL="https://www.tencentcloud.com/account/register",
29
+ ... appId="2009899766",
30
+ ... method=TencentEnm.TencentTaskProxyless.value,
31
+ ... ).captcha_handler()
32
+ {
33
+ "errorId":0,
34
+ "status":"ready",
35
+ "solution":{
36
+ "appid": "190014885",
37
+ "ret": 0,
38
+ "ticket": "tr034XXXXXXXXXXXXXXXXXX*",
39
+ "randstr": "@KVN"
40
+ },
41
+ "cost":"0.00299",
42
+ "ip":"1.2.3.4",
43
+ "createTime":1692863536,
44
+ "endTime":1692863556,
45
+ "solveCount":1,
46
+ "taskId":75190409731
47
+ }
48
+
49
+ >>> await Tencent(rucaptcha_key="aa9011f31111181111168611f1151122",
50
+ ... websiteURL="https://www.tencentcloud.com/account/register",
51
+ ... appId="2009899766",
52
+ ... method=TencentEnm.TencentTaskProxyless.value,
53
+ ... ).aio_captcha_handler()
54
+ {
55
+ "errorId":0,
56
+ "status":"ready",
57
+ "solution":{
58
+ "appid": "190014885",
59
+ "ret": 0,
60
+ "ticket": "tr034XXXXXXXXXXXXXXXXXX*",
61
+ "randstr": "@KVN"
62
+ },
63
+ "cost":"0.00299",
64
+ "ip":"1.2.3.4",
65
+ "createTime":1692863536,
66
+ "endTime":1692863556,
67
+ "solveCount":1,
68
+ "taskId":75190409731
69
+ }
70
+
71
+ Returns:
72
+ Dict with full server response
73
+
74
+ Notes:
75
+ https://rucaptcha.com/api-docs/tencent
76
+ https://2captcha.com/api-docs/tencent
77
+ """
78
+ super().__init__(method=method, *args, **kwargs)
79
+
80
+ self.create_task_payload["task"].update({"websiteURL": websiteURL, "appId": appId})
81
+
82
+ # check user params
83
+ if method not in TencentEnm.list_values():
84
+ raise ValueError(f"Invalid method parameter set, available - {TencentEnm.list_values()}")
85
+
86
+ def captcha_handler(self, **kwargs) -> dict:
87
+ """
88
+ Sync solving method
89
+
90
+ Args:
91
+ kwargs: additional params for `requests` library
92
+
93
+ Returns:
94
+ Dict with full server response
95
+
96
+ Notes:
97
+ Check class docstirng for more info
98
+ """
99
+
100
+ return self._processing_response(**kwargs)
101
+
102
+ async def aio_captcha_handler(self) -> dict:
103
+ """
104
+ Async solving method
105
+
106
+ Returns:
107
+ Dict with full server response
108
+
109
+ Notes:
110
+ Check class docstirng for more info
111
+ """
112
+ return await self._aio_processing_response()
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Andrei
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,41 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-rucaptcha
3
- Version: 6.1.1
3
+ Version: 6.2
4
4
  Summary: Python 3.9+ RuCaptcha library with AIO module.
5
- Home-page: https://andreidrang.github.io/python-rucaptcha/
6
- Author: AndreiDrang, redV0ID
7
- Author-email: python-captcha@pm.me
8
- License: MIT
5
+ Author-email: AndreiDrang <python-captcha@pm.me>
6
+ License: MIT License
7
+ Project-URL: Homepage, https://andreidrang.github.io/python-rucaptcha/
9
8
  Project-URL: Documentation, https://andreidrang.github.io/python-rucaptcha/
10
- Project-URL: Source, https://github.com/AndreiDrang/python-rucaptcha
9
+ Project-URL: Repository, https://github.com/AndreiDrang/python-rucaptcha
10
+ Project-URL: Issues, https://github.com/AndreiDrang/python-rucaptcha/issues
11
11
  Project-URL: Changelog, https://github.com/AndreiDrang/python-rucaptcha/releases
12
- Project-URL: Issue tracker, https://github.com/AndreiDrang/python-rucaptcha/issues
13
- Keywords: captcha
14
- rucaptcha
15
- 2captcha
16
- deathbycaptcha
17
- recaptcha
18
- geetest
19
- hcaptcha
20
- capypuzzle
21
- tiktok
22
- rotatecaptcha
23
- funcaptcha
24
- keycaptcha
25
- python3
26
- recaptcha
27
- captcha
28
- security
29
- tiktok
30
- python-library
31
- python-rucaptcha
32
- rucaptcha-client
33
- yandex
34
- turnstile
35
- amazon
36
- amazon_waf
12
+ Keywords: captcha,rucaptcha,2captcha,deathbycaptcha,recaptcha,geetest,hcaptcha,capypuzzle,tiktok,rotatecaptcha,funcaptcha,keycaptcha,python3,recaptcha,captcha,security,tiktok,tencent,atb_captcha,python-library,python-rucaptcha,rucaptcha-client,yandex,turnstile,amazon,amazon_waf,friendly-captcha
37
13
  Classifier: License :: OSI Approved :: MIT License
38
14
  Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
15
+ Classifier: Development Status :: 5 - Production/Stable
39
16
  Classifier: Programming Language :: Python
40
17
  Classifier: Programming Language :: Python :: 3
41
18
  Classifier: Programming Language :: Python :: 3 :: Only
@@ -43,28 +20,30 @@ Classifier: Programming Language :: Python :: 3.9
43
20
  Classifier: Programming Language :: Python :: 3.10
44
21
  Classifier: Programming Language :: Python :: 3.11
45
22
  Classifier: Programming Language :: Python :: 3.12
46
- Classifier: Development Status :: 5 - Production/Stable
47
23
  Classifier: Framework :: AsyncIO
48
24
  Classifier: Operating System :: Unix
49
25
  Classifier: Operating System :: Microsoft :: Windows
50
26
  Classifier: Operating System :: MacOS
51
- Requires-Python: >=3.9.0
27
+ Requires-Python: >=3.9
52
28
  Description-Content-Type: text/markdown
53
- Requires-Dist: requests >=2.28.0
54
- Requires-Dist: aiohttp >=3.9.0
29
+ License-File: LICENSE
30
+ Requires-Dist: requests >=2.21.0
31
+ Requires-Dist: aiohttp >=3.9.2
55
32
  Requires-Dist: msgspec ==0.18.*
56
- Requires-Dist: tenacity ==8.2.*
57
-
33
+ Requires-Dist: tenacity ==8.*
58
34
 
59
35
  # python-rucaptcha
60
36
 
61
37
  ![Logo](https://red-panda-dev.xyz/media/images/RuCaptchaHigh_zkkPoYF.original.png)
62
38
 
63
- <a href="https://dashboard.capsolver.com/passport/register?inviteCode=kQTn-tG07Jb1">
64
- <img src="https://cdn.discordapp.com/attachments/1105172394655625306/1105180101802471575/20221207-160749.gif" alt="Capsolver's Banner">
65
- </a>
66
- <br>
67
- At the lowest price on the market, you may receive a variety of solutions, including reCAPTCHA V2, reCAPTCHA V3, hCaptcha, hCaptcha Click, FunCaptcha, picture-to-text, and more. With this service, 0.1s is the slowest speed ever measured.
39
+ ### [Capsolver](https://capsolver.com?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha)
40
+
41
+ [![Capsolver](files/capsolver.jpg)](https://capsolver.com?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha)
42
+
43
+ [Capsolver.com](https://www.capsolver.com/?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha) is an AI-powered service that specializes in solving various types of captchas automatically. It supports captchas such as [reCAPTCHA V2](https://docs.capsolver.com/guide/captcha/ReCaptchaV2.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), [reCAPTCHA V3](https://docs.capsolver.com/guide/captcha/ReCaptchaV3.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), [hCaptcha](https://docs.capsolver.com/guide/captcha/HCaptcha.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), [FunCaptcha](https://docs.capsolver.com/guide/captcha/FunCaptcha.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), [DataDome](https://docs.capsolver.com/guide/captcha/DataDome.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), [AWS Captcha](https://docs.capsolver.com/guide/captcha/awsWaf.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), [Geetest](https://docs.capsolver.com/guide/captcha/Geetest.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), and Cloudflare [Captcha](https://docs.capsolver.com/guide/antibots/cloudflare_turnstile.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha) / [Challenge 5s](https://docs.capsolver.com/guide/antibots/cloudflare_challenge.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), [Imperva / Incapsula](https://docs.capsolver.com/guide/antibots/imperva.html?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), among others.
44
+
45
+ For developers, Capsolver offers API integration options detailed in their [documentation](https://docs.capsolver.com/?utm_source=github&utm_medium=banner_github&utm_campaign=python-rucaptcha), facilitating the integration of captcha solving into applications. They also provide browser extensions for [Chrome](https://chromewebstore.google.com/detail/captcha-solver-auto-captc/pgojnojmmhpofjgdmaebadhbocahppod) and [Firefox](https://addons.mozilla.org/es/firefox/addon/capsolver-captcha-solver/), making it easy to use their service directly within a browser. Different pricing packages are available to accommodate varying needs, ensuring flexibility for users.
46
+
68
47
  <hr>
69
48
 
70
49
  [![PyPI version](https://badge.fury.io/py/python-rucaptcha.svg)](https://badge.fury.io/py/python-rucaptcha)
@@ -1,15 +1,17 @@
1
- python_rucaptcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- python_rucaptcha/__version__.py,sha256=TogwtvfScmmY5i06w1pmsYL28pcWyPETM_YMFRujQQY,22
1
+ python_rucaptcha/__init__.py,sha256=odkQWtwx2RgIjD8pw2ZF-KR-5nL0Yu2Wn7Mu2YdBrSk,61
2
+ python_rucaptcha/__version__.py,sha256=isdrfznaMU6K6jV8dZxKDsUEcVdFOgaOY6kYVYAf_2Q,20
3
3
  python_rucaptcha/amazon_waf.py,sha256=psEg-sym8xQlMPPto1ND_HE0vGV_SRRrDnsKuEbbxNA,3625
4
+ python_rucaptcha/atb_captcha.py,sha256=HLY_ZGQLx0ej6NLZ4X-9L6RE9K4LfT8bWZZBnBnz_lA,3701
4
5
  python_rucaptcha/audio_captcha.py,sha256=Bp6-gF3cTnYL8aeY8k4D4Ii7zPqy1Qo2OFRooSEd0MQ,5600
5
6
  python_rucaptcha/bounding_box_captcha.py,sha256=JvJEU1Y0A1SVkJV9jEFgBQ7Nis-vFkTmfUBoHIeTinY,10648
6
7
  python_rucaptcha/capy_puzzle.py,sha256=ITr1HNALlaKtBkrBht2QtEtP-u6K4-JXpDKKwih7RhA,4973
7
- python_rucaptcha/control.py,sha256=TnOMQdT7CBoCkbWJtXXlX7ExsZJ49cyVbeZQPFyV_Ac,4818
8
+ python_rucaptcha/control.py,sha256=2oBlvCnEV_tEsb8_1V-rrL7RLZZ5JTdGB5IcqDLFTUE,4988
8
9
  python_rucaptcha/coordinates_captcha.py,sha256=lmotaD_dOzo2T9MdcaOgQdB5opL-Hs-ZVUW5nTy-KJ0,9911
9
10
  python_rucaptcha/cutcaptcha.py,sha256=8FVoIoKyKXL-znpkJUscsR9Q4n-2nWGfBBpWUXTiQFQ,4028
10
11
  python_rucaptcha/cyber_siara_captcha.py,sha256=P8oLkn3UZDuy3XjEyd59cK2QOHYesV6KQ5pMbw2deiA,3909
11
12
  python_rucaptcha/datadome_captcha.py,sha256=sf6VdBWB3S7xTCyy83odJTHZHQmi6a2TNSFSFnSh__Y,4140
12
13
  python_rucaptcha/draw_around_captcha.py,sha256=uUaVk--31p0xh6sqTxtRdtxl0F4ZQ9KeESpmqY1WPR0,11837
14
+ python_rucaptcha/friendly_captcha.py,sha256=c5sbhAHq5zPlk2-5gGcoPhjslEkBT24EtFip2S8cGao,4232
13
15
  python_rucaptcha/fun_captcha.py,sha256=hz-ulRnuzqyk8vAXaT52aZ_EyH_mf_VwauGVfjR8rV8,3496
14
16
  python_rucaptcha/gee_test.py,sha256=lxhqWm2uWWS_uQK5ufArjr-508pfecDYAEh4Ct-FthI,8583
15
17
  python_rucaptcha/grid_captcha.py,sha256=ssfl1BnBzxR1CHGdnjEG4wunTvEk9NvGIoiXQWHrt20,9001
@@ -20,15 +22,17 @@ python_rucaptcha/lemin_captcha.py,sha256=vM9_Dk4TYdL3Y1w5JVyQVmeO32Mmhwz-_DBqTig
20
22
  python_rucaptcha/mt_captcha.py,sha256=usQK_LR9piDQM7lxkZbSKi6KIXedIBYyytKJBJe8jNg,3415
21
23
  python_rucaptcha/re_captcha.py,sha256=XyJncVbmaV5jZR-qxZ1JdFum10W5yk5zeVrDbZ5dSKo,6083
22
24
  python_rucaptcha/rotate_captcha.py,sha256=V-mJZ672Nw8yXjDcEa9TBc_guuMn9C-7ole-hYODenk,6225
25
+ python_rucaptcha/tencent.py,sha256=2k4Br086e1ytzqRn8x35sK8jaAJcvp6QD58fI9s4d3w,3620
23
26
  python_rucaptcha/text_captcha.py,sha256=lZDPwTgpMLvqvfjPbT-uNuNu6JRdWTEE9qfjnRQ5y-A,3708
24
27
  python_rucaptcha/turnstile.py,sha256=VpmYGYJoRVX6NHipO6-g2U5EpwxZToAZRmULj4ReDD0,3686
25
28
  python_rucaptcha/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
29
  python_rucaptcha/core/base.py,sha256=e_5e9q5xaEcz7Wi9l-chdxz5vPpOTm6PpblaBtMkMfw,9315
27
30
  python_rucaptcha/core/config.py,sha256=UHP9iAaW3VpVC_7eHz_ihkYWIMAA9t_UXERfs5LwKiM,553
28
- python_rucaptcha/core/enums.py,sha256=R2IacwO_DOCKmV3gsZ6d6_1ZVRW4A2Yr5hWDHzAmXRs,3397
31
+ python_rucaptcha/core/enums.py,sha256=3YAUEcI2xXibufgQlbSWElC7c0pwb9jp0HW8tdnsL-8,3797
29
32
  python_rucaptcha/core/result_handler.py,sha256=uaeRMGP8Sagi7_Vh845lpvNXuNy4nVwgRKOsCKf2vXI,2680
30
33
  python_rucaptcha/core/serializer.py,sha256=asJRFD14uwOXG8gaNqsfaukiPBbsxt4r0rDA7lCuNHk,1739
31
- python_rucaptcha-6.1.1.dist-info/METADATA,sha256=dxYWrOaBXPV9Np0bAWFfmDM4jBPp8pjRPak9-5Ck05Q,6694
32
- python_rucaptcha-6.1.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
33
- python_rucaptcha-6.1.1.dist-info/top_level.txt,sha256=Eu_atEB79Y7jCsfXPcXF5N8OLt6kKVbvhuRsI1BmSWM,17
34
- python_rucaptcha-6.1.1.dist-info/RECORD,,
34
+ python_rucaptcha-6.2.dist-info/LICENSE,sha256=N_utAsqhTp1pXXp-PTE-CFMg5BfIIqTbF-phwwzOHeQ,1063
35
+ python_rucaptcha-6.2.dist-info/METADATA,sha256=_oKWDGp24Xl2cH5e-OudjHBYNkSnO0gGt1XHppklYRQ,8831
36
+ python_rucaptcha-6.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
37
+ python_rucaptcha-6.2.dist-info/top_level.txt,sha256=Eu_atEB79Y7jCsfXPcXF5N8OLt6kKVbvhuRsI1BmSWM,17
38
+ python_rucaptcha-6.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5