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

DedInc/vk_captchasolver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)