- Replace dropdown tier selection with attractive visual buttons - Add tier-button CSS with hover effects and selection states - Remove 'or pay by card' divider from subscription form for cleaner UI - Update JavaScript to handle tier button selection events - Fix Stripe module import conflict by renaming stripe directory to stripe_config - Add responsive grid layout for tier buttons on mobile devices
72 lines
2.6 KiB
Plaintext
72 lines
2.6 KiB
Plaintext
Metadata-Version: 2.1
|
|
Name: stripe
|
|
Version: 10.8.0
|
|
Summary: Python bindings for the Stripe API
|
|
Home-page: https://github.com/stripe/stripe-python
|
|
Author: Stripe
|
|
Author-email: support@stripe.com
|
|
License: MIT
|
|
Project-URL: Bug Tracker, https://github.com/stripe/stripe-python/issues
|
|
Project-URL: Changes, https://github.com/stripe/stripe-python/blob/master/CHANGELOG.md
|
|
Project-URL: Documentation, https://stripe.com/docs/api/?lang=python
|
|
Project-URL: Source Code, https://github.com/stripe/stripe-python
|
|
Keywords: stripe api payments
|
|
Classifier: Development Status :: 5 - Production/Stable
|
|
Classifier: Intended Audience :: Developers
|
|
Classifier: License :: OSI Approved :: MIT License
|
|
Classifier: Operating System :: OS Independent
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
Classifier: Programming Language :: Python :: 3.6
|
|
Classifier: Programming Language :: Python :: 3.7
|
|
Classifier: Programming Language :: Python :: 3.8
|
|
Classifier: Programming Language :: Python :: 3.9
|
|
Classifier: Programming Language :: Python :: 3.10
|
|
Classifier: Programming Language :: Python :: 3.11
|
|
Classifier: Programming Language :: Python :: 3.12
|
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
Requires-Python: >=3.6
|
|
Description-Content-Type: text/x-rst
|
|
License-File: LICENSE
|
|
Requires-Dist: typing-extensions<=4.2.0,>3.7.2; python_version < "3.7"
|
|
Requires-Dist: requests>=2.20; python_version >= "3.0"
|
|
Requires-Dist: typing-extensions>=4.5.0; python_version >= "3.7"
|
|
|
|
Official Stripe Bindings for Python
|
|
===================================
|
|
|
|
A Python library for Stripe's API.
|
|
|
|
|
|
Setup
|
|
-----
|
|
|
|
You can install this package by using the pip tool and installing:
|
|
|
|
$ pip install stripe
|
|
|
|
Or:
|
|
|
|
$ easy_install stripe
|
|
|
|
|
|
Setting up a Stripe Account
|
|
---------------------------
|
|
|
|
Sign up for Stripe at https://dashboard.stripe.com/register.
|
|
|
|
Using the Stripe API
|
|
--------------------
|
|
|
|
Documentation for the python bindings can be found alongside Stripe's other bindings here:
|
|
|
|
- https://stripe.com/docs
|
|
- https://stripe.com/docs/api/?lang=python
|
|
|
|
In the standard documentation (the first link), most of the reference pages will have examples in Stripe's official bindings (including Python). Just click on the Python tab to get the relevant documentation.
|
|
|
|
In the full API reference for python (the second link), the right half of the page will provide example requests and responses for various API calls.
|