start your bid with 2Captcha so i know you are not a bot I already have a working Python WebSocket service that streams data in real-time; the only missing piece is automatic ReCaptcha v3 solving. I possess an active 2Captcha API key, so I simply need you to wire their service into my existing flow. Here’s what I expect: when the WebSocket receives a request that includes a site-key and page URL, your code should instantly submit that challenge to 2Captcha, poll for the solution, and push the returned token back through the same open socket without blocking the event loop. I use asyncio under the hood, so the integration must be fully asynchronous and fit cleanly into my current handler structure. Deliverables • A self-contained Python module or function set that handles: task submission, result polling, error handling, and timeout control for ReCaptcha v3 via 2Captcha’s JSON API. • One short example showing how the new coroutine plugs into an existing asyncio WebSocket route. • A brief README or inline docstring outlining required environment variables (only the API key), install commands, and typical response times. Acceptance criteria • Token arrives back to the client over WebSocket within a reasonable window (configurable, default ≤30 s). • No blocking calls; the rest of the service continues streaming while captchas resolve. • Clean, PEP 8-compliant code that I can drop straight into production. If you know your way around asyncio, websockets (I’m using the popular websockets library), and the 2Captcha endpoint, this should be a concise, surgical task. Let me know if anything is unclear and feel free to request a quick look at the current handler before you start.