Improve subscription UI with large tier buttons
- 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
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,21 @@
|
||||
The MIT License
|
||||
|
||||
Copyright (c) 2010-2018 Stripe (http://stripe.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
@@ -0,0 +1,71 @@
|
||||
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.
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,6 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.44.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py2-none-any
|
||||
Tag: py3-none-any
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
stripe
|
||||
Reference in New Issue
Block a user