Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: 2 months ago
JSON representation

Zefoy OCR captcha solver | 99% accurate

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