paytechuz 0.2.0__py3-none-any.whl → 0.2.2__py3-none-any.whl
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/__init__.py +1 -1
- paytechuz/gateways/click/merchant.py +1 -0
- paytechuz/gateways/payme/cards.py +1 -0
- paytechuz/gateways/payme/client.py +1 -0
- paytechuz/gateways/payme/receipts.py +1 -0
- paytechuz/integrations/django/__init__.py +6 -0
- paytechuz/integrations/django/apps.py +5 -0
- paytechuz/integrations/django/migrations/0001_initial.py +1 -0
- paytechuz/integrations/django/models.py +3 -0
- {paytechuz-0.2.0.dist-info → paytechuz-0.2.2.dist-info}/METADATA +1 -1
- {paytechuz-0.2.0.dist-info → paytechuz-0.2.2.dist-info}/RECORD +13 -13
- {paytechuz-0.2.0.dist-info → paytechuz-0.2.2.dist-info}/WHEEL +0 -0
- {paytechuz-0.2.0.dist-info → paytechuz-0.2.2.dist-info}/top_level.txt +0 -0
paytechuz/__init__.py
CHANGED
|
@@ -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.2'
|
|
10
10
|
|
|
11
11
|
# Import framework integrations - these imports are used to check availability
|
|
12
12
|
# of frameworks, not for direct usage
|
|
@@ -9,6 +9,7 @@ from paytechuz.core.base import BasePaymentGateway
|
|
|
9
9
|
from paytechuz.core.http import HttpClient
|
|
10
10
|
from paytechuz.core.constants import PaymeNetworks
|
|
11
11
|
from paytechuz.core.utils import format_amount, handle_exceptions
|
|
12
|
+
|
|
12
13
|
from .cards import PaymeCards
|
|
13
14
|
from .receipts import PaymeReceipts
|
|
14
15
|
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Django integration for PayTechUZ.
|
|
3
3
|
"""
|
|
4
|
+
# Register the app configuration
|
|
4
5
|
default_app_config = 'paytechuz.integrations.django.apps.PaytechuzConfig'
|
|
6
|
+
|
|
7
|
+
# This is used to prevent Django from creating new migrations
|
|
8
|
+
# when the model changes. Instead, users should use the provided
|
|
9
|
+
# migration or create their own if needed.
|
|
10
|
+
PAYTECHUZ_PREVENT_MIGRATIONS = True
|
|
@@ -3,6 +3,7 @@ Django app configuration for PayTechUZ.
|
|
|
3
3
|
"""
|
|
4
4
|
from django.apps import AppConfig
|
|
5
5
|
|
|
6
|
+
|
|
6
7
|
class PaytechuzConfig(AppConfig):
|
|
7
8
|
"""
|
|
8
9
|
Django app configuration for PayTechUZ.
|
|
@@ -10,6 +11,10 @@ class PaytechuzConfig(AppConfig):
|
|
|
10
11
|
name = 'paytechuz.integrations.django'
|
|
11
12
|
verbose_name = 'PayTechUZ'
|
|
12
13
|
|
|
14
|
+
# This is important - it tells Django to use our migrations
|
|
15
|
+
# but not to create new ones automatically
|
|
16
|
+
default_auto_field = 'django.db.models.AutoField'
|
|
17
|
+
|
|
13
18
|
def ready(self):
|
|
14
19
|
"""
|
|
15
20
|
Initialize the app.
|
|
@@ -58,6 +58,9 @@ class PaymentTransaction(models.Model):
|
|
|
58
58
|
models.Index(fields=['account_id']),
|
|
59
59
|
models.Index(fields=['state']),
|
|
60
60
|
]
|
|
61
|
+
# This is important - it tells Django not to manage this model
|
|
62
|
+
# which means no migrations will be created for it
|
|
63
|
+
managed = False
|
|
61
64
|
|
|
62
65
|
def __str__(self):
|
|
63
66
|
"""
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
paytechuz/__init__.py,sha256=
|
|
1
|
+
paytechuz/__init__.py,sha256=FDe29y0Xs8ar0t0pvOMbFUmOkty_sqxuNvl3_VyYR6s,1753
|
|
2
2
|
paytechuz/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
paytechuz/core/base.py,sha256=pW_0QrlyX0F8XVToeeDEI78ygAF2IgvvvyUGYMHH9bs,2565
|
|
4
4
|
paytechuz/core/constants.py,sha256=P2zeZ_cfZIttdC1vqkpIngkfRFh6loWzJYEgzQb5cKA,1660
|
|
@@ -9,28 +9,28 @@ paytechuz/core/payme/errors.py,sha256=CZE62MbYDMsRfNIX23Syt6of_tPMMGLnXhYMii4hw3
|
|
|
9
9
|
paytechuz/gateways/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
paytechuz/gateways/click/__init__.py,sha256=35RPIrZYHgMWDzxjQkJMZYjzHDa8cY_BqQztCdZZmBM,90
|
|
11
11
|
paytechuz/gateways/click/client.py,sha256=NC9bHP2A_9ZagE1G4OBrckvefLhyALzs76tzKoc6x8U,6682
|
|
12
|
-
paytechuz/gateways/click/merchant.py,sha256=
|
|
12
|
+
paytechuz/gateways/click/merchant.py,sha256=d8YUaxm5X51xFtI2_M6xtjZ-L2BvbU0T9YTJwodF7gU,7255
|
|
13
13
|
paytechuz/gateways/click/webhook.py,sha256=rph-NmjjnBKMW4rcxQTXrHHdK-uMrU39kXnbqK56leo,7936
|
|
14
14
|
paytechuz/gateways/payme/__init__.py,sha256=KcVkYvAEblL4ASVAOrUofRBwywAkTZIgRXoBaCbYtv8,90
|
|
15
|
-
paytechuz/gateways/payme/cards.py,sha256=
|
|
16
|
-
paytechuz/gateways/payme/client.py,sha256=
|
|
17
|
-
paytechuz/gateways/payme/receipts.py,sha256=
|
|
15
|
+
paytechuz/gateways/payme/cards.py,sha256=iyitnAIQ_BUNmF273ErSLe3GOs5LYp3pWHxdb_FtOzs,5421
|
|
16
|
+
paytechuz/gateways/payme/client.py,sha256=fmFHbgWX0UG7246JgA8tWougzAbw75QTWC9mw_TgvZI,7808
|
|
17
|
+
paytechuz/gateways/payme/receipts.py,sha256=DFIoD2EW65sStgeNP75GrUCcuvn7H7PPc415pw4S79g,8905
|
|
18
18
|
paytechuz/gateways/payme/webhook.py,sha256=-0O8vzMtiu4U8FWFKDA6EfyoX4NEGqcEq-T0yNtVhM4,12374
|
|
19
19
|
paytechuz/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
paytechuz/integrations/django/__init__.py,sha256=
|
|
20
|
+
paytechuz/integrations/django/__init__.py,sha256=fNs4c2IWpCe78-_Yvgz59TdKbHiYRYDkLR33QOBf-Ok,356
|
|
21
21
|
paytechuz/integrations/django/admin.py,sha256=6fs6GiKcdc-hGlLxJ0BthY7TFo_2RVVJRhQwhxMroCY,2664
|
|
22
|
-
paytechuz/integrations/django/apps.py,sha256=
|
|
23
|
-
paytechuz/integrations/django/models.py,sha256=
|
|
22
|
+
paytechuz/integrations/django/apps.py,sha256=Q9wG2osL7_Ip2BcAkq7lmmhu4UKJAg6UtSsSq_RgHlc,640
|
|
23
|
+
paytechuz/integrations/django/models.py,sha256=D_k9u8LIhLZMfYnZmpPln8hDl825fHy8x2zTAAxFSFA,5973
|
|
24
24
|
paytechuz/integrations/django/signals.py,sha256=VtNYEAnu13wi9PqadEaCU9LY_k2tY26AS4bnPIAqw7M,1319
|
|
25
25
|
paytechuz/integrations/django/views.py,sha256=nP2HRMx02tMbdv_KfDqIA5vQAwZ6TUuZazrZ2zoNfqQ,3029
|
|
26
26
|
paytechuz/integrations/django/webhooks.py,sha256=cP_Jc3VlyyvyzDbBd2yEVHikw60th1_-L9_vtsRfwgs,31335
|
|
27
|
-
paytechuz/integrations/django/migrations/0001_initial.py,sha256=
|
|
27
|
+
paytechuz/integrations/django/migrations/0001_initial.py,sha256=V6qFqnG3iinl71YL0xXJXs_2sAfDO05eZMN0HstwPVU,2360
|
|
28
28
|
paytechuz/integrations/django/migrations/__init__.py,sha256=KLQ5NdjOMLDS21-u3b_g08G1MjPMMhG95XI_N8m4FSo,41
|
|
29
29
|
paytechuz/integrations/fastapi/__init__.py,sha256=DLnhAZQZf2ghu8BuFFfE7FzbNKWQQ2SLG8qxldRuwR4,565
|
|
30
30
|
paytechuz/integrations/fastapi/models.py,sha256=eWGUpiKufj47AK8Hld4A91jRDj0ZKQzAf95CyUozmvo,4638
|
|
31
31
|
paytechuz/integrations/fastapi/routes.py,sha256=D17QeyY4-aX6tCNmk5h3UiavukvVrE5e6JOFCy4t_n8,36629
|
|
32
32
|
paytechuz/integrations/fastapi/schemas.py,sha256=CkNohj22mQQje8Pu_IkTQwUPAoYHNOKXlGjqaRX_SGQ,3784
|
|
33
|
-
paytechuz-0.2.
|
|
34
|
-
paytechuz-0.2.
|
|
35
|
-
paytechuz-0.2.
|
|
36
|
-
paytechuz-0.2.
|
|
33
|
+
paytechuz-0.2.2.dist-info/METADATA,sha256=ReMyrQEv06grF0XDl6yhn1Z362ql-HRciqUSyaKh9CQ,4149
|
|
34
|
+
paytechuz-0.2.2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
35
|
+
paytechuz-0.2.2.dist-info/top_level.txt,sha256=oloyKGNVj9Z2h3wpKG5yPyTlpdpWW0-CWr-j-asCWBc,10
|
|
36
|
+
paytechuz-0.2.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|