Sellix public API for developers to access merchant resources
- python ^3.7
Install the package through pip.
python3 -m pip install sellix-python-sdk
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)