Skip to content

Instantly share code, notes, and snippets.

@SharpeCodes
SharpeCodes / gist:3ac65c3c4096404692fcf92e867ef82b
Last active September 4, 2025 21:48
SuperStream Monthly Base Plan: $10.99 base for 100GB + $1.00/10GB of usage over 100GB
# Set your secret key. Remember to switch to your live secret key in production.
# See your keys here: https://dashboard.stripe.com/apikeys
import stripe
stripe.api_key = "{{TEST_SECRET_KEY}}"
# === PLAN B: $10.99 base + $1.00/10GB overage after 100GB ===
# Create Product for Plan B
product = stripe.Product.create(
name="SuperStream Metered Usage Plan",
@SharpeCodes
SharpeCodes / gist:28f9309abf15e4b898037516d61cfdec
Last active September 4, 2025 19:15
SuperStream Unlimited Subscription Plan for $24.99/mo
# Set your secret key. Remember to switch to your live secret key in production.
# See your keys here: https://dashboard.stripe.com/apikeys
import stripe
stripe.api_key = "{{TEST_SECRET_KEY}}"
# === PLAN A: Fixed $24.99/month for unlimited usage ===
# Create Product for PLAN A
product = stripe.Product.create(
name="SuperStream Unlimited",
active=True,