Introduction
Python API integration library for Cap CAPTCHA server
Installing from PyPI
To install for current user:
pip3 install cap-server-api
To install system-wide (this may be required in some cases):
sudo pip3 install cap-server-api
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .env/bin/activate
pip3 install cap-server-api
Usage Example
from cap_server_api import Server
server = Server("[serverDomain]", "[apiKey]")
print(server.about)
Documentation
API documentation for this library can be found on Read the Docs.
Contributing
Contributions are welcome!
Table of Contents
Examples
API Reference
Other Links