59 lines
2.9 KiB
Markdown
59 lines
2.9 KiB
Markdown
# Introduction
|
|
|
|
## Welcome to python3-anticaptcha
|
|
|
|
![](../../_static/AntiCaptcha.png)
|
|
|
|
### [Capsolver](https://www.capsolver.com/?utm_source=github&utm_medium=repo&utm_campaign=scraping&utm_term=python3-anticaptcha)
|
|
|
|
[![Capsolver](../../_static/capsolver.png)](https://www.capsolver.com/?utm_source=github&utm_medium=repo&utm_campaign=scraping&utm_term=python3-anticaptcha)
|
|
|
|
<hr>
|
|
|
|
[![PyPI version](https://badge.fury.io/py/python3-anticaptcha.svg)](https://badge.fury.io/py/python3-anticaptcha)
|
|
[![Python versions](https://img.shields.io/pypi/pyversions/python3-anticaptcha.svg?logo=python&logoColor=FBE072)](https://badge.fury.io/py/python3-anticaptcha)
|
|
[![Downloads](https://pepy.tech/badge/python3-anticaptcha/month)](https://pepy.tech/project/python3-anticaptcha)
|
|
|
|
[![Code Climate](https://codeclimate.com/github/AndreiDrang/python3-anticaptcha/badges/gpa.svg)](https://codeclimate.com/github/AndreiDrang/python3-anticaptcha)
|
|
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7f49780f2edb48d4b133833887c850e8)](https://www.codacy.com/gh/AndreiDrang/python3-anticaptcha/dashboard?utm_source=github.com&utm_medium=referral&utm_content=AndreiDrang/python3-anticaptcha&utm_campaign=Badge_Grade)
|
|
[![codecov](https://codecov.io/gh/AndreiDrang/python3-anticaptcha/branch/main/graph/badge.svg?token=W92nfZY6Tz)](https://codecov.io/gh/AndreiDrang/python3-anticaptcha)
|
|
|
|
[![Building](https://github.com/AndreiDrang/python3-anticaptcha/actions/workflows/build.yml/badge.svg)](https://github.com/AndreiDrang/python3-anticaptcha/actions/workflows/build.yml)
|
|
[![Installation check](https://github.com/AndreiDrang/python3-anticaptcha/actions/workflows/install.yml/badge.svg?branch=main)](https://github.com/AndreiDrang/python3-anticaptcha/actions/workflows/install.yml)
|
|
[![Test](https://github.com/AndreiDrang/python3-anticaptcha/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/AndreiDrang/python3-anticaptcha/actions/workflows/test.yml)
|
|
[![Lint](https://github.com/AndreiDrang/python3-anticaptcha/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/AndreiDrang/python3-anticaptcha/actions/workflows/lint.yml)
|
|
|
|
|
|
Python 3 library for [AntiCaptcha](https://anti-captcha.com/) service API.
|
|
|
|
Tested on UNIX based OS.
|
|
|
|
The library is intended for software developers and is used to work with the [AntiCaptcha](https://anti-captcha.com/) service API.
|
|
|
|
***
|
|
|
|
You can check our other projects here - [RedPandaDev group](https://red-panda-dev.xyz/blog/).
|
|
|
|
***
|
|
## How to install?
|
|
|
|
We recommend using the latest version of Python. `python3-anticaptcha` supports Python 3.7+.
|
|
|
|
### pip
|
|
|
|
```bash
|
|
pip install python3-anticaptcha
|
|
```
|
|
|
|
### Source
|
|
```bash
|
|
git clone https://github.com/AndreiDrang/python3-anticaptcha.git
|
|
cd python3-anticaptcha
|
|
python setup.py install
|
|
```
|
|
|
|
## How to test?
|
|
|
|
1. You need set ``API_KEY`` in your environment(get this value from you account).
|
|
2. Run command ``make tests``, from root directory.
|