payplus-python 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {payplus_python-0.2.0 → payplus_python-0.2.1}/PKG-INFO +4 -2
- {payplus_python-0.2.0 → payplus_python-0.2.1}/README.md +3 -1
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/__init__.py +1 -1
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/PKG-INFO +4 -2
- {payplus_python-0.2.0 → payplus_python-0.2.1}/pyproject.toml +1 -1
- {payplus_python-0.2.0 → payplus_python-0.2.1}/LICENSE +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/examples/basic_payment.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/examples/fastapi_webhooks.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/examples/subscription_saas.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/__init__.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/base.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/customers.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/payment_pages.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/payments.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/recurring.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/transactions.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/client.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/exceptions.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/models/__init__.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/models/customer.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/models/subscription.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/models/tier.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/subscriptions/__init__.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/subscriptions/manager.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/subscriptions/storage.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/webhooks/__init__.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/webhooks/handler.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/SOURCES.txt +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/dependency_links.txt +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/requires.txt +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/top_level.txt +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/setup.cfg +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/tests/__init__.py +0 -0
- {payplus_python-0.2.0 → payplus_python-0.2.1}/tests/test_models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: payplus-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Python SDK for PayPlus payment gateway with subscription management for SaaS apps
|
|
5
5
|
Author-email: Two Solutions <dev@two-solutions.com>
|
|
6
6
|
License: MIT
|
|
@@ -42,7 +42,9 @@ Requires-Dist: motor>=3.0.0; extra == "mongodb"
|
|
|
42
42
|
Requires-Dist: pymongo>=4.0.0; extra == "mongodb"
|
|
43
43
|
Dynamic: license-file
|
|
44
44
|
|
|
45
|
-
# PayPlus Python SDK
|
|
45
|
+
# PayPlus Python SDK (Unofficial)
|
|
46
|
+
|
|
47
|
+
> **Note:** This is an unofficial SDK and is not affiliated with or endorsed by PayPlus.
|
|
46
48
|
|
|
47
49
|
A Python SDK for [PayPlus](https://www.payplus.co.il/) payment gateway with built-in subscription management for SaaS applications.
|
|
48
50
|
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
# PayPlus Python SDK
|
|
1
|
+
# PayPlus Python SDK (Unofficial)
|
|
2
|
+
|
|
3
|
+
> **Note:** This is an unofficial SDK and is not affiliated with or endorsed by PayPlus.
|
|
2
4
|
|
|
3
5
|
A Python SDK for [PayPlus](https://www.payplus.co.il/) payment gateway with built-in subscription management for SaaS applications.
|
|
4
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: payplus-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Python SDK for PayPlus payment gateway with subscription management for SaaS apps
|
|
5
5
|
Author-email: Two Solutions <dev@two-solutions.com>
|
|
6
6
|
License: MIT
|
|
@@ -42,7 +42,9 @@ Requires-Dist: motor>=3.0.0; extra == "mongodb"
|
|
|
42
42
|
Requires-Dist: pymongo>=4.0.0; extra == "mongodb"
|
|
43
43
|
Dynamic: license-file
|
|
44
44
|
|
|
45
|
-
# PayPlus Python SDK
|
|
45
|
+
# PayPlus Python SDK (Unofficial)
|
|
46
|
+
|
|
47
|
+
> **Note:** This is an unofficial SDK and is not affiliated with or endorsed by PayPlus.
|
|
46
48
|
|
|
47
49
|
A Python SDK for [PayPlus](https://www.payplus.co.il/) payment gateway with built-in subscription management for SaaS applications.
|
|
48
50
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "payplus-python"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Python SDK for PayPlus payment gateway with subscription management for SaaS apps"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|