upd docs
This commit is contained in:
parent
a24a8f3eb7
commit
5af4f8fd38
|
@ -12,7 +12,7 @@ sys.path.insert(0, os.path.abspath("src/"))
|
|||
for x in os.walk("src/python3_anticaptcha/"):
|
||||
sys.path.insert(0, x[0])
|
||||
|
||||
from python3_anticaptcha import core, control, turnstile
|
||||
from python3_anticaptcha import core, control, turnstile, image_captcha
|
||||
from python3_anticaptcha.__version__ import __version__
|
||||
|
||||
# -- Project information -----------------------------------------------------
|
||||
|
|
|
@ -31,3 +31,7 @@ To import this module:
|
|||
.. autoclass:: core.enum.ControlPostfixEnm
|
||||
:members:
|
||||
:undoc-members:
|
||||
|
||||
.. autoclass:: core.enum.SaveFormatsEnm
|
||||
:members:
|
||||
:undoc-members:
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
ImageToTextCaptcha
|
||||
==================
|
||||
|
||||
To import this module:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
from python3_anticaptcha.image_captcha import ImageToTextCaptcha
|
||||
|
||||
|
||||
.. autoclass:: python3_anticaptcha.image_captcha.ImageToTextCaptcha
|
||||
:members:
|
Loading…
Reference in New Issue