Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

6.1 #197

Merged
merged 32 commits into from
Dec 13, 2023
Merged

6.1 #197

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
eaa0908
Update test_datadome.py
AndreiDrang Dec 11, 2023
6b8cf76
Create mt_captcha.py
AndreiDrang Dec 11, 2023
5028374
Update enums.py
AndreiDrang Dec 11, 2023
a81d26f
Create test_mtcaptcha.py
AndreiDrang Dec 11, 2023
ee37717
removed useless tests
AndreiDrang Dec 11, 2023
7b2e79f
Create bounding_box_start.jpg
AndreiDrang Dec 12, 2023
fdc9352
Create bounding_box_start.png
AndreiDrang Dec 12, 2023
55a3d52
Create bounding_box_captcha.py
AndreiDrang Dec 12, 2023
fd7cce7
Update enums.py
AndreiDrang Dec 12, 2023
8dae472
Create test_bounding_box.py
AndreiDrang Dec 12, 2023
4e91c08
Update bounding_box_captcha.py
AndreiDrang Dec 13, 2023
e14f3f8
Create test_draw_around.py
AndreiDrang Dec 13, 2023
3343d7d
Create draw_around_captcha.py
AndreiDrang Dec 13, 2023
9f5b0cc
Update enums.py
AndreiDrang Dec 13, 2023
bc8f581
Update test_bounding_box.py
AndreiDrang Dec 13, 2023
4130d0f
Update test_draw_around.py
AndreiDrang Dec 13, 2023
a58e472
Update test_cutcaptcha.py
AndreiDrang Dec 13, 2023
d2cf922
Update test_draw_around.py
AndreiDrang Dec 13, 2023
6da2574
Create test_coordinates.py
AndreiDrang Dec 13, 2023
e24c959
Create coordinates_captcha.py
AndreiDrang Dec 13, 2023
4504332
Update enums.py
AndreiDrang Dec 13, 2023
2241985
Update test_bounding_box.py
AndreiDrang Dec 13, 2023
41cac8f
added grid captcha
AndreiDrang Dec 13, 2023
35c4e9e
6.1
AndreiDrang Dec 13, 2023
fe52bc6
updated docs
AndreiDrang Dec 13, 2023
5c8ab0f
Update conf.py
AndreiDrang Dec 13, 2023
f8d9e42
Update drawing.svg
AndreiDrang Dec 13, 2023
9abb905
Update RuCaptchaHigh.png
AndreiDrang Dec 13, 2023
634c15c
Update RuCaptchaHigh.png
AndreiDrang Dec 13, 2023
aea1a3d
Update drawing.svg
AndreiDrang Dec 13, 2023
3a1c780
Update README.md
AndreiDrang Dec 13, 2023
ff786c5
Update test.yml
AndreiDrang Dec 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# python-rucaptcha

![Logo](https://red-panda-dev.xyz/media/images/RuCaptchaHigh.max-800x600.png)
![Logo](https://red-panda-dev.xyz/media/images/RuCaptchaHigh_zkkPoYF.original.png)

<a href="https://dashboard.capsolver.com/passport/register?inviteCode=kQTn-tG07Jb1">
<img src="https://cdn.discordapp.com/attachments/1105172394655625306/1105180101802471575/20221207-160749.gif" alt="Capsolver's Banner">
Expand Down
4 changes: 4 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,20 @@
hcaptcha,
turnstile,
amazon_waf,
mt_captcha,
re_captcha,
capy_puzzle,
fun_captcha,
key_captcha,
grid_captcha,
text_captcha,
image_captcha,
lemin_captcha,
rotate_captcha,
datadome_captcha,
cyber_siara_captcha,
draw_around_captcha,
bounding_box_captcha,
)
from python_rucaptcha.__version__ import __version__

Expand Down
5 changes: 5 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ Check our other projects here - `RedPandaDev group <https://red-panda-dev.xyz/bl
modules/cut-captcha/example.rst
modules/datadome-captcha/example.rst
modules/cyber-siara-captcha/example.rst
modules/grid/example.rst
modules/draw-around/example.rst
modules/bounding-box/example.rst
modules/coordinates/example.rst
modules/mt-captcha/example.rst
modules/control/example.rst

.. toctree::
Expand Down
12 changes: 12 additions & 0 deletions docs/modules/bounding-box/example.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
BoundingBoxCaptcha
==================

To import this module:

.. code-block:: python
from python_rucaptcha.bounding_box_captcha import BoundingBoxCaptcha
.. autoclass:: python_rucaptcha.bounding_box_captcha.BoundingBoxCaptcha
:members:
12 changes: 12 additions & 0 deletions docs/modules/coordinates/example.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CoordinatesCaptcha
==================

To import this module:

.. code-block:: python

from python_rucaptcha.coordinates_captcha import CoordinatesCaptcha


.. autoclass:: python_rucaptcha.coordinates_captcha.CoordinatesCaptcha
:members:
12 changes: 12 additions & 0 deletions docs/modules/draw-around/example.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
DrawAroundCaptcha
=================

To import this module:

.. code-block:: python
from python_rucaptcha.draw_around_captcha import DrawAroundCaptcha
.. autoclass:: python_rucaptcha.draw_around_captcha.DrawAroundCaptcha
:members:
20 changes: 20 additions & 0 deletions docs/modules/enum/info.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,23 @@ To import this module:
.. autoclass:: python_rucaptcha.core.enums.CyberSiARAEnm
:members:
:undoc-members:

.. autoclass:: python_rucaptcha.core.enums.MTCaptchaEnm
:members:
:undoc-members:

.. autoclass:: python_rucaptcha.core.enums.BoundingBoxCaptchaEnm
:members:
:undoc-members:

.. autoclass:: python_rucaptcha.core.enums.DrawAroundCaptchaEnm
:members:
:undoc-members:

.. autoclass:: python_rucaptcha.core.enums.CoordinatesCaptchaEnm
:members:
:undoc-members:

.. autoclass:: python_rucaptcha.core.enums.GridCaptchaEnm
:members:
:undoc-members:
12 changes: 12 additions & 0 deletions docs/modules/grid/example.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
GridCaptcha
===========

To import this module:

.. code-block:: python

from python_rucaptcha.grid_captcha import GridCaptcha


.. autoclass:: python_rucaptcha.grid_captcha.GridCaptcha
:members:
12 changes: 12 additions & 0 deletions docs/modules/mt-captcha/example.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
MTCaptcha
=========

To import this module:

.. code-block:: python

from python_rucaptcha.mt_captcha import MTCaptcha


.. autoclass:: python_rucaptcha.mt_captcha.MTCaptcha
:members:
Binary file modified files/RuCaptchaHigh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 19 additions & 19 deletions files/drawing.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/examples/bounding_box_start.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/examples/bounding_box_start.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/examples/grid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/python_rucaptcha/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "6.0.3"
__version__ = "6.1"
Loading
Loading