DedInc / vk_captchasolver

VKontakte captcha solver with pseudoCRNN model running as a python module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vk_captchasolver - VKontakte captcha solver with 91% accuracy right.

This model, which solves vkontakte captchas, was taken from Defasium's repository

-How to use?-

-Solve by image-

import vk_captchasolver as vc

captcha = vc.solve(image='captcha.png')
print(captcha)

-Solve by sid and s-

import vk_captchasolver as vc

captcha = vc.solve(sid=74838345480543, s=1) #Solve by sid and s
captcha = vc.solve(sid=74838345480543) #Solve by sid only
print(captcha)

About

VKontakte captcha solver with pseudoCRNN model running as a python module

License:MIT License


Languages

Language:Python 100.0%