devion-sdk


Namedevion-sdk JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummaryPython SDK for Devion blockchain RPC proxy platform
upload_time2025-07-23 10:51:11
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords blockchain ethereum web3 rpc api cryptocurrency
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "devion-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "blockchain, ethereum, web3, rpc, api, cryptocurrency",
    "author": null,
    "author_email": "\"Devion.dev\" <support@devion.dev>",
    "download_url": "https://files.pythonhosted.org/packages/62/0e/a1e059158ad978ffa7075683107bd60c2322b37a87e1a25f30bdc14e903e/devion_sdk-1.0.0.tar.gz",
    "platform": null,
    "description": "# Devion Python SDK\n\nPython SDK for the Devion blockchain RPC proxy platform.\n\n## Installation\n\n```bash\npip install devion-sdk\n```\n\n## Quick Start\n\n```python\nfrom devion_sdk import DevionSDK\n\n# Initialize the SDK\ndevion = DevionSDK(api_key=\"your-api-key-here\", network=\"ethereum\")\n\n# Get account balance\nbalance = devion.get_balance(\"0x742d35Cc6635C0532925a3b8D007EbA3fFC2C5DD\", formatted=True)\nprint(f\"Balance: {balance} ETH\")\n\n# Get current block number\nblock_number = devion.get_block_number()\nprint(f\"Current block: {block_number}\")\n```\n\n## Features\n\n- Multi-chain support (Ethereum, Polygon, BSC, Arbitrum, etc.)\n- Type safety with full type hints\n- Comprehensive error handling\n- Rate limiting and retry logic\n- Context manager support\n\n## Documentation\n\nFor full documentation, visit [docs.devion.dev](https://docs.devion.dev)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python SDK for Devion blockchain RPC proxy platform",
    "version": "1.0.0",
    "project_urls": null,
    "split_keywords": [
        "blockchain",
        " ethereum",
        " web3",
        " rpc",
        " api",
        " cryptocurrency"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec0214cb26bc83a4f4bcb099fae1b9bce15f8e38b7a29d9c64d620966f19872b",
                "md5": "7f3661ec31aaebe02be2d781b1ef3330",
                "sha256": "0f4405102c8b1f62d60a77b552a94acd396c9a90093d9ddb3b48c7f8f317707d"
            },
            "downloads": -1,
            "filename": "devion_sdk-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7f3661ec31aaebe02be2d781b1ef3330",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 1875,
            "upload_time": "2025-07-23T10:51:10",
            "upload_time_iso_8601": "2025-07-23T10:51:10.464474Z",
            "url": "https://files.pythonhosted.org/packages/ec/02/14cb26bc83a4f4bcb099fae1b9bce15f8e38b7a29d9c64d620966f19872b/devion_sdk-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "620ea1e059158ad978ffa7075683107bd60c2322b37a87e1a25f30bdc14e903e",
                "md5": "73e9d954d9adb00d3857a4659866900f",
                "sha256": "96cc7f165df3d77a47fd13eadae85668907feeffa9cbdee844a4b748af1f374c"
            },
            "downloads": -1,
            "filename": "devion_sdk-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "73e9d954d9adb00d3857a4659866900f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1957,
            "upload_time": "2025-07-23T10:51:11",
            "upload_time_iso_8601": "2025-07-23T10:51:11.706541Z",
            "url": "https://files.pythonhosted.org/packages/62/0e/a1e059158ad978ffa7075683107bd60c2322b37a87e1a25f30bdc14e903e/devion_sdk-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-23 10:51:11",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "devion-sdk"
}
        
Elapsed time: 1.46083s