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.
Files changed (34) hide show
  1. {payplus_python-0.2.0 → payplus_python-0.2.1}/PKG-INFO +4 -2
  2. {payplus_python-0.2.0 → payplus_python-0.2.1}/README.md +3 -1
  3. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/__init__.py +1 -1
  4. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/PKG-INFO +4 -2
  5. {payplus_python-0.2.0 → payplus_python-0.2.1}/pyproject.toml +1 -1
  6. {payplus_python-0.2.0 → payplus_python-0.2.1}/LICENSE +0 -0
  7. {payplus_python-0.2.0 → payplus_python-0.2.1}/examples/basic_payment.py +0 -0
  8. {payplus_python-0.2.0 → payplus_python-0.2.1}/examples/fastapi_webhooks.py +0 -0
  9. {payplus_python-0.2.0 → payplus_python-0.2.1}/examples/subscription_saas.py +0 -0
  10. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/__init__.py +0 -0
  11. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/base.py +0 -0
  12. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/customers.py +0 -0
  13. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/payment_pages.py +0 -0
  14. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/payments.py +0 -0
  15. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/recurring.py +0 -0
  16. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/api/transactions.py +0 -0
  17. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/client.py +0 -0
  18. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/exceptions.py +0 -0
  19. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/models/__init__.py +0 -0
  20. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/models/customer.py +0 -0
  21. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/models/subscription.py +0 -0
  22. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/models/tier.py +0 -0
  23. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/subscriptions/__init__.py +0 -0
  24. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/subscriptions/manager.py +0 -0
  25. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/subscriptions/storage.py +0 -0
  26. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/webhooks/__init__.py +0 -0
  27. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus/webhooks/handler.py +0 -0
  28. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/SOURCES.txt +0 -0
  29. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/dependency_links.txt +0 -0
  30. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/requires.txt +0 -0
  31. {payplus_python-0.2.0 → payplus_python-0.2.1}/payplus_python.egg-info/top_level.txt +0 -0
  32. {payplus_python-0.2.0 → payplus_python-0.2.1}/setup.cfg +0 -0
  33. {payplus_python-0.2.0 → payplus_python-0.2.1}/tests/__init__.py +0 -0
  34. {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.0
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
 
@@ -12,7 +12,7 @@ from payplus.models.subscription import (
12
12
  from payplus.models.tier import Tier
13
13
  from payplus.subscriptions.manager import SubscriptionManager
14
14
 
15
- __version__ = "0.2.0"
15
+ __version__ = "0.2.1"
16
16
  __all__ = [
17
17
  "PayPlus",
18
18
  "SubscriptionManager",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: payplus-python
3
- Version: 0.2.0
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.0"
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