mirror of
https://github.com/creyD/creyPY.git
synced 2026-04-13 20:00:30 +02:00
12 lines
166 B
Python
12 lines
166 B
Python
import os
|
|
|
|
import stripe
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
|
|
def get_stripe_api():
|
|
stripe.api_key = os.getenv("STRIPE_API_KEY", "")
|
|
return stripe
|