Skip to main content

Python client for GrowFlow Billing API - subscription management, checkout, invoices

Project description

GrowFlow Billing Client

Python client for GrowFlow Billing API - subscription management, checkout sessions, invoices, and more.

Documentation: See growflow-billing-docs for complete API documentation and examples.

Node.js: Looking for the Node.js/TypeScript client? See @growflow/billing-client.

Installation

pip install growflow-billing-client

Or install from source:

pip install git+https://github.com/growflow/growflow-billing-client.git

Quick Start

import asyncio
from growflow_billing import GrowFlowBillingClient

async def main():
    async with GrowFlowBillingClient(api_key="sk_live_xxx") as client:
        # Get available plans
        plans = await client.get_plans()
        for plan in plans:
            print(f"{plan.name}: {plan.price_monthly} {plan.currency}/month")

        # Create a checkout session
        session = await client.create_checkout_session(
            customer_external_id="customer_123",
            plan_slug="pro",
            billing_cycle="monthly",
            success_url="https://yourapp.com/billing?status=success",
            cancel_url="https://yourapp.com/billing?status=canceled",
        )
        print(f"Checkout URL: {session.checkout_url}")

asyncio.run(main())

Features

  • Plans: List available subscription plans
  • Subscribers: Create and manage subscribers
  • Subscriptions: Get subscription status, cancel, change plans
  • Checkout: Create Stripe checkout sessions
  • Portal: Create Stripe customer portal sessions
  • Invoices: List invoice history with PDF downloads
  • Products: List and purchase add-on products

API Reference

Client Initialization

from growflow_billing import GrowFlowBillingClient

client = GrowFlowBillingClient(
    api_key="sk_live_xxx",                              # Required
    base_url="https://billing.growflow.studio/api/v1", # Optional
    timeout=30.0,                                       # Optional (seconds)
    max_retries=3,                                      # Optional
)

Plans

# List all active plans
plans = await client.get_plans()

# Access plan properties
for plan in plans:
    print(plan.slug)           # e.g., "pro"
    print(plan.name)           # e.g., "Pro Plan"
    print(plan.price_monthly)  # e.g., Decimal("349.00")
    print(plan.price_yearly)   # e.g., Decimal("3490.00")
    print(plan.limits)         # e.g., {"conversations": 5000, "stores": 3}
    print(plan.features)       # e.g., ["premium_support", "api_access"]
    print(plan.trial_days)     # e.g., 14

Subscribers

# Create a new subscriber
subscriber = await client.create_subscriber(
    external_id="store_123",      # Your internal ID
    email="owner@store.com",
    name="My Store",
    company_name="Store Inc.",    # Optional
    vat_number="IT12345678901",   # Optional
)

# Get subscriber by external ID
subscriber = await client.get_subscriber(external_id="store_123")

Subscriptions

# Get active subscription
subscription = await client.get_subscription(external_id="store_123")

if subscription:
    print(subscription.status)              # "active", "trialing", "past_due", etc.
    print(subscription.plan_slug)           # "pro"
    print(subscription.billing_cycle)       # "monthly" or "yearly"
    print(subscription.current_period_end)  # datetime
    print(subscription.is_trialing)         # bool
    print(subscription.trial_days_remaining) # int or None

# Cancel subscription
await client.cancel_subscription(
    subscription_id="sub_xxx",
    at_period_end=True,  # Cancel at end of billing period
)

# Change plan
await client.change_plan(
    subscription_id="sub_xxx",
    new_plan_slug="enterprise",
    prorate=True,
)

Checkout Sessions

# Create checkout session for new subscription
session = await client.create_checkout_session(
    customer_external_id="store_123",
    plan_slug="pro",
    billing_cycle="monthly",  # or "yearly"
    success_url="https://yourapp.com/billing?status=success",
    cancel_url="https://yourapp.com/billing?status=canceled",
    coupon_code="WELCOME20",  # Optional discount code
)

# Redirect user to Stripe checkout
redirect_url = session.checkout_url

Customer Portal

# Create portal session for subscription management
portal = await client.create_portal_session(
    customer_external_id="store_123",
    return_url="https://yourapp.com/billing",
)

# Redirect user to Stripe portal
redirect_url = portal.portal_url

Invoices

# List invoices
invoices = await client.get_invoices(
    external_id="store_123",
    limit=20,
)

for invoice in invoices:
    print(invoice.number)            # "INV-0001"
    print(invoice.status)            # "paid", "open", "void"
    print(invoice.amount_paid)       # 34900 (cents)
    print(invoice.currency)          # "eur"
    print(invoice.invoice_pdf)       # URL to PDF
    print(invoice.hosted_invoice_url) # Stripe hosted page

Error Handling

from growflow_billing import (
    GrowFlowBillingError,
    AuthenticationError,
    NotFoundError,
    ConflictError,
    ValidationError,
    RateLimitError,
)

try:
    plans = await client.get_plans()
except AuthenticationError:
    print("Invalid API key")
except NotFoundError as e:
    print(f"Resource not found: {e.message}")
except RateLimitError:
    print("Rate limit exceeded, try again later")
except GrowFlowBillingError as e:
    print(f"API error: {e.message} (status: {e.status_code})")

Configuration

Environment variables:

GROWFLOW_BILLING_API_KEY=sk_live_xxx
GROWFLOW_BILLING_URL=https://billing.growflow.studio/api/v1

License

MIT License - see LICENSE for details.

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

growflowbilling_client-1.3.0.tar.gz (27.0 kB view details)

Uploaded Source

Built Distribution

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

growflowbilling_client-1.3.0-py3-none-any.whl (31.2 kB view details)

Uploaded Python 3

File details

Details for the file growflowbilling_client-1.3.0.tar.gz.

File metadata

  • Download URL: growflowbilling_client-1.3.0.tar.gz
  • Upload date:
  • Size: 27.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for growflowbilling_client-1.3.0.tar.gz
Algorithm Hash digest
SHA256 1d7e465dd4f30ef17206218b8c9215de862c64d72fb69e47020f3835c49b6966
MD5 591548bfd6c3f7614a71abf3a2b716ab
BLAKE2b-256 fab1eacb16226fb56f5fad9533bfcf89332d1e5187f371f962b6ee5397e77da2

See more details on using hashes here.

File details

Details for the file growflowbilling_client-1.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for growflowbilling_client-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0c3a4361615f1af22cfd51cf9a8f523d360af65b45f7d7ca085a3e077ab8724c
MD5 45df3f646d65cfa25940a9951b58738e
BLAKE2b-256 26b9a486a3b5e18a4cc70df03f0f5029a9b2f1a197fdd2587753e3fdd5dbe3fc

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