postgresdb3 2.0.3__tar.gz → 2.0.4__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.
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/PKG-INFO +1 -13
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/README.md +0 -12
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3.egg-info/PKG-INFO +1 -13
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/setup.py +1 -1
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/__init__.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/cli.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/core/__init__.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/core/async_db.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/core/sync_db.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/migrations/__init__.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/migrations/engine.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/__init__.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/base.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/expressions.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/fields/__init__.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/fields/base.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/fields/datetime.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/fields/foreign.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/fields/misc.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/fields/numeric.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/fields/text.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/meta.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/models.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/query.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3/orm/relations.py +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3.egg-info/SOURCES.txt +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3.egg-info/dependency_links.txt +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3.egg-info/requires.txt +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/postgresdb3.egg-info/top_level.txt +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/pyproject.toml +0 -0
- {postgresdb3-2.0.3 → postgresdb3-2.0.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: postgresdb3
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
4
4
|
Summary: High-Performance Sync and Async PostgreSQL ORM for Python
|
|
5
5
|
Author: Abdulbosit Alijonov
|
|
6
6
|
Project-URL: Source Code, https://github.com/AlijonovUz/PostgresDB
|
|
@@ -69,18 +69,6 @@ POSTGRESDB_SOURCE_PSYCOPG2=1 pip install postgresdb3
|
|
|
69
69
|
|
|
70
70
|
---
|
|
71
71
|
|
|
72
|
-
## 🚀 Yangi (v2.0) Imkoniyatlari
|
|
73
|
-
|
|
74
|
-
Ushbu "Enterprise" versiyada loyihaga quyidagi gigant imkoniyatlar qo'shildi:
|
|
75
|
-
- **`values()` va `values_list()`** - Xotirani tejash uchun to'g'ridan to'g'ri `dict` yoki `list` qaytarish.
|
|
76
|
-
- **`get_or_create()` va `update_or_create()`** - Kodlarni sezilarli darajada qisqartirish.
|
|
77
|
-
- **`__` orqali Auto-Join** - Munosabatlarni avtomatik bog'lash (Masalan: `filter(user__profile__age__gt=18)`).
|
|
78
|
-
- **Mavhum Modellar (Abstract Models)** - Qayta-qayta kod yozmaslik uchun `class Meta: abstract = True`.
|
|
79
|
-
- **`annotate()` va `aggregate()`** - Murakkab matematik va guruhlash amallari.
|
|
80
|
-
- **`update()` va `delete()` (Ommaviy)** - Obyektlarni bazada bitta qatorda ommaviy tahrirlash yoki o'chirish.
|
|
81
|
-
|
|
82
|
-
---
|
|
83
|
-
|
|
84
72
|
## ⚡ Tezkor Boshlash
|
|
85
73
|
|
|
86
74
|
PostgresDB3 bir vaqtning o'zida ikkita dunyoni qo'llab-quvvatlaydi. Xohlasangiz **Sinxron**, xohlasangiz **Asinxron** loyihalarda bir xil sintaksis bilan ishlay olasiz.
|
|
@@ -47,18 +47,6 @@ POSTGRESDB_SOURCE_PSYCOPG2=1 pip install postgresdb3
|
|
|
47
47
|
|
|
48
48
|
---
|
|
49
49
|
|
|
50
|
-
## 🚀 Yangi (v2.0) Imkoniyatlari
|
|
51
|
-
|
|
52
|
-
Ushbu "Enterprise" versiyada loyihaga quyidagi gigant imkoniyatlar qo'shildi:
|
|
53
|
-
- **`values()` va `values_list()`** - Xotirani tejash uchun to'g'ridan to'g'ri `dict` yoki `list` qaytarish.
|
|
54
|
-
- **`get_or_create()` va `update_or_create()`** - Kodlarni sezilarli darajada qisqartirish.
|
|
55
|
-
- **`__` orqali Auto-Join** - Munosabatlarni avtomatik bog'lash (Masalan: `filter(user__profile__age__gt=18)`).
|
|
56
|
-
- **Mavhum Modellar (Abstract Models)** - Qayta-qayta kod yozmaslik uchun `class Meta: abstract = True`.
|
|
57
|
-
- **`annotate()` va `aggregate()`** - Murakkab matematik va guruhlash amallari.
|
|
58
|
-
- **`update()` va `delete()` (Ommaviy)** - Obyektlarni bazada bitta qatorda ommaviy tahrirlash yoki o'chirish.
|
|
59
|
-
|
|
60
|
-
---
|
|
61
|
-
|
|
62
50
|
## ⚡ Tezkor Boshlash
|
|
63
51
|
|
|
64
52
|
PostgresDB3 bir vaqtning o'zida ikkita dunyoni qo'llab-quvvatlaydi. Xohlasangiz **Sinxron**, xohlasangiz **Asinxron** loyihalarda bir xil sintaksis bilan ishlay olasiz.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: postgresdb3
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
4
4
|
Summary: High-Performance Sync and Async PostgreSQL ORM for Python
|
|
5
5
|
Author: Abdulbosit Alijonov
|
|
6
6
|
Project-URL: Source Code, https://github.com/AlijonovUz/PostgresDB
|
|
@@ -69,18 +69,6 @@ POSTGRESDB_SOURCE_PSYCOPG2=1 pip install postgresdb3
|
|
|
69
69
|
|
|
70
70
|
---
|
|
71
71
|
|
|
72
|
-
## 🚀 Yangi (v2.0) Imkoniyatlari
|
|
73
|
-
|
|
74
|
-
Ushbu "Enterprise" versiyada loyihaga quyidagi gigant imkoniyatlar qo'shildi:
|
|
75
|
-
- **`values()` va `values_list()`** - Xotirani tejash uchun to'g'ridan to'g'ri `dict` yoki `list` qaytarish.
|
|
76
|
-
- **`get_or_create()` va `update_or_create()`** - Kodlarni sezilarli darajada qisqartirish.
|
|
77
|
-
- **`__` orqali Auto-Join** - Munosabatlarni avtomatik bog'lash (Masalan: `filter(user__profile__age__gt=18)`).
|
|
78
|
-
- **Mavhum Modellar (Abstract Models)** - Qayta-qayta kod yozmaslik uchun `class Meta: abstract = True`.
|
|
79
|
-
- **`annotate()` va `aggregate()`** - Murakkab matematik va guruhlash amallari.
|
|
80
|
-
- **`update()` va `delete()` (Ommaviy)** - Obyektlarni bazada bitta qatorda ommaviy tahrirlash yoki o'chirish.
|
|
81
|
-
|
|
82
|
-
---
|
|
83
|
-
|
|
84
72
|
## ⚡ Tezkor Boshlash
|
|
85
73
|
|
|
86
74
|
PostgresDB3 bir vaqtning o'zida ikkita dunyoni qo'llab-quvvatlaydi. Xohlasangiz **Sinxron**, xohlasangiz **Asinxron** loyihalarda bir xil sintaksis bilan ishlay olasiz.
|
|
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
|