Metadata-Version: 2.4
Name: devion-sdk
Version: 1.0.0
Summary: Python SDK for Devion blockchain RPC proxy platform
Author-email: "Devion.dev" <support@devion.dev>
License: MIT
Keywords: blockchain,ethereum,web3,rpc,api,cryptocurrency
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0

# Devion Python SDK

Python SDK for the Devion blockchain RPC proxy platform.

## Installation

```bash
pip install devion-sdk
```

## Quick Start

```python
from devion_sdk import DevionSDK

# Initialize the SDK
devion = DevionSDK(api_key="your-api-key-here", network="ethereum")

# Get account balance
balance = devion.get_balance("0x742d35Cc6635C0532925a3b8D007EbA3fFC2C5DD", formatted=True)
print(f"Balance: {balance} ETH")

# Get current block number
block_number = devion.get_block_number()
print(f"Current block: {block_number}")
```

## Features

- Multi-chain support (Ethereum, Polygon, BSC, Arbitrum, etc.)
- Type safety with full type hints
- Comprehensive error handling
- Rate limiting and retry logic
- Context manager support

## Documentation

For full documentation, visit [docs.devion.dev](https://docs.devion.dev)
