https://github.com/xtekky/zefoy-captcha-solver
Zefoy OCR captcha solver | 99% accurate
https://github.com/xtekky/zefoy-captcha-solver
captcha captcha-solver ocr ocr-python ocr-recognition python python-3 zefoy
Last synced: 5 months ago
JSON representation
Zefoy OCR captcha solver | 99% accurate
- Host: GitHub
- URL: https://github.com/xtekky/zefoy-captcha-solver
- Owner: xtekky
- Created: 2022-06-10T12:17:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-23T18:43:23.000Z (over 3 years ago)
- Last Synced: 2025-08-10T08:37:12.306Z (7 months ago)
- Topics: captcha, captcha-solver, ocr, ocr-python, ocr-recognition, python, python-3, zefoy
- Language: Python
- Homepage: https://t.me/onlpx
- Size: 27.3 KB
- Stars: 34
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```py
json_data = {
"requests": [{
"image": {
"content": "base64 encoded image"
},
"features": [{"type": "TEXT_DETECTION"}]
}]
}
req = requests.post(
url = 'https://content-vision.googleapis.com/v1/images:annotate',
headers = {
'x-origin': 'https://explorer.apis.google.com',
},
params = {
'alt': 'json',
'key': 'AIzaSyAa8yy0GdcGPHdtD083HiGGx_S0vMPScDM',
},
json = json_data
)
print(req.json())
```