Library to solve SD.C captchas using OCR.
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)
});
$ npm i sdc-captcha-solver
@D3rise | Idea: rewrite script to a library
@vladciphersky | Whole project idea