Metadata-Version: 2.4
Name: cricket-client
Version: 0.1.0
Summary: Python client for Cricket Protocol — DeFi intelligence and execution suite
Project-URL: Homepage, https://github.com/VYLTH/cricket
Project-URL: Repository, https://github.com/VYLTH/cricket
Author: VYLTH
License-Expression: MIT
Keywords: api-client,cricket,defi,solana,web3
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.0.0
Description-Content-Type: text/markdown

# cricket-client

Python client for [Cricket Protocol](https://github.com/VYLTH/cricket) — DeFi intelligence and execution suite.

## Install

```bash
pip install cricket-client
```

## Usage

```python
import asyncio
from cricket_client import CricketClient

async def main():
    async with CricketClient(api_key="your-api-key") as client:
        # Price feeds
        quotes = await client.pulse.get_price("SOL")

        # Rug-pull scanning
        scan = await client.mantis.scan("token-address")

        # Wallet intelligence
        profile = await client.firefly.get_wallet("wallet-address")

        # Smart contract analysis
        result = await client.debugger.analyze(source_code, "solidity")

asyncio.run(main())
```

## Modules

- **Pulse** — unified price feeds across CEX and DEX venues
- **Mantis** — rug-pull detection and token risk scoring
- **Firefly** — wallet intelligence and smart money signals
- **Chirps** — notification channel management
- **Debugger** — smart contract vulnerability scanning
