Skip to main content

Python library for Shopify GraphQL API interactions

Project description

lib_shopify_graphql

CI CodeQL License: MIT Open in Codespaces PyPI PyPI - Downloads Code Style: Ruff codecov Maintainability security: bandit

lib_shopify_graphql is a Python library for interacting with the Shopify GraphQL Admin API.

Features:

  • Shopify GraphQL API - Client Credentials Grant authentication (OAuth 2.0)
  • Product CRUD - Create, read, update, delete, and duplicate products
  • Product Listing - Cursor-based pagination for listing products with query filtering
  • Image Management - Add, update, delete, and reorder product images (URL or file upload)
  • Partial Updates - UNSET sentinel pattern for updating only specified fields
  • Bulk Operations - Update multiple variants in a single API call
  • Inventory Management - Set or adjust inventory with location fallback
  • Metafield Operations - Delete metafields from products and variants
  • Token Caching - Cache OAuth tokens to reduce authentication overhead
  • SKU Resolution - Cached SKU-to-GID mapping with ambiguity detection
  • High Performance - Uses orjson for fast JSON serialization (3-10x faster than stdlib)
  • Typed Pydantic models - Full validation for credentials, products, variants, images
  • Clean Architecture - Layered design with ports/adapters for testability
  • Dependency Injection - Custom adapters for testing and customization
  • CLI entry point styled with rich-click (rich output + click ergonomics)
  • Layered configuration with lib_layered_config (defaults -> app -> host -> user -> .env -> env)
  • Rich structured logging with lib_log_rich (console, journald, eventlog, Graylog/GELF)
  • Exit-code helpers powered by lib_cli_exit_tools
  • Wraps official ShopifyAPI package from PyPI

Table of Contents


Installation

Recommended: Install via UV (10-20x faster than pip/poetry):

pip install --upgrade uv
uv venv && source .venv/bin/activate  # Create and activate venv
uv pip install lib_shopify_graphql

Optional Extras

The library supports optional features via extras:

Extra Description Install Command
mysql MySQL cache backend (pymysql) uv pip install lib_shopify_graphql[mysql]
dev Development tools (pytest, ruff, etc.) uv pip install lib_shopify_graphql[dev]
# Install with MySQL support
uv pip install lib_shopify_graphql[mysql]

# Install with pip
pip install lib_shopify_graphql[mysql]

# Install multiple extras
uv pip install "lib_shopify_graphql[mysql,dev]"

For alternative install paths (pip, pipx, uvx, source builds, etc.), see INSTALL.md.

Python 3.10+ Baseline

  • The project targets Python 3.10 and newer.
  • Runtime dependencies stay on current stable releases.
  • CI workflows exercise GitHub's rolling runner images covering Python 3.10, 3.11, 3.12, and 3.13.

Quick Start

from lib_shopify_graphql import (
    login,
    logout,
    get_product_by_id,
    get_product_id_from_sku,
    list_products,
    list_products_paginated,
    ShopifyCredentials,
)

# Create credentials
credentials = ShopifyCredentials(
    shop_url="mystore.myshopify.com",
    client_id="your_client_id",
    client_secret="your_client_secret",
)

# Login (obtains access token via client credentials grant)
session = login(credentials)
print(f"Connected to: {session.info.shop_url}")

# Get product by ID
product = get_product_by_id(session, "123456789")  # or full GID
print(f"Product: {product.title}")
print(f"Status: {product.status}")
print(f"Variants: {len(product.variants)}")

# List all products (auto-pagination)
products = list_products(session)
for product in products:
    print(f"- {product.title} ({product.handle})")

# Or use manual pagination for large catalogs
result = list_products_paginated(session, first=50)
while result.page_info.has_next_page:
    result = list_products_paginated(session, first=50, after=result.page_info.end_cursor)
    for product in result.products:
        print(f"- {product.title}")

# Logout when done
logout(session)

Partial Updates

The library uses a sentinel pattern for partial updates, allowing you to update only specific fields:

  • UNSET (default) - Don't update this field
  • None - Clear this field (set to null on Shopify)
  • value - Update to this value
from decimal import Decimal
from lib_shopify_graphql import (
    login, update_variant, update_variants_bulk,
    set_inventory, adjust_inventory,
    VariantUpdate, VariantUpdateRequest, UNSET,
)

