File: example_template.py

package info (click to toggle)
python-stripe 12.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,864 kB
  • sloc: python: 157,573; makefile: 13; sh: 9
file content (22 lines) | stat: -rw-r--r-- 485 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
example_template.py - This is a template for defining new examples.  It is not intended to be used directly.

<describe what this example does>

In this example, we:
  - <key step 1>
  - <key step 2
  - ...

<describe assumptions about the user's stripe account, environment, or configuration;
or things to watch out for when running>
"""

import stripe

# Set your API key here
api_key = "{{API_KEY}}"

print("Hello world")
# client = stripe.StripeClient(api_key)
# client.v2....