-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathasync_grid_base64.py
More file actions
41 lines (30 loc) · 1.13 KB
/
async_grid_base64.py
File metadata and controls
41 lines (30 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import asyncio
import os
import sys
from base64 import b64encode
import aiofiles
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))))
from twocaptcha import AsyncTwoCaptcha
# in this example we store the API key inside environment variables that can be set like:
# export APIKEY_2CAPTCHA=1abc234de56fab7c89012d34e56fa7b8 on Linux or macOS
# set APIKEY_2CAPTCHA=1abc234de56fab7c89012d34e56fa7b8 on Windows
# you can just set the API key directly to it's value like:
# api_key="1abc234de56fab7c89012d34e56fa7b8"
api_key = os.getenv('APIKEY_2CAPTCHA', 'YOUR_API_KEY')
solver = AsyncTwoCaptcha(api_key)
async def solve_captcha():
# Read file and convert to base64
async with aiofiles.open('../images/grid_2.jpg', 'rb') as f:
b64 = b64encode(await f.read()).decode('utf-8')
try:
return await solver.grid(
b64,
hintText='Select all images with an Orange',
rows=3,
cols=3
)
except Exception as e:
sys.exit(e)
if __name__ == '__main__':
result = asyncio.run(solve_captcha())
sys.exit('result: ' + str(result))