session = login(credentials)

# Update price only (other fields unchanged)
update_variant(
    session,
    "SKU-12345",  # Can use SKU or GID
    VariantUpdate(price=Decimal("29.99")),
)

# Clear compare_at_price (remove sale)
update_variant(
    session,
    "gid://shopify/ProductVariant/123",
    VariantUpdate(compare_at_price=None),
)

# Bulk update multiple variants
result = update_variants_bulk(
    session,
    "gid://shopify/Product/456",
    [
        VariantUpdateRequest(
            sku="SKU-001",
            update=VariantUpdate(price=Decimal("19.99")),
        ),
        VariantUpdateRequest(
            sku="SKU-002",
            update=VariantUpdate(barcode="123456789012"),
        ),
    ],
)
print(f"Updated: {result.success_count}, Failed: {result.failure_count}")

# Set absolute inventory
set_inventory(session, "SKU-12345", quantity=100)

# Adjust inventory by delta
adjust_inventory(session, "SKU-12345", delta=-5)

logout(session)

Architecture

The library follows Clean Architecture principles with distinct layers:

lib_shopify_graphql/
├── domain/             # Core business rules (pure Python, no dependencies)
├── application/        # Use cases and ports (Protocol interfaces)
│   └── ports.py        # TokenProviderPort, GraphQLClientPort, SessionManagerPort
├── adapters/           # External system implementations
│   ├── shopify_sdk.py  # Shopify SDK implementations
│   ├── parsers.py      # GraphQL response parsers
│   ├── queries.py      # GraphQL query definitions
│   ├── mutations.py    # GraphQL mutation definitions
│   └── cache_*.py      # Cache adapter implementations
├── composition.py      # Dependency injection wiring
├── shopify_client/     # Core API package (login, logout, product operations)
│   ├── _session.py     # Session management
│   ├── _products.py    # Product operations
│   ├── _variants.py    # Variant operations
│   ├── _inventory.py   # Inventory operations
│   ├── _images.py      # Image operations
│   └── _cache.py       # Cache management
├── models/             # Pydantic data models package
│   ├── _entities.py    # Read models (Product, Variant, etc.)
│   ├── _mutations.py   # Partial update models
│   └── _operations.py  # Operation results
└── exceptions.py       # Domain exceptions

Layer dependencies point inward only:

  • Adapters -> Application -> Domain
  • Domain has no framework dependencies
  • Application ports have no adapter dependencies

Enforced via import-linter:

[tool.importlinter]
root_package = "lib_shopify_graphql"

[[tool.importlinter.contracts]]
name = "Clean Architecture layers"
type = "layers"
layers = [
  "lib_shopify_graphql.adapters",
  "lib_shopify_graphql.application",
  "lib_shopify_graphql.domain",
]

Documentation

Document Description
CLI Usage Command-line interface commands and configuration
Caching Token and SKU caching with JSON or MySQL backends
Shopify App Setup Setting up Shopify app credentials
API Reference Complete API documentation for all functions and models
Module Reference Internal module documentation

Further Documentation

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

lib_shopify_graphql-2.0.5.tar.gz (274.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lib_shopify_graphql-2.0.5-py3-none-any.whl (166.8 kB view details)

Uploaded Python 3

File details

Details for the file lib_shopify_graphql-2.0.5.tar.gz.

File metadata

  • Download URL: lib_shopify_graphql-2.0.5.tar.gz
  • Upload date:
  • Size: 274.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lib_shopify_graphql-2.0.5.tar.gz
Algorithm Hash digest
SHA256 73bebc6b5c4b5153f4d1d31c7bdc9879579442cad3e038dd66727eeee8c21d67
MD5 03357752d7a3e08b841c171b00f1421c
BLAKE2b-256 c1a919f500264ba1b5021bdc3c1a483319ffca4299c83a803dd7aa554865a69d

See more details on using hashes here.

File details

Details for the file lib_shopify_graphql-2.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for lib_shopify_graphql-2.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4fc15b308a089753ae11dfebcb4c16ebaff2150145c4d10450f72fd453d71bc6
MD5 6c4136ebda5aad084346ec9cf4dd32b3
BLAKE2b-256 8228ee9d1609aa31c6475a0645fb4b3196ffb556de645157afff85161b08f458

See more details on using hashes here.

Supported by

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