python-rucaptcha 6.1.2__py3-none-any.whl → 6.3__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.2"
1
+ __version__ = "6.3"
@@ -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)
@@ -149,3 +149,13 @@ class GridCaptchaEnm(str, MyEnum):
149
149
  class FriendlyCaptchaEnm(str, MyEnum):
150
150
  FriendlyCaptchaTaskProxyless = "FriendlyCaptchaTaskProxyless"
151
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"
@@ -20,8 +20,10 @@ class DataDomeCaptcha(BaseCaptcha):
20
20
  Args:
21
21
  rucaptcha_key: User API key
22
22
  websiteURL: Full URL of the captcha page
23
- captchaUrl: The value of the `src` parameter for the `iframe` element containing the captcha on the page.
24
- userAgent: User-Agent of your browser will be used to load the captcha. Use only modern browser's User-Agents
23
+ captchaUrl: The value of the `src` parameter for the `iframe` element
24
+ containing the captcha on the page.
25
+ userAgent: User-Agent of your browser will be used to load the captcha.
26
+ Use only modern browser's User-Agents
25
27
  proxyType: Proxy type - `http`, `socks4`, `socks5`
26
28
  proxyAddress: Proxy IP address or hostname
27
29
  proxyPort: Proxy port
@@ -74,7 +74,8 @@ class RotateCaptcha(BaseCaptcha):
74
74
  }
75
75
 
