orm-database 0.3.22__py3-none-any.whl → 0.3.23__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.
- {orm_database-0.3.22.dist-info → orm_database-0.3.23.dist-info}/METADATA +15 -1
- {orm_database-0.3.22.dist-info → orm_database-0.3.23.dist-info}/RECORD +5 -5
- {orm_database-0.3.22.dist-info → orm_database-0.3.23.dist-info}/LICENSE +0 -0
- {orm_database-0.3.22.dist-info → orm_database-0.3.23.dist-info}/WHEEL +0 -0
- {orm_database-0.3.22.dist-info → orm_database-0.3.23.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: orm_database
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.23
|
4
4
|
Summary: This module is written to launch your programs with any database you want in the shortest time
|
5
5
|
Home-page: https://github.com/sisrsis/orm-database
|
6
6
|
Author: SISRSIS
|
@@ -276,3 +276,17 @@ async def main():
|
|
276
276
|
await postgres.update_one("pending_order1",{"id":1},{"users":"sis"})
|
277
277
|
|
278
278
|
```
|
279
|
+
|
280
|
+
## find list
|
281
|
+
|
282
|
+
```python
|
283
|
+
data = await postgres.find_list("test",{'username':'s1'})
|
284
|
+
```
|
285
|
+
### output
|
286
|
+
```json
|
287
|
+
[
|
288
|
+
{'id': 13, 'username': 's1', 'market': 'BTC', 'price':97596.33},
|
289
|
+
{'id': 14, 'username': 's1', 'market': 'BTC', 'price':97596.33}
|
290
|
+
]
|
291
|
+
|
292
|
+
```
|
@@ -1,8 +1,8 @@
|
|
1
1
|
orm_database/__init__.py,sha256=q0A0dUBMacf_yaU5m4VWCDlP__pVAz3I1Bhn1RPkv9I,140
|
2
2
|
orm_database/orm_database.py,sha256=O66Adl0Ui6ZaAkAlGYdV-5K5_DQIFTjfaqzfGjrLgag,7917
|
3
3
|
orm_database/orm_query.py,sha256=7fZo-S34z-ZYEE3cdsXvVcoZLQXgrbQi8j1qaCDGMdQ,3907
|
4
|
-
orm_database-0.3.
|
5
|
-
orm_database-0.3.
|
6
|
-
orm_database-0.3.
|
7
|
-
orm_database-0.3.
|
8
|
-
orm_database-0.3.
|
4
|
+
orm_database-0.3.23.dist-info/LICENSE,sha256=v33KAoqx5qhyUNlHOjYmBBKDtd9ymzWB7sR4cova190,1064
|
5
|
+
orm_database-0.3.23.dist-info/METADATA,sha256=6v50UclwYMEwNFQlyvBrEIl3gPF-kbYQnnuH1V1566o,5756
|
6
|
+
orm_database-0.3.23.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
7
|
+
orm_database-0.3.23.dist-info/top_level.txt,sha256=dzcxzqcdsX4x3lqSkz1tVcu1qKX02rXOu6QN3cHggU4,13
|
8
|
+
orm_database-0.3.23.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|