Skip to content
This repository has been archived by the owner on Sep 3, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (19 loc) · 508 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 508 Bytes

SDC Captcha Solver

Library to solve SD.C captchas using OCR.

Example usage

const solve = require("sdc-captcha-solver");

const url = "", // Url to SD.C captcha
    apikey = ""; // Your API key on ocr.space

solve(url, apikey)
    .then(r => {
        console.log(r)
    });

Install

$ npm i sdc-captcha-solver

Special thanks to

@D3rise | Idea: rewrite script to a library
@vladciphersky | Whole project idea