Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lorien/captcha_solver
Universal python API to captcha solving services
https://github.com/lorien/captcha_solver
antigate api captcha captcha-breaking captcha-image captcha-solving crack-captcha python recaptcha rucaptcha
Last synced: 20 days ago
JSON representation
Universal python API to captcha solving services
- Host: GitHub
- URL: https://github.com/lorien/captcha_solver
- Owner: lorien
- License: mit
- Created: 2015-02-10T07:53:27.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T03:55:24.000Z (over 1 year ago)
- Last Synced: 2024-11-10T02:53:39.109Z (about 1 month ago)
- Topics: antigate, api, captcha, captcha-breaking, captcha-image, captcha-solving, crack-captcha, python, recaptcha, rucaptcha
- Language: Python
- Homepage:
- Size: 90.8 KB
- Stars: 242
- Watchers: 15
- Forks: 39
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-captcha - Captcha_solver - Univeral API do usług rozwiązywania CAPTCHA. (Narzędzia / Chińskie)
README
# Captcha Solver Documentation
[![Test Status](https://github.com/lorien/captcha_solver/actions/workflows/test.yml/badge.svg)](https://github.com/lorien/captcha_solver/actions/workflows/test.yml)
[![Code Quality](https://github.com/lorien/captcha_solver/actions/workflows/check.yml/badge.svg)](https://github.com/lorien/captcha_solver/actions/workflows/test.yml)
[![Type Check](https://github.com/lorien/captcha_solver/actions/workflows/mypy.yml/badge.svg)](https://github.com/lorien/captcha_solver/actions/workflows/mypy.yml)
[![Test Coverage Status](https://coveralls.io/repos/github/lorien/captcha_solver/badge.svg)](https://coveralls.io/github/lorien/captcha_solver)
[![Documentation Status](https://readthedocs.org/projects/captcha_solver/badge/?version=latest)](https://captcha_solver.readthedocs.org)Univeral API to work with captcha solving services.
Feel free to give feedback in Telegram groups: [@grablab](https://t.me/grablab) and [@grablab\_ru](https://t.me/grablab_ru)
## Installation
Run: `pip install -U captcha-solver`
## Twocaptcha Backend Example
Service website is https://2captcha.com?from=3019071
```python
from captcha_solver import CaptchaSolversolver = CaptchaSolver('twocaptcha', api_key='2captcha.com API HERE')
raw_data = open('captcha.png', 'rb').read()
print(solver.solve_captcha(raw_data))
```## Rucaptcha Backend Example
Service website is https://rucaptcha.com?from=3019071
```python
from captcha_solver import CaptchaSolversolver = CaptchaSolver('rucaptcha', api_key='RUCAPTCHA_KEY')
raw_data = open('captcha.png', 'rb').read()
print(solver.solve_captcha(raw_data))
```## Browser Backend Example
```python
from captcha_solver import CaptchaSolversolver = CaptchaSolver('browser')
raw_data = open('captcha.png', 'rb').read()
print(solver.solve_captcha(raw_data))
```## Antigate Backend Example
Service website is http://getcaptchasolution.com/ijykrofoxz
```python
from captcha_solver import CaptchaSolversolver = CaptchaSolver('antigate', api_key='ANTIGATE_KEY')
raw_data = open('captcha.png', 'rb').read()
print(solver.solve_captcha(raw_data))
```