Metadata-Version: 2.1
Name: python-seller-active
Version: 0.0.2
Summary: Wrapper around Repricer.com API (aka XSellco)
Home-page: https://github.com/yberezkin/python_seller_active
Author: Yan Berezkin
Author-email: yan.berezkin@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/yberezkin/python_seller_active/issues
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# SELLER-ACTIVE-API Python Wrapper

This project provides a Python wrapper for interacting with the [rest.selleractive.com](https://rest.selleractive.com/) API, allowing developers to easily integrate the API's functionality into their Python applications.

## Getting Started

These instructions will give you a copy of the project up and running on
your local machine for development and testing purposes. See deployment
for notes on deploying the project on a live system.

### Installing

[//]: # ([![Badge]&#40;https://img.shields.io/pypi/v/pytho?style=for-the-badge&#41;]&#40;https://pypi.org/project/xsellco-api/&#41;)


    pip install python_seller_active


---

### Usage

```python
from seller_active.api import Inventory

# repricer reports API
data = Inventory(seller_id='your_username', api_key='your_password').get_inventory()
print(data)  # list of dictionaries
# or utilize
cli = Inventory(seller_id='your_username', api_key='your_password')
data = cli.get_inventory()
print(data)
```

## License

![License](https://img.shields.io/github/license/yberezkin/python_seller_active?style=for-the-badge)
