gitextract_y3t50or2/ ├── .bumpversion.cfg ├── .flake8 ├── .github/ │ └── workflows/ │ ├── check.yml │ ├── mypy.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── captcha_solver/ │ ├── __init__.py │ ├── backend/ │ │ ├── __init__.py │ │ ├── antigate.py │ │ ├── base.py │ │ ├── browser.py │ │ ├── rucaptcha.py │ │ └── twocaptcha.py │ ├── error.py │ ├── network.py │ ├── solver.py │ └── types.py ├── pyproject.toml ├── requirements_dev.txt ├── tests/ │ ├── __init__.py │ ├── test_browser.py │ └── test_solver.py └── tox.ini