Metadata-Version: 2.4
Name: xcelerate
Version: 0.1.2
Summary: A high-performance, lightweight Chrome DevTools Protocol (CDP) client with built-in stealth.
Author: AzzoDude
License: MIT
Project-URL: Homepage, https://github.com/AzzoDude/xcelerate
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Rust
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Description-Content-Type: text/markdown

# Xcelerate Python SDK

A high-performance, lightweight Chrome DevTools Protocol (CDP) client for Python, designed for speed and stealth.

## Features

- **Blazing Fast**: Direct CDP communication over WebSockets.
- **Stealth by Design**: Built-in anti-bot protection and binary patching.
- **Universal**: Native bindings for high performance.
- **Async/Await**: Full support for Python's asyncio.

## Installation

```bash
pip install xcelerate
```

## Quick Start

```python
import asyncio
from xcelerate import Browser, BrowserConfig

async def main():
    # Launch browser with stealth enabled
    config = BrowserConfig(headless=True, stealth=True)
    browser = await Browser.launch(config)
    
    # Create a new page
    page = await browser.new_page("https://pixelscan.net/")
    
    # Interact with the page
    print(f"Title: {await page.title()}")
    
    # Take a screenshot
    screenshot = await page.screenshot_full()
    with open("result.png", "wb") as f:
        f.write(screenshot)
    
    await browser.close()

if __name__ == "__main__":
    asyncio.run(main())
```

## License

MIT
