Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/xtekky/zefoy-captcha-solver
- Owner: xtekky
- Created: 2022-06-10T12:17:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-23T18:43:23.000Z (over 2 years ago)
- Last Synced: 2023-03-04T02:08:30.256Z (almost 2 years ago)
- Topics: captcha, captcha-solver, ocr, ocr-python, ocr-recognition, python, python-3, zefoy
- Language: Python
- Homepage: https://discord.gg/onlp
- Size: 27.3 KB
- Stars: 15
- Watchers: 1
- Forks: 5
- 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())
```