Metadata-Version: 2.1
Name: abantether-python-sdk
Version: 0.1.4
Summary: Add your description here
Home-page: https://github.com/Abantether-com/abantether-python-sdk/
Download-URL: https://github.com/imanmousaei/coinexpy/archive/refs/tags/v0.1.4.tar.gz
Author: AbanTether
Author-email: tech@abantether.com
License: MIT
Keywords: abantether,sdk,python,api,exchange,wrapper,trade,crypto,bitcoin
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
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
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: flake8>=7.1.1
Requires-Dist: pytest-cov>=6.0.0
Requires-Dist: pytest>=8.3.3
Requires-Dist: requests>=2.32.3

![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/Abantether-com/abantether-python-sdk/python-app.yml)
![Codecov](https://img.shields.io/codecov/c/github/Abantether-com/abantether-python-sdk)
![GitHub](https://img.shields.io/github/license/Abantether-com/abantether-python-sdk)
![Python Versions](https://img.shields.io/pypi/pyversions/abantether-python-sdk)
![PyPI Version](https://img.shields.io/pypi/v/abantether-python-sdk)

# Abantether Python SDK

A Python SDK for seamless integration with the [Abantether](https://abantether.com) cryptocurrency trading platform. This SDK provides an easy-to-use interface for executing trades and managing your account on [abantether.com](https://abantether.com).

## Installation

Install the package using pip:

```shell
pip install abantether-python-sdk

# or using uv
uv pip install abantether-python-sdk
```

To instantiate the client use:

```python
from abantether_python_sdk.client import Client as AbantetherClient

ACCESS_TOKEN = ''
aban_client = AbantetherClient(api_key=ACCESS_TOKEN)

```

## Development

To contribute to this project:

1. Clone the repository
2. Install development dependencies:

```shell
uv sync
```

3. Run tests:
```shell
uv run pytest 
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
