A high-performance, stealth-oriented browser orchestration layer designed for the CamouChat ecosystem. Built on top of Camoufox, it provides advanced anti-detection capabilities, hardware-level fingerprint spoofing, and robust session management.
- Advanced Stealth: Powered by Camoufox for industry-leading anti-bot bypass.
- Fingerprint Spoofing: Deep integration with
browserforgefor authentic hardware and software headers. - Session Isolation: Automated profile management with persistent storage for cookies and local data.
- GeoIP & Proxy Ready: Built-in support for residential proxies and automated GeoIP matching.
- Humanized Interaction: Smooth mouse movements and typing patterns to maintain high stealth scores.
- Async-First Architecture: All blocking I/O is wrapped in
asyncio.to_thread— zero event-loop blocking. - Python 3.11+: Compatible with Python 3.11, 3.12, 3.13, and 3.14.
Add to your project using uv:
uv add camouchat-browserOr with pip:
pip install camouchat-browserAfter installing, fetch the Camoufox browser binary:
camoufox fetchfrom camouchat_browser import BrowserConfig, CamoufoxBrowser, ProfileManager
from camouchat_core import Platform
# 1. Setup Configuration
config = BrowserConfig.from_dict({
"platform": Platform.WHATSAPP,
"headless": False,
"locale": "en-US",
# fingerprint=None → BrowserForge auto-generates one
})
# 2. Manage Profiles
pm = ProfileManager(platform=Platform.WHATSAPP)
profile = pm.get_profile(platform=Platform.WHATSAPP, profile_id="stealth_user_1")
# 3. Launch Browser
browser = CamoufoxBrowser(config=config, profile=profile)
page = await browser.get_page()
await page.goto("https://check.camoufox.com")- Browser Configuration — Finetuning stealth settings.
- Browser Engine — Deep dive into Camoufox integration.
- Profile Management — Managing sandboxes and encryption.
- Fingerprinting — Hardware-level spoofing logic.
- CHANGELOG — Full release history.
- 🐳 Docker Containerization: Full headless Docker image with Xvfb, Camoufox binaries, and proxy-routing pre-configured out of the box (Targeting v0.8.0).
CamouChat's strict policy regarding acceptable automation, anti-spam, and stealth disclaimers can be found in our central ecosystem hub:
MIT License. See LICENSE for details.