Files
MermsCoreFlask/app/api/integrations/merms_stripe.py
T
CHIEFSOFT\ameye 73a1839f92 Started stripe
2025-07-29 20:55:45 -04:00

38 lines
1.3 KiB
Python

import stripe
import json
import logging
from app.config import settings
logger = logging.getLogger(__name__)
stripe.api_key = settings.STRIPE_PRIV_KEY
class StripeIntegration:
def create_customer(self, data):
customer = stripe.Customer.create(
email="customer@example.com",
description="Customer for subscription",
payment_method="pm_card_visa", # Replace with a valid payment method ID or attach one later
invoice_settings={"default_payment_method": "pm_card_visa"},
)
def create_product(self, data):
# Example of creating a Product and Price
product = stripe.Product.create(name="Premium Plan")
price = stripe.Price.create(
unit_amount=1000, # Amount in cents (e.g., $10.00)
currency="usd",
recurring={"interval": "month"},
product=product.id,
)
def create_subscription(self, data):
subscription = stripe.Subscription.create(
customer='customer.id',
items=[
{"price": 'price.id'},
],
payment_behavior="default_incomplete", # Recommended for handling initial payment
expand=["latest_invoice.payment_intent"], # To get details for payment confirmation
)