A Python library for getting rid of various types of tasks using the Solvium API.
- Async/Sync Support: Choose between asynchronous and synchronous methods
- Multiple Captcha Types: Support for Turnstile, reCAPTCHA v3, Cloudflare, Vercel, and more...
- Proxy Support: Built-in proxy support for API calls
- Comprehensive Logging: Detailed logging with loguru
- Type Safety: Full type hints for better development experience
- Timeout Control: Configurable timeout settings
- Error Handling: Robust error handling with meaningful error messages
pip install solviumfrom solvium import Solvium
# Initialize the client and paste your API key from https://t.me/solvium_crypto_bot
client = Solvium(api_key="your_api_key_here")
# Solve a Turnstile captcha
solution = client.turnstile_sync(
sitekey="0x4AAAAAAAGm-M_XhkhrEEFd",
pageurl="https://example.com"
)
if solution:
print(f"Captcha solved: {solution}")
else:
print("Failed to solve captcha")import asyncio
from solvium import Solvium
async def solve_captcha():
# Initialize the client and paste your API key from https://t.me/solvium_crypto_bot
client = Solvium(api_key="your_api_key_here")
# Solve a Turnstile captcha
solution = await client.turnstile(
sitekey="0x4AAAAAAAGm-M_XhkhrEEFd",
pageurl="https://example.com"
)
if solution:
print(f"Captcha solved: {solution}")
else:
print("Failed to solve captcha")
# Run the async function
asyncio.run(solve_captcha())client = Solvium(
api_key="your_api_key_here", # Required: Your Solvium API key
api_proxy="http://user:password@proxy:port", # Optional: Proxy for API calls
api_base_url="https://captcha.solvium.io/api/v1", # Optional: Custom API URL
timeout=120, # Optional: Timeout in seconds (default: 120)
verbose=True # Optional: Enable detailed logging (default: False)
)For more details on available methods, refer to the Solvium Documentation.
- Python 3.8+
- httpx
- loguru
- Open Solvium | Cracker
- Press the
Startbutton - Copy your API key
- Use it in your Solvium client initialization
This project is licensed under the Apache License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.