Metadata-Version: 2.4
Name: stralixsdk
Version: 1.1.5
Summary: Official Python SDK for Stralix Cloud SCNAC API
Home-page: https://stralix.cloud
Author: Stralix Cloud
Author-email: support@stralix.cloud
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# StralixSDK

Official Python SDK for interacting with the Stralix Cloud SCNAC API.

## Installation

```bash
pip install stralixsdk
```

## Usage

```python
from stralixsdk import StralixClient

# Initialize the client
client = StralixClient(api_key="YOUR_API_KEY", base_url="https://sc01.stralix.cloud")

# Get blockchain info
info = client.get_info("LTC")
print(info)

# Get block count
count = client.get_block_count("LTC")
print(f"Current block height: {count}")
```

## Features

- Easy access to SCNAC API endpoints (v1)
- Simple Pythonic interface
- Automatic error handling
