Специалист python для обхода Cloudflare Turnstile с помощью 2captcha
В описании есть код, который сталкивается с каптчей Cloudflare Turnstile (если не можете отловить - просто много раз перезагружайте страницу с логином, через некоторое количество попыток каптча появится)
Задача состоит в том, чтобы внедрить сервис 2captcha (https://2captcha.com/ru/enterpage) в данный код.
Даже есть статья как это сделать (https://2captcha.com/ru/blog/obhod-kapchi-turnstile-challenge-na-python) и дополнительно статья (https://2captcha.com/blog/bypass-cloudflare-turnstile-captcha)
ВАЖНО: нельзя пользоваться браузерным расширением и код должен работать как на windows так и на linux (Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/123.0.0.0 Safari/537.36)
Исполнителю дам API ключ от аккаунта (но при регистрации там дают немного бесплатных попыток, так что можно попробовать самостоятельно)
Можно использовать API запросы нативно или же воспользоваться официальной библиотекой https://pypi.org/project/2captcha-python/
ПРИМЕЧАНИЕ: не предлагайте использовать undetected-chromedriver или seleniumbase, я уже это использую и там тоже иногда появляется каптча, в примере ниже я использую обычный selenium только для того чтобы 100% поймать каптчу
____________________________________________________________________
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver import ChromeOptions
from selenium.webdriver import Chrome
options = ChromeOptions()
options.add_argument("--disable-gpu")
options.add_argument("--no-sandbox")
options.add_argument("--disable-dev-shm-usage")
options.add_argument("--disable-save-password-bubble")
options.add_experimental_option('prefs', {
'credentials_enable_service': False,
'profile': {
'password_manager_enabled': False
},
'translate': {
'enabled': False
}
})
service = Service(ChromeDriverManager().install())
driver = Chrome(
options=options,
service=service,
)
url = "https://www.upwork.com/ab/account-security/login"
driver.get(url)
time.sleep(1)
driver.refresh()
time.sleep(30)
driver.quit()
Current freelance projects in the category Python
Create a bot in Telegram (seller's cabinet)
16 USD
Hello everyone I need a user personal account in the format of a bot in Telegram After launching and completing the survey, a personal account is created for the user (which allows them to access the system for further buttons) so that each registered user is displayed in a… Python, Bot Development ∙ 10 hours 30 minutes back ∙ 81 proposals |
Find a product feed (Google Merchant XML) for a website on OpenCart
16 USD
It is necessary to find a direct link to the active product feed (XML) of a competitor for Google Merchant Center Platform (CMS): OpenCart / ocStore Find the original feedRequirements for the result: Working link to the XML file Python, Data Parsing ∙ 20 hours 34 minutes back ∙ 19 proposals |
Development of a TikTok farm (content factory)It is necessary to develop a system for centralized management of multiple TikTok accounts with automatic content publishing, using individual proxies and simulating natural account activity. Functional Requirements1. Account Management Adding and removing TikTok accounts.… Python, Bot Development ∙ 1 day 8 hours back ∙ 16 proposals |
Improve the performance of Claude Code and work on software development.I am currently developing CRM and Analytics software. I am using Claude Code, but I understand that the results are not the best in terms of changes. There are 2 tasks - Need help creating a preset for skills, MD, and so on to improve quality. Take verified ones that have been… AI & Machine Learning, Python ∙ 1 day 14 hours back ∙ 22 proposals |
OCR systemA system for recognizing text on postal envelopes (index for whom - only numbers). The text can sometimes be handwritten. Recognition of stamps (counting quantity and denomination) Python ∙ 1 day 17 hours back ∙ 25 proposals |