Skip to content

Commit 7d9be08

Browse files
authored
Merge pull request #341 from AndreiDrang/master
v6.5.0
2 parents 31b2cd7 + a120cb6 commit 7d9be08

22 files changed

Lines changed: 490 additions & 85 deletions

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
python-version: ["3.9", "3.10", "3.11", "3.12"]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Set up Python ${{ matrix.python-version }}
2828
uses: actions/setup-python@v5
2929
with:

.github/workflows/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
python-version: ["3.9", "3.10", "3.11", "3.12"]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Set up Python ${{ matrix.python-version }}
2828
uses: actions/setup-python@v5
2929
with:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: ["3.12"]
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: Set up Python ${{ matrix.python-version }}
3232
uses: actions/setup-python@v5
3333
with:

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: actions/setup-python@v5
1919

2020
- name: Build docs requirements

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ["3.11"]
3434

3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
- name: Set up Python ${{ matrix.python-version }}
3838
uses: actions/setup-python@v5
3939
with:

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@
1414
amazon_waf,
1515
mt_captcha,
1616
re_captcha,
17+
vk_captcha,
1718
atb_captcha,
1819
captcha_fox,
1920
capy_puzzle,
2021
fun_captcha,
2122
key_captcha,
2223
grid_captcha,
24+
temu_captcha,
2325
text_captcha,
2426
image_captcha,
2527
lemin_captcha,
@@ -100,7 +102,6 @@
100102
napoleon_use_param = True
101103
napoleon_use_rtype = True
102104
napoleon_preprocess_types = True
103-
napoleon_type_aliases = True
104105
napoleon_attr_annotations = True
105106

106107
autodoc_preserve_defaults = False

docs/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ Check our other projects here - `RedPandaDev group <https://red-panda-dev.xyz/bl
5353
modules/prosopo/example.rst
5454
modules/atb-captcha/example.rst
5555
modules/captcha-fox/example.rst
56+
modules/captcha-temu/example.rst
57+
modules/captcha-vk/example.rst
5658
modules/control/example.rst
5759

5860
.. toctree::
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
TemuCaptcha
2+
===========
3+
4+
To import this module:
5+
6+
.. code-block:: python
7+
8+
from python_rucaptcha.temu_captcha import TemuCaptcha
9+
10+
11+
.. autoclass:: python_rucaptcha.temu_captcha.TemuCaptcha
12+
:members:
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
VKCaptcha
2+
=========
3+
4+
To import this module:
5+
6+
.. code-block:: python
7+
8+
from python_rucaptcha.vk_captcha import VKCaptcha
9+
10+
11+
.. autoclass:: python_rucaptcha.vk_captcha.VKCaptcha
12+
:members:

docs/modules/main/info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
![](../../_static/RuCaptchaMedium.png)
55

6-
### [Capsolver](https://www.capsolver.com/?utm_source=github&utm_medium=repo&utm_campaign=scraping&utm_term=python-rucaptcha)
6+
## [Capsolver](https://www.capsolver.com/?utm_source=github&utm_medium=repo&utm_campaign=scraping&utm_term=python-rucaptcha)
77

88
[![Capsolver](../../_static/capsolver.jpg)](https://www.capsolver.com/?utm_source=github&utm_medium=repo&utm_campaign=scraping&utm_term=python-rucaptcha)
99

0 commit comments

Comments
 (0)