You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 5, 2021. It is now read-only.
Library won't receive further updates starting 1 january 2021, because python2.7 reached it's [end of life](https://www.python.org/doc/sunset-python-2/).
8
8
9
-
## Usage
10
-
11
-
Simply require the module, set the auth details and start using the captcha service:
12
-
13
-
```python
14
-
from imagetyperzapi2.imagetyperzapi import ImageTyperzAPI
15
-
```
16
-
Set access_token for authentication:
17
-
18
-
```python
19
-
access_token ='access_token_here'
20
-
# get access token from: http://www.imagetyperz.com/Forms/ClientHome.aspx
21
-
ita = ImageTyperzAPI(access_token) # init imagetyperz api obj
22
-
```
23
-
Once you've set your authentication details, you can start using the API.
24
-
25
-
**Get balance**
26
-
27
-
```python
28
-
balance = ita.account_balance() # get account balance
The constructor accepts a 2nd parameter, as the affiliate id.
197
-
```python
198
-
ita = ImageTyperzAPI(access_token, 123) # 123 is the affid
199
-
```
200
-
201
-
**Requests timeout**
202
-
203
-
As a 3rd parameter in the constructor, you can specify a timeout for the requests (in seconds)
204
-
```python
205
-
ita = ImageTyperzAPI(access_token, 123, 60) # sets timeout to 60 seconds
206
-
```
207
-
208
-
**Set captcha bad**
209
-
210
-
When a captcha was solved wrong by our workers, you can notify the server with it's ID,
211
-
so we know something went wrong.
212
-
213
-
```python
214
-
ita.set_captcha_bad(captcha_id)
215
-
```
216
-
217
-
## Examples
218
-
Check root folder for examples, for each type of captcha.
219
-
220
-
## License
221
-
API library is licensed under the MIT License
222
-
223
-
## More information
224
-
More details about the server-side API can be found [here](http://imagetyperz.com)
9
+
From now on use the library for python3, which includes our latest updates (including reCAPTCHA enterprise) and can be found here: [imagetyperz-api-python3](https://github.com/imagetyperz-api/imagetyperz-api-python3)
0 commit comments