Metadata-Version: 2.3
Name: deltadefi
Version: 0.0.4
Summary: Python SDK for DeltaDeFi protocol.
License: Apache-2.0
Keywords: cardano
Author: HinsonSIDAN
Author-email: wongkahinhinson@gmail.com
Requires-Python: >3.11,<4.0.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: certifi (==2024.8.30)
Requires-Dist: charset-normalizer (==3.4.0)
Requires-Dist: idna (==3.10)
Requires-Dist: pycardano (>=0.12.3,<0.13.0)
Requires-Dist: requests (>=2.25,<3.0)
Requires-Dist: sidan-gin (==0.1.1)
Requires-Dist: urllib3 (==2.2.3)
Project-URL: Documentation, https://github.com/deltadefi-protocol/python-sdk
Project-URL: Homepage, https://github.com/deltadefi-protocol/python-sdk
Description-Content-Type: text/markdown

# DeltaDeFi Python SDK

The DeltaDeFi Python SDK provides a convenient way to interact with the DeltaDeFi API. This SDK allows developers to easily integrate DeltaDeFi's features into their Python applications.

## Installation

To install the SDK, use `pip`:

```sh
pip install deltadefi
```

## Requirements

- Python 3.11 or higher

## Usage

### Initialization

To use the SDK, you need to initialize the ApiClient with your API configuration and wallet.

```python
from deltadefi.clients import ApiClient
from sidan_gin import HDWallet

# Initialize API configuration
network="preprod",
api_key="your_api_key",

# Initialize HDWallet
wallet = HDWallet("your_wallet_mnemonic")

# Initialize ApiClient
api = ApiClient(network=network, api_key=api_key, wallet=wallet)
```

### Accounts

The Accounts client allows you to interact with account-related endpoints.

```python
# Get account balance
account_balance = api.accounts.get_account_balance()
print(account_balance)
```

### Market

The Market client allows you to interact with market-related endpoints.

```python
# Get market depth
market_depth = api.market.get_depth("ADAUSDX")
print(market_depth_response)

# Get market price
market_price_response = api.market.get_market_price("ADAUSDX")
print(market_price_response)
```

### Order

The Order client allows you to interact with order-related endpoints.

```python
# Build place order transaction
place_order_request = BuildPlaceOrderTransactionRequest(pair="BTC/USD", amount=1, price=50000)
place_order_response = api.order.build_place_order_transaction(symbol="ADAUSDX", amount=50, price=0.75, type="limit")
print(place_order_response)

# Submit place order transaction
submit_order_response = api.order.submit_place_order_transaction(signed_tx="<signed_tx>", order_id="<order_id>")
print(submit_order_response)
```

## License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0>

