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

Latest commit

 

History

History
24 lines (16 loc) · 661 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 661 Bytes

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)