Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 799 Bytes

File metadata and controls

41 lines (25 loc) · 799 Bytes

Sellix Python SDK

tag pypi Downloads

Introduction

Sellix public API for developers to access merchant resources

Requirements

  • python ^3.7

Installation

Install the package through pip.

python3 -m pip install sellix-python-sdk

Usage

from sellix import Sellix

# pass <MERCHANT_NAME> only if you need to be authenticated as an additional store

client = Sellix("<YOUR_API_KEY>", "<MERCHANT_NAME>")

try:
    products = client.get_products()
except Sellix.SellixException as e:
    print(e)

Documentation

Sellix Developers API