paytechuz 0.2.14__tar.gz → 0.2.15__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.
Potentially problematic release.
This version of paytechuz might be problematic. Click here for more details.
- {paytechuz-0.2.14 → paytechuz-0.2.15}/PKG-INFO +1 -1
- {paytechuz-0.2.14 → paytechuz-0.2.15}/pyproject.toml +1 -1
- {paytechuz-0.2.14 → paytechuz-0.2.15}/setup.py +1 -1
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/click/client.py +3 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/__init__.py +1 -1
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz.egg-info/PKG-INFO +1 -1
- {paytechuz-0.2.14 → paytechuz-0.2.15}/MANIFEST.in +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/README.md +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/app/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/app/database.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/app/models.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/app/typing.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/app/webhook_handlers.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/main.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/payments.db +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/examples/paytechuz_fastapi/run.sh +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/setup.cfg +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/core/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/core/base.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/core/constants.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/core/exceptions.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/core/http.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/core/payme/errors.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/core/utils.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/click/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/click/merchant.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/click/webhook.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/payme/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/payme/cards.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/payme/client.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/payme/receipts.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/gateways/payme/webhook.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/admin.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/apps.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/migrations/0001_initial.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/migrations/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/models.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/signals.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/views.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/django/webhooks.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/fastapi/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/fastapi/models.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/fastapi/routes.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/integrations/fastapi/schemas.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/core/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/core/base.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/core/constants.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/core/exceptions.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/core/http.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/core/payme/errors.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/core/utils.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/click/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/click/client.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/click/merchant.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/click/webhook.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/payme/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/payme/cards.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/payme/client.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/payme/receipts.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/gateways/payme/webhook.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/admin.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/apps.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/migrations/0001_initial.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/migrations/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/models.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/signals.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/views.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/webhooks.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/fastapi/__init__.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/fastapi/models.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/fastapi/routes.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/fastapi/schemas.py +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz.egg-info/SOURCES.txt +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz.egg-info/dependency_links.txt +0 -0
- {paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz.egg-info/top_level.txt +0 -0
|
@@ -108,6 +108,9 @@ class ClickGateway(BasePaymentGateway):
|
|
|
108
108
|
payment_url += f"&callback_url={callback_url}"
|
|
109
109
|
|
|
110
110
|
if description:
|
|
111
|
+
payment_url += f"&description={description}"
|
|
112
|
+
|
|
113
|
+
if self.merchant_user_id:
|
|
111
114
|
payment_url += f"&merchant_user_id={self.merchant_user_id}"
|
|
112
115
|
|
|
113
116
|
# Return the payment URL directly
|
|
@@ -6,7 +6,7 @@ payment systems in Uzbekistan. It supports Django, Flask, and FastAPI.
|
|
|
6
6
|
"""
|
|
7
7
|
from typing import Any
|
|
8
8
|
|
|
9
|
-
__version__ = '0.2.
|
|
9
|
+
__version__ = '0.2.15'
|
|
10
10
|
|
|
11
11
|
# Import framework integrations - these imports are used to check availability
|
|
12
12
|
# of frameworks, not for direct usage
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/migrations/0001_initial.py
RENAMED
|
File without changes
|
{paytechuz-0.2.14 → paytechuz-0.2.15}/src/paytechuz/integrations/django/migrations/__init__.py
RENAMED
|
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
|