paytechuz 0.2.18__tar.gz → 0.2.19__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.18 → paytechuz-0.2.19}/PKG-INFO +1 -2
- {paytechuz-0.2.18 → paytechuz-0.2.19}/README.md +0 -1
- {paytechuz-0.2.18 → paytechuz-0.2.19}/pyproject.toml +1 -1
- {paytechuz-0.2.18 → paytechuz-0.2.19}/setup.py +1 -1
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/__init__.py +1 -1
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz.egg-info/PKG-INFO +1 -2
- {paytechuz-0.2.18 → paytechuz-0.2.19}/MANIFEST.in +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/app/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/app/database.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/app/models.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/app/typing.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/app/webhook_handlers.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/main.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/payments.db +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/examples/paytechuz_fastapi/run.sh +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/setup.cfg +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/core/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/core/base.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/core/constants.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/core/exceptions.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/core/http.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/core/payme/errors.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/core/utils.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/click/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/click/client.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/click/merchant.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/click/webhook.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/payme/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/payme/cards.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/payme/client.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/payme/receipts.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/gateways/payme/webhook.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/admin.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/apps.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/migrations/0001_initial.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/migrations/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/models.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/signals.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/views.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/django/webhooks.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/fastapi/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/fastapi/models.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/fastapi/routes.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/integrations/fastapi/schemas.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/core/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/core/base.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/core/constants.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/core/exceptions.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/core/http.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/core/payme/errors.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/core/utils.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/click/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/click/client.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/click/merchant.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/click/webhook.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/payme/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/payme/cards.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/payme/client.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/payme/receipts.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/gateways/payme/webhook.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/admin.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/apps.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/migrations/0001_initial.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/migrations/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/models.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/signals.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/views.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/webhooks.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/fastapi/__init__.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/fastapi/models.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/fastapi/routes.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz/integrations/fastapi/schemas.py +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz.egg-info/SOURCES.txt +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz.egg-info/dependency_links.txt +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/src/paytechuz.egg-info/top_level.txt +0 -0
- {paytechuz-0.2.18 → paytechuz-0.2.19}/tests/test_click_gateway.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paytechuz
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.19
|
|
4
4
|
Summary: Unified Python package for Uzbekistan payment gateways
|
|
5
5
|
Home-page: https://github.com/Muhammadali-Akbarov/paytechuz
|
|
6
6
|
Author: Muhammadali Akbarov
|
|
@@ -298,7 +298,6 @@ async def click_webhook(request: Request, db: Session = Depends(get_db)):
|
|
|
298
298
|
handler = CustomClickWebhookHandler(
|
|
299
299
|
db=db,
|
|
300
300
|
service_id="your_service_id",
|
|
301
|
-
merchant_id="your_merchant_id",
|
|
302
301
|
secret_key="your_secret_key",
|
|
303
302
|
account_model=Order
|
|
304
303
|
)
|
|
@@ -283,7 +283,6 @@ async def click_webhook(request: Request, db: Session = Depends(get_db)):
|
|
|
283
283
|
handler = CustomClickWebhookHandler(
|
|
284
284
|
db=db,
|
|
285
285
|
service_id="your_service_id",
|
|
286
|
-
merchant_id="your_merchant_id",
|
|
287
286
|
secret_key="your_secret_key",
|
|
288
287
|
account_model=Order
|
|
289
288
|
)
|
|
@@ -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.19'
|
|
10
10
|
|
|
11
11
|
# Import framework integrations - these imports are used to check availability
|
|
12
12
|
# of frameworks, not for direct usage
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paytechuz
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.19
|
|
4
4
|
Summary: Unified Python package for Uzbekistan payment gateways
|
|
5
5
|
Home-page: https://github.com/Muhammadali-Akbarov/paytechuz
|
|
6
6
|
Author: Muhammadali Akbarov
|
|
@@ -298,7 +298,6 @@ async def click_webhook(request: Request, db: Session = Depends(get_db)):
|
|
|
298
298
|
handler = CustomClickWebhookHandler(
|
|
299
299
|
db=db,
|
|
300
300
|
service_id="your_service_id",
|
|
301
|
-
merchant_id="your_merchant_id",
|
|
302
301
|
secret_key="your_secret_key",
|
|
303
302
|
account_model=Order
|
|
304
303
|
)
|
|
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.18 → paytechuz-0.2.19}/src/paytechuz/integrations/django/migrations/0001_initial.py
RENAMED
|
File without changes
|
{paytechuz-0.2.18 → paytechuz-0.2.19}/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
|
|
File without changes
|