postgresdb3 0.3.3__tar.gz → 0.3.5__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.
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: postgresdb3
3
- Version: 0.3.3
3
+ Version: 0.3.5
4
4
  Summary: Python uchun oddiy PostgreSQL wrapper
5
5
  Author: Abdulbosit Alijonov
6
6
  Project-URL: Source Code, https://github.com/AlijonovUz/PostgresDB
7
- Classifier: Programming Language :: Python :: 3
7
+ Classifier: Programming Language :: Python :: 3.9
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
- Requires-Python: >=3.7
10
+ Requires-Python: >=3.9
11
11
  Description-Content-Type: text/markdown
12
12
  Requires-Dist: psycopg2>=2.9
13
13
  Requires-Dist: asyncpg>=0.31.0
@@ -22,8 +22,8 @@ Dynamic: summary
22
22
 
23
23
  # PostgresDB
24
24
 
25
- ![PyPI Version](https://img.shields.io/pypi/v/nameuz)
26
- ![Python Version](https://img.shields.io/pypi/pyversions/nameuz)
25
+ ![PyPI Version](https://img.shields.io/pypi/v/postgresdb3)
26
+ ![Python Version](https://img.shields.io/pypi/pyversions/postgresdb3)
27
27
  ![License](https://img.shields.io/badge/license-MIT-green)
28
28
 
29
29
  Oddiy va qulay Python wrapper PostgreSQL bazasi bilan ishlash uchun.
@@ -142,10 +142,6 @@ async def main():
142
142
  specific_users = await db.select("users", where=("age > $1 AND name = $2", [18, "Ali"]))
143
143
  print("Maxsus foydalanuvchi:", specific_users)
144
144
 
145
- # Faqat 2 ta qatorni olish
146
- users = await db.select("users", fetchmany=2)
147
- print(users)
148
-
149
145
  # Jadvaldagi ma'lumotni yangilash
150
146
  await db.update("users", "age", 26, "name", "Ali")
151
147
 
@@ -1,7 +1,7 @@
1
1
  # PostgresDB
2
2
 
3
- ![PyPI Version](https://img.shields.io/pypi/v/nameuz)
4
- ![Python Version](https://img.shields.io/pypi/pyversions/nameuz)
3
+ ![PyPI Version](https://img.shields.io/pypi/v/postgresdb3)
4
+ ![Python Version](https://img.shields.io/pypi/pyversions/postgresdb3)
5
5
  ![License](https://img.shields.io/badge/license-MIT-green)
6
6
 
7
7
  Oddiy va qulay Python wrapper PostgreSQL bazasi bilan ishlash uchun.
@@ -120,10 +120,6 @@ async def main():
120
120
  specific_users = await db.select("users", where=("age > $1 AND name = $2", [18, "Ali"]))
121
121
  print("Maxsus foydalanuvchi:", specific_users)
122
122
 
123
- # Faqat 2 ta qatorni olish
124
- users = await db.select("users", fetchmany=2)
125
- print(users)
126
-
127
123
  # Jadvaldagi ma'lumotni yangilash
128
124
  await db.update("users", "age", 26, "name", "Ali")
129
125
 
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: postgresdb3
3
- Version: 0.3.3
3
+ Version: 0.3.5
4
4
  Summary: Python uchun oddiy PostgreSQL wrapper
5
5
  Author: Abdulbosit Alijonov
6
6
  Project-URL: Source Code, https://github.com/AlijonovUz/PostgresDB
7
- Classifier: Programming Language :: Python :: 3
7
+ Classifier: Programming Language :: Python :: 3.9
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
- Requires-Python: >=3.7
10
+ Requires-Python: >=3.9
11
11
  Description-Content-Type: text/markdown
12
12
  Requires-Dist: psycopg2>=2.9
13
13
  Requires-Dist: asyncpg>=0.31.0
@@ -22,8 +22,8 @@ Dynamic: summary
22
22
 
23
23
  # PostgresDB
24
24
 
25
- ![PyPI Version](https://img.shields.io/pypi/v/nameuz)
26
- ![Python Version](https://img.shields.io/pypi/pyversions/nameuz)
25
+ ![PyPI Version](https://img.shields.io/pypi/v/postgresdb3)
26
+ ![Python Version](https://img.shields.io/pypi/pyversions/postgresdb3)
27
27
  ![License](https://img.shields.io/badge/license-MIT-green)
28
28
 
29
29
  Oddiy va qulay Python wrapper PostgreSQL bazasi bilan ishlash uchun.
@@ -142,10 +142,6 @@ async def main():
142
142
  specific_users = await db.select("users", where=("age > $1 AND name = $2", [18, "Ali"]))
143
143
  print("Maxsus foydalanuvchi:", specific_users)
144
144
 
145
- # Faqat 2 ta qatorni olish
146
- users = await db.select("users", fetchmany=2)
147
- print(users)
148
-
149
145
  # Jadvaldagi ma'lumotni yangilash
150
146
  await db.update("users", "age", 26, "name", "Ali")
151
147
 
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as f:
5
5
 
6
6
  setup(
7
7
  name="postgresdb3",
8
- version="0.3.3",
8
+ version="0.3.5",
9
9
  packages=find_packages(),
10
10
  install_requires=[
11
11
  "psycopg2>=2.9",
@@ -19,9 +19,9 @@ setup(
19
19
  "Source Code": "https://github.com/AlijonovUz/PostgresDB",
20
20
  },
21
21
  classifiers=[
22
- "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.9",
23
23
  "License :: OSI Approved :: MIT License",
24
24
  "Operating System :: OS Independent",
25
25
  ],
26
- python_requires='>=3.7',
26
+ python_requires='>=3.9',
27
27
  )
File without changes
File without changes