Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dedinc/vk_captchasolver
- Owner: DedInc
- License: mit
- Archived: true
- Created: 2021-08-03T05:03:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-10T03:12:48.000Z (over 2 years ago)
- Last Synced: 2025-01-17T06:49:11.387Z (7 days ago)
- Topics: captcha, captcha-recognition, captcha-solving, crnn, keras, onnx, python, vkontakte
- Language: Python
- Homepage:
- Size: 946 KB
- Stars: 41
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 vccaptcha = vc.solve(image='captcha.png')
print(captcha)
```-Solve by sid and s-
```python
import vk_captchasolver as vccaptcha = vc.solve(sid=74838345480543, s=1) #Solve by sid and s
captcha = vc.solve(sid=74838345480543) #Solve by sid only
print(captcha)
```