An async Python library to automate solving ReCAPTCHA v2 by audio using Playwright.

Overview
PyPI PyPI - Python Version PyPI - License PyPI - Status

Playwright nonoCAPTCHA

An async Python library to automate solving ReCAPTCHA v2 by audio using Playwright.

Disclaimer

This project is for educational and research purposes only. Any actions and/or activities related to the material contained on this GitHub Repository is solely your responsibility. The misuse of the information in this GitHub Repository can result in criminal charges brought against the persons in question. The author will not be held responsible in the event any criminal charges be brought against any individuals misusing the information in this GitHub Repository to break the law.

Compatibility

Linux, macOS, and Windows!

Installation

$ pip install playwright-nonocaptcha

Usage

If you want to use it in your own script

import asyncio
import sys

from playwright_nonocaptcha.solver import Solver

if len(sys.argv) == 4:
     pageurl, sitekey, proxy = sys.argv[1:]
else:
     print('Invalid number of arguments (pageurl, sitekey, proxy)')
     sys.exit(0)

if proxy.lower() == "none":
     proxy = None

client = Solver(pageurl, sitekey, proxy=proxy)
result = asyncio.run(client.start())
if result:
     print(result)
You might also like...
Python binding to Skia Graphics Library

Skia python binding Python binding to Skia Graphics Library. Binding based on pybind11. Currently, the binding is under active development. Install Bi

PIX is an image processing library in JAX, for JAX.
PIX is an image processing library in JAX, for JAX.

PIX PIX is an image processing library in JAX, for JAX. Overview JAX is a library resulting from the union of Autograd and XLA for high-performance ma

impy is an all-in-one image analysis library, equipped with parallel processing, GPU support, GUI based tools and so on.
impy is an all-in-one image analysis library, equipped with parallel processing, GPU support, GUI based tools and so on.

impy is All You Need in Image Analysis impy is an all-in-one image analysis library, equipped with parallel processing, GPU support, GUI based tools a

A tool and a library for SVG path data transformations.

SVG path data transformation toolkit A tool and a library for SVG path data transformations. Currently it supports a translation and a scaling. Usage

A tool to maintain an archive/mirror of your Google Photos library for backup purposes.

Google Photos Archiver Updated Instructions 8/9/2021 Version 2.0.6 Instructions: Download the script (exe or python script listed below) Follow the in

SGTL - Spectral Graph Theory Library

SGTL - Spectral Graph Theory Library SGTL is a python library of spectral graph theory methods. The library is still very new and so there are many fe

A Python3 library to generate dynamic SVGs

The Python library for generating dynamic SVGs using Python3

python binding for libvips using cffi

README PyPI package: https://pypi.python.org/pypi/pyvips conda package: https://anaconda.org/conda-forge/pyvips We have formatted docs online here: ht

Hello, this project is an example of how to generate a QR Code using python 😁

Hello, this project is an example of how to generate a QR Code using python 😁

Comments
  • How to use it on my own code ?

    How to use it on my own code ?

    Hi

    I would like to use this captchas solver on my code but have a problem.

    I wish go to a url and then resolve captcha (using playwright)

    So I had proceed like this:

    with sync_playwright() as p:
    
    browser = p.chromium.launch(headless=False, slow_mo=130)
    
    page = browser.new_page()
    
    page.goto(url)
    
    

    But now, how to use the captchas solver code for resolve ?

    opened by Lomme1020 0
  • Yolov3.weights is inaccessible/unavailable/missing.

    Yolov3.weights is inaccessible/unavailable/missing.

    The site https://mikey.id/yolov3.weights either does not exist, is down, or is inactive. So, the file yolov3.weights is inaccessible and/or unavailable, and without it the module will not run.

    opened by anoduck 5
  • Error when giving pip install

    Error when giving pip install

    Hi! When doing pip install solverecaptchas, gives error. ERROR: Could not find a version that satisfies the requirement solverecaptchas (from versions: none) ERROR: No matching distribution found for solverecaptchas

    Is this lib pip?

    Tks.

    opened by LipeTadeu 7
  • Help me create a custom trained model that supports both 9x and 16x grids

    Help me create a custom trained model that supports both 9x and 16x grids

    For some inspiration, I've trained a custom model that supports 9x that can be found at https://mikey.id/yolov3.weights.

    To fulfill this endeavor will require accumulating enough pictures (at least 2000 per class) from reCAPTCHA that we can easily label and then train.

    opened by embium 1
The friendly PIL fork (Python Imaging Library)

Pillow Python Imaging Library (Fork) Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lund

Pillow 10.4k Dec 31, 2022
Pure Python bindings for the pure C++11/OpenCL Qrack quantum computer simulator library

pyqrack Pure Python bindings for the pure C++11/OpenCL Qrack quantum computer simulator library (PyQrack is just pure Qrack.) IMPORTANT: You must buil

vm6502q 6 Jul 21, 2022
Vignette is a Python library to create and manage thumbnails following the FreeDesktop standard.

Vignette Vignette is a Python library to create and manage thumbnails following the FreeDesktop standard. Thumbnails are stored in a shared directory

null 3 Feb 6, 2022
Python library for ascii graphics

Python library for ascii graphics

Anton 6 Oct 20, 2021
kikuchipy is an open-source Python library for processing and analysis of electron backscatter diffraction (EBSD) patterns

kikuchipy is an open-source Python library for processing and analysis of electron backscatter diffraction (EBSD) patterns. The library builds on the

pyxem 53 Dec 29, 2022
Seaborn-image is a Python image visualization library based on matplotlib and provides a high-level API to draw attractive and informative images quickly and effectively.

seaborn-image: image data visualization Description Seaborn-image is a Python image visualization library based on matplotlib and provides a high-leve

null 48 Jan 5, 2023
starfish is a Python library for processing images of image-based spatial transcriptomics.

starfish: scalable pipelines for image-based transcriptomics starfish is a Python library for processing images of image-based spatial transcriptomics

null 199 Dec 8, 2022
A python based library to help you create unique generative images based on Rarity for your next NFT Project

Generative-NFT Generate Unique Images based on Rarity A python based library to help you create unique generative images based on Rarity for your next

Kartikay Bhutani 8 Sep 21, 2022
A 3D structural engineering finite element library for Python.

An easy to use elastic 3D structural engineering finite element analysis library for Python.

Craig 220 Dec 27, 2022
Alternate Python bindings for the Open Asset Import Library (ASSIMP)

Impasse A simple Python wrapper for assimp using cffi to access the library. Requires Python >= 3.7. It's a fork of PyAssimp, Assimp's official Python

Salad Dais 3 Sep 26, 2022