Metadata-Version: 2.1
Name: marketplace_handler
Version: 1.2.1
Summary: Module to interact with marketplaces
Home-page: https://github.com/derijablya/marketplace-interface
Author: derijabyla
Author-email: dulugov@gmail.com
Description-Content-Type: text/markdown
Requires-Dist: pydantic>=2.6.1
Requires-Dist: requests>=2.31.0

# marketplace_handler

Package to interact with marketplaces.

## Installation

### pip
```bash
pip install marketplace_handler
```

### poetry
```bash
poetry add marketplace_handler
```

## Usage

```python
from marketpalce_handler import Wildberries

marketplace = Wildberries(
    token_id=0,
    token_service_token="your_token",
    token_service_url="https://your_token_url",
    mapping_url="https://your_mapping_url",
)

marketplace.refresh_price("id", 0)
```        