76
76
  >>> await RotateCaptcha(rucaptcha_key="aa9011f31111181111168611f1151122",
77
- ... angle=45).aio_captcha_handler(captcha_file="examples/rotate/rotate_ex.png")
77
+ ... angle=45).aio_captcha_handler(
78
+ ... captcha_file="examples/rotate/rotate_ex.png")
78
79
  {
79
80
  "errorId":0,
80
81
  "status":"ready",
@@ -0,0 +1,113 @@
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
23
+ only for authenticated users
24
+ appId: The value of `appId` parameter in the website source code.
25
+ method: Captcha type
26
+
27
+ Examples:
28
+ >>> Tencent(rucaptcha_key="aa9011f31111181111168611f1151122",
29
+ ... websiteURL="https://www.tencentcloud.com/account/register",
30
+ ... appId="2009899766",
31
+ ... method=TencentEnm.TencentTaskProxyless.value,
32
+ ... ).captcha_handler()
33
+ {
34
+ "errorId":0,
35
+ "status":"ready",
36
+ "solution":{
37
+ "appid": "190014885",
38
+ "ret": 0,
39
+ "ticket": "tr034XXXXXXXXXXXXXXXXXX*",
40
+ "randstr": "@KVN"
41
+ },
42
+ "cost":"0.00299",
43
+ "ip":"1.2.3.4",
44
+ "createTime":1692863536,
45
+ "endTime":1692863556,
46
+ "solveCount":1,
47
+ "taskId":75190409731
48
+ }
49
+
50
+ >>> await Tencent(rucaptcha_key="aa9011f31111181111168611f1151122",
51
+ ... websiteURL="https://www.tencentcloud.com/account/register",
52
+ ... appId="2009899766",
53
+ ... method=TencentEnm.TencentTaskProxyless.value,
54
+ ... ).aio_captcha_handler()
55
+ {
56
+ "errorId":0,
57
+ "status":"ready",
58
+ "solution":{
59
+ "appid": "190014885",
60
+ "ret": 0,
61
+ "ticket": "tr034XXXXXXXXXXXXXXXXXX*",
62
+ "randstr": "@KVN"
63
+ },
64
+ "cost":"0.00299",
65
+ "ip":"1.2.3.4",
66
+ "createTime":1692863536,
67
+ "endTime":1692863556,
68
+ "solveCount":1,
69
+ "taskId":75190409731
70
+ }
71
+
72
+ Returns:
73
+ Dict with full server response
74
+
75
+ Notes:
76
+ https://rucaptcha.com/api-docs/tencent
77
+ https://2captcha.com/api-docs/tencent
78
+ """
79
+ super().__init__(method=method, *args, **kwargs)
80
+
81
+ self.create_task_payload["task"].update({"websiteURL": websiteURL, "appId": appId})
82
+
83
+ # check user params
84
+ if method not in TencentEnm.list_values():
85
+ raise ValueError(f"Invalid method parameter set, available - {TencentEnm.list_values()}")
86
+
87
+ def captcha_handler(self, **kwargs) -> dict:
88
+ """
89
+ Sync solving method
90
+
91
+ Args:
92
+ kwargs: additional params for `requests` library
93
+
94
+ Returns:
95
+ Dict with full server response
96
+
97
+ Notes:
98
+ Check class docstirng for more info
99
+ """
100
+
101
+ return self._processing_response(**kwargs)
102
+
103
+ async def aio_captcha_handler(self) -> dict:
104
+ """
105
+ Async solving method
106
+
107
+ Returns:
108
+ Dict with full server response
109
+
110
+ Notes:
111
+ Check class docstirng for more info
112
+ """
113
+ 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,42 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-rucaptcha
3
- Version: 6.1.2
3
+ Version: 6.3
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
37
- friendly-captcha
12
+ Keywords: captcha,rucaptcha,2captcha,deathbycaptcha,recaptcha,geetest,hcaptcha,capypuzzle,rotatecaptcha,funcaptcha,keycaptcha,python3,recaptcha,captcha,security,tencent,atb_captcha,python-library,python-rucaptcha,rucaptcha-client,yandex,turnstile,amazon,amazon_waf,friendly-captcha
38
13
  Classifier: License :: OSI Approved :: MIT License
39
14
  Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
15
+ Classifier: Development Status :: 5 - Production/Stable
40
16
  Classifier: Programming Language :: Python
41
17
  Classifier: Programming Language :: Python :: 3
42
18
  Classifier: Programming Language :: Python :: 3 :: Only
@@ -44,28 +20,26 @@ Classifier: Programming Language :: Python :: 3.9
44
20
  Classifier: Programming Language :: Python :: 3.10
45
21
  Classifier: Programming Language :: Python :: 3.11
46
22
  Classifier: Programming Language :: Python :: 3.12
47
- Classifier: Development Status :: 5 - Production/Stable
48
23
  Classifier: Framework :: AsyncIO
49
24
  Classifier: Operating System :: Unix
50
25
  Classifier: Operating System :: Microsoft :: Windows
51
26
  Classifier: Operating System :: MacOS
52
- Requires-Python: >=3.9.0
27
+ Requires-Python: >=3.9
53
28
  Description-Content-Type: text/markdown
54
- Requires-Dist: requests >=2.28.0
55
- Requires-Dist: aiohttp >=3.9.0
56
- Requires-Dist: msgspec ==0.18.*
57
- Requires-Dist: tenacity ==8.2.*
58
-
29
+ License-File: LICENSE
30
+ Requires-Dist: requests>=2.21.0
31
+ Requires-Dist: aiohttp>=3.9.2
32
+ Requires-Dist: msgspec==0.18.*
33
+ Requires-Dist: tenacity<10,>=8
59
34
 
60
35
  # python-rucaptcha
61
36
 
62
37
  ![Logo](https://red-panda-dev.xyz/media/images/RuCaptchaHigh_zkkPoYF.original.png)
63
38
 
64
- <a href="https://dashboard.capsolver.com/passport/register?inviteCode=kQTn-tG07Jb1">
65
- <img src="https://cdn.discordapp.com/attachments/1105172394655625306/1105180101802471575/20221207-160749.gif" alt="Capsolver's Banner">
66
- </a>
67
- <br>
68
- 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://www.capsolver.com/?utm_source=github&utm_medium=repo&utm_campaign=scraping&utm_term=python-rucaptcha)
40
+
41
+ [![Capsolver](files/capsolver.jpg)](https://www.capsolver.com/?utm_source=github&utm_medium=repo&utm_campaign=scraping&utm_term=python-rucaptcha)
42
+
69
43
  <hr>
70
44
 
71
45
  [![PyPI version](https://badge.fury.io/py/python-rucaptcha.svg)](https://badge.fury.io/py/python-rucaptcha)
@@ -97,13 +71,6 @@ If you have any questions, please send a message to the [Telegram](https://t.me/
97
71
 
98
72
  Or email python-captcha@pm.me
99
73
 
100
- ***
101
-
102
- You can check our other projects here - [RedPandaDev group](https://red-panda-dev.xyz/blog/). For example - [Torrents Tracker bot](https://t.me/torrents_tracker_bot) for Telegram.
103
-
104
- ***
105
-
106
-
107
74
  ## How to install?
108
75
 
109
76
  ### pip
@@ -1,14 +1,15 @@
1
- python_rucaptcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- python_rucaptcha/__version__.py,sha256=YN8byPcjyQjphqvazTEzWioECzFuTCnjb_LQ7d7T_gw,22
1
+ python_rucaptcha/__init__.py,sha256=odkQWtwx2RgIjD8pw2ZF-KR-5nL0Yu2Wn7Mu2YdBrSk,61
2
+ python_rucaptcha/__version__.py,sha256=twnD1Fpmy0_Af7L62IoZy2ao-JBuABOAN2gUt9qHRpo,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
- python_rucaptcha/datadome_captcha.py,sha256=sf6VdBWB3S7xTCyy83odJTHZHQmi6a2TNSFSFnSh__Y,4140
12
+ python_rucaptcha/datadome_captcha.py,sha256=6ab7vDjYjUT4X_H5VJuAcuGtfUcBidzY-5vo7YH4lWY,4196
12
13
  python_rucaptcha/draw_around_captcha.py,sha256=uUaVk--31p0xh6sqTxtRdtxl0F4ZQ9KeESpmqY1WPR0,11837
13
14
  python_rucaptcha/friendly_captcha.py,sha256=c5sbhAHq5zPlk2-5gGcoPhjslEkBT24EtFip2S8cGao,4232
14
15
  python_rucaptcha/fun_captcha.py,sha256=hz-ulRnuzqyk8vAXaT52aZ_EyH_mf_VwauGVfjR8rV8,3496
@@ -20,16 +21,18 @@ python_rucaptcha/key_captcha.py,sha256=hufzqYEb3ZR23AsLWIL82HFTJnA8JsOJtXUA92b9t
20
21
  python_rucaptcha/lemin_captcha.py,sha256=vM9_Dk4TYdL3Y1w5JVyQVmeO32Mmhwz-_DBqTigjcYY,4064
21
22
  python_rucaptcha/mt_captcha.py,sha256=usQK_LR9piDQM7lxkZbSKi6KIXedIBYyytKJBJe8jNg,3415
22
23
  python_rucaptcha/re_captcha.py,sha256=XyJncVbmaV5jZR-qxZ1JdFum10W5yk5zeVrDbZ5dSKo,6083
23
- python_rucaptcha/rotate_captcha.py,sha256=V-mJZ672Nw8yXjDcEa9TBc_guuMn9C-7ole-hYODenk,6225
24
+ python_rucaptcha/rotate_captcha.py,sha256=o9y9SVLPI6G6NqK1siv3xbOSYm7PGNquJbbhXuxTIDE,6278
25
+ python_rucaptcha/tencent.py,sha256=vKCx0R2RYZYwT_3gBVBSZbwqtSBKHw6tq7SS-2oHy0s,3648
24
26
  python_rucaptcha/text_captcha.py,sha256=lZDPwTgpMLvqvfjPbT-uNuNu6JRdWTEE9qfjnRQ5y-A,3708
25
27
  python_rucaptcha/turnstile.py,sha256=VpmYGYJoRVX6NHipO6-g2U5EpwxZToAZRmULj4ReDD0,3686
26
28
  python_rucaptcha/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
29
  python_rucaptcha/core/base.py,sha256=e_5e9q5xaEcz7Wi9l-chdxz5vPpOTm6PpblaBtMkMfw,9315
28
30
  python_rucaptcha/core/config.py,sha256=UHP9iAaW3VpVC_7eHz_ihkYWIMAA9t_UXERfs5LwKiM,553
29
- python_rucaptcha/core/enums.py,sha256=eUTp5_bHdHvYpoyMP2uhM4G1ydESo-kkWSwfMxhGuLw,3552
31
+ python_rucaptcha/core/enums.py,sha256=3YAUEcI2xXibufgQlbSWElC7c0pwb9jp0HW8tdnsL-8,3797
30
32
  python_rucaptcha/core/result_handler.py,sha256=uaeRMGP8Sagi7_Vh845lpvNXuNy4nVwgRKOsCKf2vXI,2680
31
33
  python_rucaptcha/core/serializer.py,sha256=asJRFD14uwOXG8gaNqsfaukiPBbsxt4r0rDA7lCuNHk,1739
32
- python_rucaptcha-6.1.2.dist-info/METADATA,sha256=l-kQ-d57RFMdfl0jGLVeg87xctMPeDDGkVYvBb8rQY4,6715
33
- python_rucaptcha-6.1.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
34
- python_rucaptcha-6.1.2.dist-info/top_level.txt,sha256=Eu_atEB79Y7jCsfXPcXF5N8OLt6kKVbvhuRsI1BmSWM,17
35
- python_rucaptcha-6.1.2.dist-info/RECORD,,
34
+ python_rucaptcha-6.3.dist-info/LICENSE,sha256=N_utAsqhTp1pXXp-PTE-CFMg5BfIIqTbF-phwwzOHeQ,1063
35
+ python_rucaptcha-6.3.dist-info/METADATA,sha256=c30HaJt6LJoGZhu4EOgLIaZp-9ezHNDv3EulaNtW4pE,6248
36
+ python_rucaptcha-6.3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
37
+ python_rucaptcha-6.3.dist-info/top_level.txt,sha256=Eu_atEB79Y7jCsfXPcXF5N8OLt6kKVbvhuRsI1BmSWM,17
38
+ python_rucaptcha-6.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5