Skip to content

deekay1712/vtop-captcha-crack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VTOP Captcha Crack

This is a simple pip package to crack VTOP captchas. It is kept simple and fast. To use it, you have to simply download the captcha image and pass it's path to the package.

Instructions

  1. Install:
pip install captcha-crack
  1. Get the captcha:
from captcha_crack import vtop

# initialise the load object
load = vtop.Load()
# you can use the relative path too
captchaPath = 'C:/Users/Alien/Desktop/Test/Captcha.png'
# the fucntion get_captcha_text(captchaPath) will return the text of the captcha
captchaText = load.get_captcha_text(captchaPath)

print(captchaText)
  1. You're good to go! 🚀