Metadata-Version: 2.3
Name: drebedengi-sdk
Version: 0.1.0
Summary: 
Author: Vlad Lapikov
Author-email: 99816762+wh0t-is-love@users.noreply.github.com
Requires-Python: >=3.11
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: zeep (>=4.3.1,<5.0.0)
Description-Content-Type: text/markdown

# Drebedengi SDK

A Python SDK to interact with the SOAP API provided by [Drebedengi.ru](https://www.drebedengi.ru/).

## Installation

```bash
poetry install
```

## Basic Usage

```python
from drebedengi_sdk import DrebedengiAPI

client = DrebedengiAPI("api_id", "login", "password")
status = client.get_access_status()
print(status)
```

## Supported Methods

The SDK provides Python wrappers for most SOAP methods, including:

- `getAccessStatus`
- `getRecordList`
- `setRecordList`
- `deleteObject`
- and many more...

Refer to the `DrebedengiAPI` class for the full method list.

