Skip to main content

Official Python SDK for the Actory Agent Commerce Protocol (ACP) API

Project description

Actory Python SDK

Official Python client for the Actory Agent Commerce Protocol (ACP) API.

Installation

pip install actory

Quick Start

from actory import Actory

# Initialize with your API key
client = Actory(api_key="act_sk_your_key_here")

# Search for products
results = client.search("red shoes", max_price=100, in_stock=True)
print(f"Found {results.total} products")

for product in results.products:
    print(f"  {product.title}: {product.currency} {product.price:.2f}")

Features

Search Products

# Basic search
results = client.search("shoes")

# With filters
results = client.search(
    "shoes",
    in_stock=True,
    min_price=20,
    max_price=100,
    vendor="Nike",
    category="footwear",
    limit=50,
    page=1
)

Natural Language Search

# Parse natural language queries
results = client.nl_search("red shoes under $50 in stock")
# Automatically extracts: color=red, maxPrice=50, inStock=true

Get Product Details

product = client.get_product("product_id_here")
print(f"{product.title}: {product.currency} {product.price:.2f}")
print(f"In Stock: {product.in_stock}")

List Merchants

merchants = client.list_merchants()  # or client.get_merchants()
for m in merchants:
    print(f"{m.name} ({m.domain}): {m.product_count} products")

List Categories & Vendors

categories = client.list_categories()
vendors = client.list_vendors()

Error Handling

from actory import Actory, AuthenticationError, RateLimitError, ActoryError

try:
    client = Actory(api_key="invalid_key")
    results = client.search("test")
except AuthenticationError:
    print("Invalid API key")
except RateLimitError:
    print("Too many requests, slow down")
except ActoryError as e:
    print(f"API error: {e}")

Configuration

# Custom base URL (for local development)
client = Actory(
    api_key="act_sk_...",
    base_url="http://localhost:3000"
)

Get an API Key

  1. Visit app.actory.ai
  2. Navigate to API Keys
  3. Create a new API key and use in your application

License

MIT

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

actory-0.1.5.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

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

actory-0.1.5-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file actory-0.1.5.tar.gz.

File metadata

  • Download URL: actory-0.1.5.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for actory-0.1.5.tar.gz
Algorithm Hash digest
SHA256 000338d29108b7261d55cae7b7a57ca0d1e5f818a0dd11a4abd69faf97fa8978
MD5 4a2fa13dccaf577871da3e90914015aa
BLAKE2b-256 76f93d29143af57972534f4db3576bb56719680be1ba0aa43cd849c34777354d

See more details on using hashes here.

File details

Details for the file actory-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: actory-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for actory-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 7b5841c1efc3ecb7d338e598115c2f6a2a32a08c4b8c0486685cca6432c22db9
MD5 1adf425fbec035761ca72673068210fb
BLAKE2b-256 1e87e1674cac40a37d0fe372dd1445d2f61c7aad95220298676311f02332c32e

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