Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dedinc/vk_captchasolver

VKontakte captcha solver with pseudoCRNN model running as a python module
https://github.com/dedinc/vk_captchasolver

captcha captcha-recognition captcha-solving crnn keras onnx python vkontakte

Last synced: 3 days ago
JSON representation

VKontakte captcha solver with pseudoCRNN model running as a python module

Awesome Lists containing this project

README

        

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-

```python
import vk_captchasolver as vc

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

-Solve by sid and s-

```python
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)
```