paytechuz 0.2.8__tar.gz → 0.2.9__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.8 → paytechuz-0.2.9}/PKG-INFO +11 -5
- {paytechuz-0.2.8 → paytechuz-0.2.9}/README.md +10 -4
- {paytechuz-0.2.8 → paytechuz-0.2.9}/pyproject.toml +1 -1
- {paytechuz-0.2.8 → paytechuz-0.2.9}/setup.py +1 -1
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz.egg-info/PKG-INFO +11 -5
- {paytechuz-0.2.8 → paytechuz-0.2.9}/MANIFEST.in +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/setup.cfg +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/core/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/core/base.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/core/constants.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/core/exceptions.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/core/http.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/core/payme/errors.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/core/utils.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/click/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/click/client.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/click/merchant.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/click/webhook.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/payme/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/payme/cards.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/payme/client.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/payme/receipts.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/gateways/payme/webhook.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/admin.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/apps.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/migrations/0001_initial.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/migrations/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/models.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/signals.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/views.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/django/webhooks.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/fastapi/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/fastapi/models.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/fastapi/routes.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/integrations/fastapi/schemas.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/core/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/core/base.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/core/constants.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/core/exceptions.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/core/http.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/core/payme/errors.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/core/utils.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/click/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/click/client.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/click/merchant.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/click/webhook.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/payme/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/payme/cards.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/payme/client.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/payme/receipts.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/gateways/payme/webhook.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/admin.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/apps.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/migrations/0001_initial.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/migrations/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/models.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/signals.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/views.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/webhooks.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/fastapi/__init__.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/fastapi/models.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/fastapi/routes.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz/integrations/fastapi/schemas.py +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz.egg-info/SOURCES.txt +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz.egg-info/dependency_links.txt +0 -0
- {paytechuz-0.2.8 → paytechuz-0.2.9}/src/paytechuz.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paytechuz
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.9
|
|
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
|
|
@@ -13,7 +13,7 @@ Dynamic: author-email
|
|
|
13
13
|
Dynamic: home-page
|
|
14
14
|
Dynamic: requires-python
|
|
15
15
|
|
|
16
|
-
#
|
|
16
|
+
# paytechuz
|
|
17
17
|
|
|
18
18
|
[](https://badge.fury.io/py/paytechuz)
|
|
19
19
|
[](https://pypi.org/project/paytechuz/)
|
|
@@ -185,12 +185,15 @@ urlpatterns = [
|
|
|
185
185
|
1. Set up database models:
|
|
186
186
|
|
|
187
187
|
```python
|
|
188
|
-
from
|
|
189
|
-
|
|
188
|
+
from datetime import datetime, timezone
|
|
189
|
+
|
|
190
190
|
from sqlalchemy.orm import sessionmaker
|
|
191
|
+
from sqlalchemy.ext.declarative import declarative_base
|
|
192
|
+
from sqlalchemy import create_engine, Column, Integer, String, Float, DateTime
|
|
193
|
+
|
|
191
194
|
from paytechuz.integrations.fastapi import Base as PaymentsBase
|
|
192
195
|
from paytechuz.integrations.fastapi.models import run_migrations
|
|
193
|
-
|
|
196
|
+
|
|
194
197
|
|
|
195
198
|
# Create database engine
|
|
196
199
|
SQLALCHEMY_DATABASE_URL = "sqlite:///./payments.db"
|
|
@@ -223,9 +226,12 @@ SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
|
223
226
|
|
|
224
227
|
```python
|
|
225
228
|
from fastapi import FastAPI, Request, Depends
|
|
229
|
+
|
|
226
230
|
from sqlalchemy.orm import Session
|
|
231
|
+
|
|
227
232
|
from paytechuz.integrations.fastapi import PaymeWebhookHandler, ClickWebhookHandler
|
|
228
233
|
|
|
234
|
+
|
|
229
235
|
app = FastAPI()
|
|
230
236
|
|
|
231
237
|
# Dependency to get the database session
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# paytechuz
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/py/paytechuz)
|
|
4
4
|
[](https://pypi.org/project/paytechuz/)
|
|
@@ -170,12 +170,15 @@ urlpatterns = [
|
|
|
170
170
|
1. Set up database models:
|
|
171
171
|
|
|
172
172
|
```python
|
|
173
|
-
from
|
|
174
|
-
|
|
173
|
+
from datetime import datetime, timezone
|
|
174
|
+
|
|
175
175
|
from sqlalchemy.orm import sessionmaker
|
|
176
|
+
from sqlalchemy.ext.declarative import declarative_base
|
|
177
|
+
from sqlalchemy import create_engine, Column, Integer, String, Float, DateTime
|
|
178
|
+
|
|
176
179
|
from paytechuz.integrations.fastapi import Base as PaymentsBase
|
|
177
180
|
from paytechuz.integrations.fastapi.models import run_migrations
|
|
178
|
-
|
|
181
|
+
|
|
179
182
|
|
|
180
183
|
# Create database engine
|
|
181
184
|
SQLALCHEMY_DATABASE_URL = "sqlite:///./payments.db"
|
|
@@ -208,9 +211,12 @@ SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
|
208
211
|
|
|
209
212
|
```python
|
|
210
213
|
from fastapi import FastAPI, Request, Depends
|
|
214
|
+
|
|
211
215
|
from sqlalchemy.orm import Session
|
|
216
|
+
|
|
212
217
|
from paytechuz.integrations.fastapi import PaymeWebhookHandler, ClickWebhookHandler
|
|
213
218
|
|
|
219
|
+
|
|
214
220
|
app = FastAPI()
|
|
215
221
|
|
|
216
222
|
# Dependency to get the database session
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paytechuz
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.9
|
|
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
|
|
@@ -13,7 +13,7 @@ Dynamic: author-email
|
|
|
13
13
|
Dynamic: home-page
|
|
14
14
|
Dynamic: requires-python
|
|
15
15
|
|
|
16
|
-
#
|
|
16
|
+
# paytechuz
|
|
17
17
|
|
|
18
18
|
[](https://badge.fury.io/py/paytechuz)
|
|
19
19
|
[](https://pypi.org/project/paytechuz/)
|
|
@@ -185,12 +185,15 @@ urlpatterns = [
|
|
|
185
185
|
1. Set up database models:
|
|
186
186
|
|
|
187
187
|
```python
|
|
188
|
-
from
|
|
189
|
-
|
|
188
|
+
from datetime import datetime, timezone
|
|
189
|
+
|
|
190
190
|
from sqlalchemy.orm import sessionmaker
|
|
191
|
+
from sqlalchemy.ext.declarative import declarative_base
|
|
192
|
+
from sqlalchemy import create_engine, Column, Integer, String, Float, DateTime
|
|
193
|
+
|
|
191
194
|
from paytechuz.integrations.fastapi import Base as PaymentsBase
|
|
192
195
|
from paytechuz.integrations.fastapi.models import run_migrations
|
|
193
|
-
|
|
196
|
+
|
|
194
197
|
|
|
195
198
|
# Create database engine
|
|
196
199
|
SQLALCHEMY_DATABASE_URL = "sqlite:///./payments.db"
|
|
@@ -223,9 +226,12 @@ SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
|
223
226
|
|
|
224
227
|
```python
|
|
225
228
|
from fastapi import FastAPI, Request, Depends
|
|
229
|
+
|
|
226
230
|
from sqlalchemy.orm import Session
|
|
231
|
+
|
|
227
232
|
from paytechuz.integrations.fastapi import PaymeWebhookHandler, ClickWebhookHandler
|
|
228
233
|
|
|
234
|
+
|
|
229
235
|
app = FastAPI()
|
|
230
236
|
|
|
231
237
|
# Dependency to get the database session
|
|
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.8 → paytechuz-0.2.9}/src/paytechuz/integrations/django/migrations/0001_initial.py
RENAMED
|
File without changes
|
{paytechuz-0.2.8 → paytechuz-0.2.9}/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
|