python-rucaptcha 6.1.2__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.2"
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)
@@ -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"
@@ -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,42 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-rucaptcha
3
- Version: 6.1.2
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
37
- friendly-captcha
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
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,30 @@ 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
29
+ License-File: LICENSE
30
+ Requires-Dist: requests >=2.21.0
31
+ Requires-Dist: aiohttp >=3.9.2
56
32
  Requires-Dist: msgspec ==0.18.*
57
- Requires-Dist: tenacity ==8.2.*
58
-
33
+ Requires-Dist: tenacity ==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://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
+
69
47
  <hr>
70
48
 
71
49
  [![PyPI version](https://badge.fury.io/py/python-rucaptcha.svg)](https://badge.fury.io/py/python-rucaptcha)
@@ -1,10 +1,11 @@
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=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
@@ -21,15 +22,17 @@ python_rucaptcha/lemin_captcha.py,sha256=vM9_Dk4TYdL3Y1w5JVyQVmeO32Mmhwz-_DBqTig
21
22
  python_rucaptcha/mt_captcha.py,sha256=usQK_LR9piDQM7lxkZbSKi6KIXedIBYyytKJBJe8jNg,3415
22
23
  python_rucaptcha/re_captcha.py,sha256=XyJncVbmaV5jZR-qxZ1JdFum10W5yk5zeVrDbZ5dSKo,6083
23
24
  python_rucaptcha/rotate_captcha.py,sha256=V-mJZ672Nw8yXjDcEa9TBc_guuMn9C-7ole-hYODenk,6225
25
+ python_rucaptcha/tencent.py,sha256=2k4Br086e1ytzqRn8x35sK8jaAJcvp6QD58fI9s4d3w,3620
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.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