Skip to main content

Wrapper around Repricer.com API (aka Xsellco)

Project description

XSELLCO-API Python Wrapper

CodeFactor pytest codecov

This project provides a Python wrapper for interacting with the Repricer.com (aka Xsellco) API, simplifying the integration of Repricer.com's API features into Python applications. It offers both synchronous and asynchronous support to accommodate different programming needs, thanks in part to the httpx library. Detailed API documentation can be found at eDesk Developers.

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

pip install xsellco_api

For Developing:

Clone the repository and install requirements-dev.txt:


Usage

The library provides both synchronous (sync) and asynchronous (async_) interfaces for interacting with the Repricer.com API. Below are examples of how to use each interface:

Synchronous Usage

from xsellco_api.sync import Repricers

repricer = Repricers(user_name='your_username', password='your_password')
repricer_data = repricer.get_report()
print(repricer_data)  # list of dictionaries

# or
# All classes support context manager usage
with Repricers(user_name='your_username', password='your_password') as repricer:
    repricer_data = repricer.get_report()
    print(repricer_data)  # list of dictionaries

Asynchronous Usage

import asyncio
from xsellco_api.async_ import AsyncRepricers

async def main():
    async with AsyncRepricers(user_name='your_username', password='your_password') as repricer:
        repricer_data = await repricer.get_report()
        print(repricer_data)

asyncio.run(main())

Deprecation Notice

Please note that the xsellco_api.api module is deprecated and will be removed in future versions. Users are encouraged to switch to the sync or async_ modules for continued support.

License

License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xsellco_api-0.0.9.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

xsellco_api-0.0.9-py3-none-any.whl (16.0 kB view details)

Uploaded Python 3

File details

Details for the file xsellco_api-0.0.9.tar.gz.

File metadata

  • Download URL: xsellco_api-0.0.9.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for xsellco_api-0.0.9.tar.gz
Algorithm Hash digest
SHA256 1aa61bde9e16b4ec85fe9b7b8a30b6f34958a7f97e5d51ff3a92ee097157da52
MD5 5dcb388da0f6b14dd6aa265909f1490b
BLAKE2b-256 3ff56594b06a9f9e3f5ec2244199f72a590348cb001c1bea675efbd129a52266

See more details on using hashes here.

File details

Details for the file xsellco_api-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: xsellco_api-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for xsellco_api-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 ed80ce6dd494b4c692c6ee58c9808cf21780fb2a55f617e02c13415180b78702
MD5 3f0aef6133e1f7cc5205703a93e2217b
BLAKE2b-256 9fb685c2fb498ed181a9f5fb301cae18a50d873bea42af550c680cdccaf7d98f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page