This package integrates with Selenium or Playwright to solve any TikTok captcha in one line of code.
Project description
TikTok Captcha Solver API
This project is the SadCaptcha TikTok Captcha Solver API client. The purpose is to make integrating SadCaptcha into your Selenium, Playwright, or Async Playwright app as simple as one line of code.
Instructions for integrating with Selenium, Playwright, and Async Playwright are described below in their respective sections.
Requirements
- Python >= 3.10
- If using Selenium - Selenium properly installed and in
PATH
- If using Playwright - Playwright must be properly installed with
playwright install
Installation
This project can be installed with pip
. Just run the following command:
pip install tiktok-captcha-solver
Selenium Client
Import the package, set up the SeleniumSolver
class, and call it whenever you need.
This turns the entire captcha detection, solution, retry, and verification process into a single line of code.
It is the recommended method if you are using Playwright.
from tiktok_captcha_solver import SeleniumSolver
import undetected_chromedriver as uc
driver = uc.Chrome(headless=False)
api_key = "YOUR_API_KEY_HERE"
sadcaptcha = SeleniumSolver(driver, api_key)
# Selenium code that causes a TikTok captcha...
sadcaptcha.solve_captcha_if_present()
That's it!
Playwright Client
Import the package, set up the PlaywrightSolver
class, and call it whenever you need.
This turns the entire captcha detection, solution, retry, and verification process into a single line of code.
It is the recommended method if you are using playwright.
from tiktok_captcha_solver import PlaywrightSolver
from playwright.sync_api import Page, sync_playwright
api_key = "YOUR_API_KEY_HERE"
with sync_playwright() as p:
browser = p.chromium.launch(headless=False)
page = browser.new_page()
# Playwright code that causes a TikTok captcha...
sadcaptcha = PlaywrightSolver(page, api_key)
sadcaptcha.solve_captcha_if_present()
That's it!
Async Playwright Client
Import the package, set up the AsyncPlaywrightSolver
class, and call it whenever you need.
This turns the entire captcha detection, solution, retry, and verification process into a single line of code.
It is the recommended method if you are using async playwright.
import asyncio
from tiktok_captcha_solver import AsyncPlaywrightSolver
from playwright.async_api import Page, async_playwright
api_key = "YOUR_API_KEY_HERE"
async def main()
async with async_playwright() as p:
browser = await p.chromium.launch(headless=False)
page = await browser.new_page()
# Playwright code that causes a TikTok captcha...
sadcaptcha = AsyncPlaywrightSolver(page, api_key)
await sadcaptcha.solve_captcha_if_present()
asyncio.run(main())
That's it!
API Client
If you are not using Selenium or Playwright, you can still import and use the API client to help you make calls to SadCaptcha
from tiktok_captcha_solver import ApiClient
api_key = "YOUR_API_KEY_HERE"
client = ApiClient(api_key)
# Rotate
res = client.rotate("base64 encoded outer", "base64 encoded inner")
# Puzzle
res = client.puzzle("base64 encoded puzzle", "base64 encoded piece")
# Shapes
res = client.shapes("base64 encoded shapes image")
Contact
- Homepage: https://www.sadcaptcha.com/
- Email: info@toughdata.net
- Telegram @toughdata
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for tiktok_captcha_solver-0.0.8.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68c42b184e99c14afd3504154f1b15e53bc565e03fff4eed5d56aa5acae7b692 |
|
MD5 | 3efb167e39197378623fd32d3076d149 |
|
BLAKE2b-256 | e8ae45627e4b0a669e9fbcaa42ad427ca0b32cba762ab4d503f14029f4467256 |
Hashes for tiktok_captcha_solver-0.0.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb51c1d8a8e52fbeb15ef48ad3774c33a80446b2977fbabd790d100060584409 |
|
MD5 | 3fd3cad95854e197c8dfb296bf9b1939 |
|
BLAKE2b-256 | 94bf32cffc84e865c76538c709b14f5904dfd96d9f3ab0aa1d6e3777ecb36c44 |