Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.1 KB

File metadata and controls

54 lines (37 loc) · 1.1 KB

shoppexio

Official Python SDK for the Shoppex Developer API.

This package is built for backend jobs, scripts, services, and automation that talk to /dev/v1/*.

Install

pip install shoppexio

Quick Start

from shoppexio import ShoppexClient

client = ShoppexClient(api_key="shx_your_api_key")

me = client.me.get()
products = client.products.list({"page": 1, "limit": 20})

Auth

Use one of these:

  • api_key for your own server-to-server integrations
  • access_token for OAuth app installs

Included Services

  • me
  • products
  • orders
  • customers
  • payments
  • invoices
  • coupons
  • webhooks

This covers the common backend workflows:

  • product reads and writes
  • order creation, completion, fulfillment, and refunds
  • customer reads and writes
  • payment and invoice flows
  • coupon checks and CRUD
  • webhook management and delivery logs

Docs