Metadata-Version: 2.4
Name: rhyolite-open-commerce-sdk
Version: 0.0.3
Summary: A Python SDK for Rhyolite Open Commerce API.
Author-email: Code Chef <admin@rhyoliteprime.com>
Project-URL: Homepage, https://github.com/kayaddo3/open-commerce-python-sdk
Project-URL: Bug Tracker, https://github.com/kayaddo3/open-commerce-python-sdk/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.20.0
Requires-Dist: pydantic>=2.0

# Rhyolite Open Commerce Python SDK

A Python SDK for the Rhyolite Open Commerce API.

## Installation

```bash
pip install rhyolite-open-commerce-sdk
```

## Usage

```python
from rhyolite_open_commerce_sdk import RhyoliteOpenCommerce

# Initialize the client with your credentials
client = RhyoliteOpenCommerce(
    account_id="YOUR_ACCOUNT_ID",
    account_secret="YOUR_ACCOUNT_SECRET"
)

# Get categories
try:
    categories = client.get_categories(page_no=1, page_size=10)
    print(categories)
except Exception as e:
    print(f"An error occurred: {e}")

```
