Skip to content

Commit

Permalink
Merge pull request #197 from AndreiDrang/master
Browse files Browse the repository at this point in the history
6.1
  • Loading branch information
AndreiDrang authored Dec 13, 2023
2 parents a9eb8fa + ff786c5 commit b593608
Show file tree
Hide file tree
Showing 40 changed files with 2,198 additions and 72 deletions.
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

0 comments on commit b593608

Please sign in to comment.