No project description provided
Project description
- AI captcha solver adapter
Requirements
Python3.3 - python3.10
Python 3.10 is not supported yet because
onnxruntime
is not supporting python3.10
UPDATE: Python3.10 is supported
Installation
pip install captcha-solve-adapter
from captcha_solve_adapter import CaptchaSolver
solver = CaptchaSolver(
logging=False, # if need to print the log
img_width=300, # img_width
img_height=40, # img height
max_length=10, # max captcha length
characters=['a','b','c','d'], # captcha characters used in training model
model_fname='Path/to/the/model.onnx'
) # this login will create captcha
def solve_captcha(url: str):
result, accur = solver.solve(url=url)
return accur
def solve_from_bytes(b: bytes):
result, accur = solver.solve(bytes_data=b)
return accur
def solve_frmo_file(file: str):
with open(file, 'rb') as f:
b = f.read()
return solve_from_bytes(b)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file captcha_solve_adapter-1.0.tar.gz
.
File metadata
- Download URL: captcha_solve_adapter-1.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e6f10b23b60d41bf76b49a1269f5dcf0791b2665bc2c74be226d2a690fd7a54 |
|
MD5 | 66374cc61b57dec35e16ff04a3a17b31 |
|
BLAKE2b-256 | 8c516ad2009a419fabfefc7e9e5517c953e98c0f57b0347d55da21ff12030464 |
File details
Details for the file captcha_solve_adapter-1.0-py3-none-any.whl
.
File metadata
- Download URL: captcha_solve_adapter-1.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51370ce306a2a85bcfbbbc7ec6b6d2d08c425c94bbc6128aaaf3dfb5794132e1 |
|
MD5 | 9f7838185fb9d4b280cbc3d2a21c797b |
|
BLAKE2b-256 | c87632586b76ae50f20c05dcb6fafe5ea81f75c9e50ba25a66fc4f2af507aaf7 |