import osfrom channel3_sdk import Channel3client = Channel3( api_key=os.environ.get("CHANNEL3_API_KEY"), # This is the default and can be omitted)page = client.price_tracking.list_subscriptions()page = page.items[0]print(page.canonical_product_id)
import osfrom channel3_sdk import Channel3client = Channel3( api_key=os.environ.get("CHANNEL3_API_KEY"), # This is the default and can be omitted)page = client.price_tracking.list_subscriptions()page = page.items[0]print(page.canonical_product_id)