Skip to main content

Official Python SDK for Ripples.sh — server-side event tracking

Project description

Ripples Python SDK

Server-side Python SDK for Ripples.sh analytics.

Install

pip install ripples

Set your secret key:

RIPPLES_SECRET_KEY=priv_your_secret_key

Usage

from ripples import Ripples

ripples = Ripples()

ripples.revenue(49.99, "user_123")
ripples.signup("user_123", email="jane@example.com")
ripples.track("created a budget", "user_123", area="budgets")
ripples.identify("user_123", email="jane@example.com")

That's it. Events are batched and sent automatically when the process exits.

Track product usage

Call track() when a user does something meaningful. Ripples auto-detects activation (first occurrence per user), computes adoption rates, and correlates with retention and payment.

ripples.track("created a budget", "user_123", area="budgets")
ripples.track("shared a list", "user_123", area="sharing", via="link")
ripples.track("exported report", "user_123", area="reports", format="csv")

Use area to group actions into product areas. Use activated=True to mark the specific moment a user activates:

ripples.track("added transaction", "user_123", area="transactions", activated=True)

Track subscriptions (MRR)

Call subscription() when a subscription is created, upgraded, downgraded, or canceled. This powers the MRR metric on your dashboard.

Stripe / Paddle users: MRR is tracked automatically via the integration. Only use this method if you use a payment provider without a native Ripples integration.

# User subscribes to Pro Monthly ($29/mo)
ripples.subscription("sub_123", "user_456", "active", 29.00, "month",
    name="Pro", currency="EUR")

# User upgrades to Business Annual ($499/yr)
ripples.subscription("sub_123", "user_456", "active", 499.00, "year",
    name="Business")

# User cancels
ripples.subscription("sub_123", "user_456", "canceled", 0)

Parameters:

  • subscription_id (str, required) — stable identifier for the subscription
  • user_id (str, required) — your internal user ID
  • status (str, required) — one of: active, canceled, past_due, trialing, paused
  • amount (float, required) — amount per billing cycle (e.g. 29.00), pass 0 when canceling
  • interval (str, optional) — "month" (default), "year", "week", or "day"
  • currency (str, optional) — 3-letter currency code
  • name / plan (str, optional) — plan name shown in the dashboard
  • interval_count (int, optional) — billing frequency multiplier (e.g. 3 for quarterly)

Track revenue

ripples.revenue(49.99, "user_123")

Any extra keyword argument becomes a custom property:

ripples.revenue(49.99, "user_123",
    email="jane@example.com",
    currency="EUR",
    transaction_id="txn_abc123",
    plan="annual",
    coupon="WELCOME20",
)

Refunds are negative revenue:

ripples.revenue(-29.99, "user_123", transaction_id="txn_abc123")

Track signups

ripples.signup("user_123",
    email="jane@example.com",
    name="Jane Smith",
    referral="twitter",
    plan="free",
)

Identify users

Update user traits at any time:

ripples.identify("user_123",
    email="jane@example.com",
    name="Jane Smith",
    company="Acme Inc",
    role="admin",
)

Error handling

from ripples import RipplesError

try:
    ripples.revenue(49.99, "user_123")
except RipplesError as e:
    print(e)

By default, errors during flush are swallowed so your app is never disrupted. Use on_error to log them:

ripples = Ripples(on_error=lambda e: print(f"Ripples error: {e}"))

Configuration

ripples = Ripples(
    "priv_explicit_key",
    base_url="https://your-domain.com/api",
    timeout=10,
    max_queue_size=50,
)

Or via environment variables:

RIPPLES_SECRET_KEY=priv_your_secret_key
RIPPLES_URL=https://your-domain.com/api

Flush manually

Events are flushed automatically at exit. For long-running processes or CLI scripts, call flush() explicitly:

ripples.flush()

Custom HTTP client

Subclass and override _post():

class MyRipples(Ripples):
    def _post(self, path, data):
        # your custom implementation
        pass

Requirements

  • Python 3.9+
  • requests

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

ripples-0.1.2.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

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

ripples-0.1.2-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file ripples-0.1.2.tar.gz.

File metadata

  • Download URL: ripples-0.1.2.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripples-0.1.2.tar.gz
Algorithm Hash digest
SHA256 aed2404e1535be5996c364ece49908ba4a8e72ed5912dded6409413c25442c26
MD5 ef4b92dbfeb01eb4109da58293fd850f
BLAKE2b-256 c48b35a82427f5cb243bd3c971130e3801e8320388410cdfde21f92ca4cec72d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripples-0.1.2.tar.gz:

Publisher: publish.yml on ripplesanalytics/ripples-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripples-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: ripples-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripples-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 72324b2a8eae72a2e163e9cf4dd53d1dd597515a9ff3d9ec0472ec5ea105221c
MD5 675ccbcb91b9b1bd99fd3b1d982dcfbc
BLAKE2b-256 5a0020a8f8366f783c360581b9ace4a8ca18de511f55b4f27fee1adbaba3ffaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripples-0.1.2-py3-none-any.whl:

Publisher: publish.yml on ripplesanalytics/ripples-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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