Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/sync_funcaptcha_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os import environ

import requests
from six.moves.urllib import parse
from urllib import parse

from python_anticaptcha import AnticaptchaClient, FunCaptchaTask

Expand Down
4 changes: 2 additions & 2 deletions examples/sync_funcaptcha_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from random import choice

from selenium.webdriver.common.by import By
from six.moves.urllib import parse
from six.moves.urllib.parse import quote
from urllib import parse
from urllib.parse import quote

from python_anticaptcha import AnticaptchaClient, FunCaptchaTask

Expand Down
2 changes: 1 addition & 1 deletion examples/sync_funcaptcha_selenium_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from os import environ

from selenium.webdriver.common.by import By
from six.moves.urllib.parse import quote
from urllib.parse import quote

from python_anticaptcha import AnticaptchaClient, FunCaptchaProxylessTask

Expand Down
2 changes: 1 addition & 1 deletion examples/sync_hcaptcha_request_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os import environ

import requests
from six.moves.urllib import parse
from urllib import parse

from python_anticaptcha import AnticaptchaClient, HCaptchaTask

Expand Down
2 changes: 1 addition & 1 deletion examples/sync_recaptcha3_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os import environ

import requests
from six.moves.urllib_parse import urljoin
from urllib.parse import urljoin

from python_anticaptcha import AnticaptchaClient, RecaptchaV3TaskProxyless

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Homepage = "https://github.com/ad-m/python-anticaptcha"

[project.optional-dependencies]
async = ["httpx>=0.24"]
tests = ["pytest", "pytest-asyncio", "httpx>=0.24", "retry", "selenium", "six"]
tests = ["pytest", "pytest-asyncio", "httpx>=0.24", "retry", "selenium"]
docs = ["sphinx", "sphinx-rtd-theme"]

[tool.setuptools.package-data]
Expand Down
Loading