ormlambda 1.5.0__py3-none-any.whl → 2.0.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.
- ormlambda/__init__.py +9 -2
- ormlambda/common/__init__.py +0 -1
- ormlambda/common/abstract_classes/__init__.py +1 -1
- ormlambda/common/abstract_classes/abstract_model.py +13 -228
- ormlambda/common/abstract_classes/non_query_base.py +7 -5
- ormlambda/common/abstract_classes/query_base.py +5 -2
- ormlambda/common/enums/__init__.py +1 -1
- ormlambda/common/enums/join_type.py +2 -1
- ormlambda/common/interfaces/IQueryCommand.py +2 -1
- ormlambda/common/interfaces/IRepositoryBase.py +4 -18
- ormlambda/common/interfaces/IStatements.py +33 -15
- ormlambda/common/interfaces/__init__.py +1 -1
- ormlambda/components/delete/abstract_delete.py +6 -3
- ormlambda/components/insert/IInsert.py +1 -1
- ormlambda/components/insert/abstract_insert.py +8 -4
- ormlambda/components/select/ISelect.py +1 -1
- ormlambda/components/select/table_column.py +5 -1
- ormlambda/components/update/IUpdate.py +1 -1
- ormlambda/components/update/__init__.py +1 -1
- ormlambda/components/update/abstract_update.py +9 -5
- ormlambda/components/upsert/__init__.py +1 -1
- ormlambda/components/upsert/abstract_upsert.py +8 -4
- ormlambda/components/where/abstract_where.py +6 -2
- ormlambda/databases/my_sql/clauses/__init__.py +1 -0
- ormlambda/databases/my_sql/clauses/count.py +35 -0
- ormlambda/databases/my_sql/clauses/create_database.py +17 -10
- ormlambda/databases/my_sql/clauses/delete.py +7 -4
- ormlambda/databases/my_sql/clauses/drop_database.py +1 -1
- ormlambda/databases/my_sql/clauses/drop_table.py +1 -1
- ormlambda/databases/my_sql/clauses/insert.py +4 -3
- ormlambda/databases/my_sql/clauses/joins.py +8 -7
- ormlambda/databases/my_sql/clauses/limit.py +1 -1
- ormlambda/databases/my_sql/clauses/offset.py +1 -1
- ormlambda/databases/my_sql/clauses/order.py +3 -3
- ormlambda/databases/my_sql/clauses/select.py +5 -5
- ormlambda/databases/my_sql/clauses/update.py +3 -3
- ormlambda/databases/my_sql/clauses/upsert.py +3 -3
- ormlambda/databases/my_sql/clauses/where_condition.py +5 -5
- ormlambda/databases/my_sql/repository.py +57 -27
- ormlambda/databases/my_sql/statements.py +200 -43
- ormlambda/model_base.py +2 -4
- ormlambda/utils/column.py +4 -3
- ormlambda/utils/dtypes.py +6 -8
- ormlambda/utils/foreign_key.py +55 -10
- ormlambda/utils/lambda_disassembler/__init__.py +1 -1
- ormlambda/utils/lambda_disassembler/dis_types.py +22 -25
- ormlambda/utils/lambda_disassembler/tree_instruction.py +1 -1
- ormlambda/utils/module_tree/dynamic_module.py +6 -4
- ormlambda/utils/table_constructor.py +39 -22
- {ormlambda-1.5.0.dist-info → ormlambda-2.0.2.dist-info}/METADATA +13 -9
- ormlambda-2.0.2.dist-info/RECORD +71 -0
- ormlambda-1.5.0.dist-info/RECORD +0 -70
- {ormlambda-1.5.0.dist-info → ormlambda-2.0.2.dist-info}/LICENSE +0 -0
- {ormlambda-1.5.0.dist-info → ormlambda-2.0.2.dist-info}/WHEEL +0 -0
@@ -1,16 +1,20 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ormlambda
|
3
|
-
Version:
|
3
|
+
Version: 2.0.2
|
4
4
|
Summary: ORM designed to interact with the database (currently with MySQL) using lambda functions and nested functions
|
5
5
|
Author: p-hzamora
|
6
6
|
Author-email: p.hzamora@icloud.com
|
7
7
|
Requires-Python: >=3.12,<4.0
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
9
|
Classifier: Programming Language :: Python :: 3.12
|
10
|
-
Requires-Dist:
|
11
|
-
Requires-Dist:
|
10
|
+
Requires-Dist: fluent-validation (>=3.1.0,<4.0.0)
|
11
|
+
Requires-Dist: mysql-connector-python (>=9.0.0,<10.0.0)
|
12
12
|
Description-Content-Type: text/markdown
|
13
13
|
|
14
|
+

|
15
|
+

|
16
|
+

|
17
|
+
|
14
18
|
# ormMySQL
|
15
19
|
This ORM is designed to connect with a MySQL server, facilitating the management of various database queries. Built with flexibility and efficiency in mind, this ORM empowers developers to interact with the database using lambda functions, allowing for concise and expressive query construction.
|
16
20
|
|
@@ -19,7 +23,7 @@ This ORM is designed to connect with a MySQL server, facilitating the management
|
|
19
23
|
## Initialize MySQLRepository
|
20
24
|
```python
|
21
25
|
from decouple import config
|
22
|
-
from
|
26
|
+
from ormlambda.databases.my_sql import MySQLRepository
|
23
27
|
|
24
28
|
USERNAME = config("USERNAME")
|
25
29
|
PASSWORD = config("PASSWORD")
|
@@ -31,7 +35,7 @@ database = MySQLRepository(user=USERNAME, password=PASSWORD, database="sakila",
|
|
31
35
|
|
32
36
|
## Select all columns
|
33
37
|
```python
|
34
|
-
from
|
38
|
+
from models.address import AddressModel
|
35
39
|
|
36
40
|
result = AddressModel(database).select()
|
37
41
|
```
|
@@ -41,8 +45,8 @@ The `result` var will be of type `tuple[Address, ...]`
|
|
41
45
|
Once the `AddressModel` class is created, we will not only be able to access all the information in that table, but also all the information in all the tables that have foreign keys related to it."
|
42
46
|
|
43
47
|
```python
|
44
|
-
from
|
45
|
-
from
|
48
|
+
from ormlambda import ConditionType
|
49
|
+
from models.address import AddressModel
|
46
50
|
|
47
51
|
|
48
52
|
result = AddressModel(database).where(lambda x: (x.City.Country, ConditionType.REGEXP, r"^[aA]")).select(
|
@@ -135,13 +139,13 @@ The easiest way to map your tables is:
|
|
135
139
|
```python
|
136
140
|
from datetime import datetime
|
137
141
|
|
138
|
-
from
|
142
|
+
from ormlambda import (
|
139
143
|
Column,
|
140
144
|
Table,
|
141
145
|
BaseModel,
|
142
146
|
ForeignKey,
|
143
147
|
)
|
144
|
-
from
|
148
|
+
from ormlambda.common.interfaces import IStatements_two_generic, IRepositoryBase
|
145
149
|
|
146
150
|
|
147
151
|
class Country(Table):
|
@@ -0,0 +1,71 @@
|
|
1
|
+
ormlambda/__init__.py,sha256=L-Enc4FPmW3ldBMnWOU3gLn9i4FEc7sQzLWy2mIEti8,538
|
2
|
+
ormlambda/common/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
ormlambda/common/abstract_classes/__init__.py,sha256=tk2J4Mn_nD-1ZjtMVBE5FH7KR_8ppN_1Kx1s6c38GjM,167
|
4
|
+
ormlambda/common/abstract_classes/abstract_model.py,sha256=Eguy4jQQdLAKvYZgDqUB1V4driBsYoiDuyPZ-DwPi5A,3867
|
5
|
+
ormlambda/common/abstract_classes/non_query_base.py,sha256=5jhvyT7OZaJxlGp9XMP3vQ4ei5QQZBn-fFtJnD640mE,980
|
6
|
+
ormlambda/common/abstract_classes/query_base.py,sha256=6qUFPwsVx45kUW3b66pHiSyjhcH4mzbdkddlGeUnG7c,266
|
7
|
+
ormlambda/common/enums/__init__.py,sha256=4lVKCHi1JalwgNzjsAXqX-C54NJEH83y2v5baMO8fN4,103
|
8
|
+
ormlambda/common/enums/condition_types.py,sha256=mDPMrtzZu4IYv3-q5Zw4NNgwUoNAx4lih5SIDFRn1Qo,309
|
9
|
+
ormlambda/common/enums/join_type.py,sha256=7LEhE34bzYOwJxe8yxPJo_EjQpGylgClAPX1Wt3z4n4,292
|
10
|
+
ormlambda/common/interfaces/INonQueryCommand.py,sha256=7CjLW4sKqkR5zUIGvhRXOtzTs6vypJW1a9EJHlgCw2c,260
|
11
|
+
ormlambda/common/interfaces/IQueryCommand.py,sha256=hfzCosK4-n8RJIb2PYs8b0qU3TNmfYluZXBf47KxxKs,331
|
12
|
+
ormlambda/common/interfaces/IRepositoryBase.py,sha256=iWZ9X2qjvacZHdbykrE5wAMyi-4LJLKcNvtNTGD6S-8,1398
|
13
|
+
ormlambda/common/interfaces/IStatements.py,sha256=Ab9NMRWev6_TWw-g_rTQ2ogWxEwNps4iqlvAOSFSOY8,9799
|
14
|
+
ormlambda/common/interfaces/__init__.py,sha256=4tthR8pNIHGvgu0n7i3ZEQYP_R3wmqh40l34cAZbM2o,244
|
15
|
+
ormlambda/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
+
ormlambda/components/delete/IDelete.py,sha256=06ZEdbKBxsHSwsGMBu0E1om4WJjojZAm-L3b95eQrcc,139
|
17
|
+
ormlambda/components/delete/__init__.py,sha256=X_at2L4QkxDVK1olXhFHqNemkB8Dxbb7BYqv0EJyu7M,102
|
18
|
+
ormlambda/components/delete/abstract_delete.py,sha256=ca-AO3nM9MMhy0hofNLjnCod92meiWzRT2vitj8N-l4,535
|
19
|
+
ormlambda/components/insert/IInsert.py,sha256=YIfMPlKu7UGgnVpZuhpr0Mtnefe-O85hqk8-GZrVK7w,139
|
20
|
+
ormlambda/components/insert/__init__.py,sha256=TGShCJZwejK3zZCRistBAKoDy2NNDRR_w1LXIbN66Dk,102
|
21
|
+
ormlambda/components/insert/abstract_insert.py,sha256=ctaXd6TB8fo3Fl7NHNA-wOmbCpivU-9uUs7O628RUW0,684
|
22
|
+
ormlambda/components/select/ISelect.py,sha256=_BkOHbO_ICHDjkzgxbenrauCKIDJ40zeFTIG0FjWRCE,319
|
23
|
+
ormlambda/components/select/__init__.py,sha256=BygaFGphVgGT0Zke4WhzdBQMUxevC34Qseok9qutaJE,95
|
24
|
+
ormlambda/components/select/table_column.py,sha256=AF4mQvHJnXzE95yP4iNnZCsNDLaYElL16tIo0ZMs7yc,1311
|
25
|
+
ormlambda/components/update/IUpdate.py,sha256=U-3Wx8lyCglhxf9gCXWO3MVgydG6gfRpzp00_MHC5cU,168
|
26
|
+
ormlambda/components/update/__init__.py,sha256=o1VjlfXgjftZgp64O10rzCGaDZCbdTZRRtjIlojTUWA,102
|
27
|
+
ormlambda/components/update/abstract_update.py,sha256=PV6B7FF9nzixmhnZZGG3Xrot8-ycH-oS3IHkHQdabx4,888
|
28
|
+
ormlambda/components/upsert/IUpsert.py,sha256=2m6Bcwa0X80IDLnf0QErqr01uYEydOnRta9_T1nxjK4,139
|
29
|
+
ormlambda/components/upsert/__init__.py,sha256=2hv7-McdU8Jv1ZJ4J3v94brN2H_fXvVDS8ZEA9CsfPA,102
|
30
|
+
ormlambda/components/upsert/abstract_upsert.py,sha256=ES-AicvMYBoLvH77JR6wir4kPkI4ZF9LA1-eQhsjKYI,684
|
31
|
+
ormlambda/components/where/__init__.py,sha256=mI-ylB6cTTVf3rtCX54apgZrMP6y9tTD7-X3Ct0RFxw,56
|
32
|
+
ormlambda/components/where/abstract_where.py,sha256=93tIJBC81OUUVV6il7mISibBwqJeodQdFFQ9DShDKOQ,344
|
33
|
+
ormlambda/databases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
+
ormlambda/databases/my_sql/__init__.py,sha256=3PbOp4WqxJzFOSRwBozqyNtQi25cLLdiJFPDzEnSI70,115
|
35
|
+
ormlambda/databases/my_sql/clauses/__init__.py,sha256=xZ4esQfSRHb68M2Bm2B8deJCtDVrUHgpktFAJnakc8s,694
|
36
|
+
ormlambda/databases/my_sql/clauses/count.py,sha256=vCQR0jK15t7C31lN0tCwZsmYhqx7fKV8xkSJkStO9vE,1151
|
37
|
+
ormlambda/databases/my_sql/clauses/create_database.py,sha256=WnWaAuhxeE71NZKXW37WZ-msRqjum7TFCSRK1IGdSTE,1279
|
38
|
+
ormlambda/databases/my_sql/clauses/delete.py,sha256=nUKNQgwF5YUfzk2icWpecYjrGk5DeXpp7eiwtWCf_3c,1924
|
39
|
+
ormlambda/databases/my_sql/clauses/drop_database.py,sha256=nMM0YUbcH0D9X3bU70Uc6S_dsIrAZy-IrYuIKrQZNrg,505
|
40
|
+
ormlambda/databases/my_sql/clauses/drop_table.py,sha256=meX4e-pVPQ7UwlPSHV5e9HHRblI1BlkLSc7ssl8WUiI,592
|
41
|
+
ormlambda/databases/my_sql/clauses/insert.py,sha256=LO9H8VVK3j62dICXqpEUXKxOHPxkD1LGvogmDq2zmho,2805
|
42
|
+
ormlambda/databases/my_sql/clauses/joins.py,sha256=U6JnUvQo7AXyEeK-X1jMvckXefgAB7ugSmJCZhH1XQI,3058
|
43
|
+
ormlambda/databases/my_sql/clauses/limit.py,sha256=a4lI8FVRKpfXwBQTXdkbVtlQkmzcjE20ymiCy1IaSc4,391
|
44
|
+
ormlambda/databases/my_sql/clauses/offset.py,sha256=81170JhsQndjKlDfQj1ll-tiYHQbW8SuU4IE3mhQF7Y,395
|
45
|
+
ormlambda/databases/my_sql/clauses/order.py,sha256=AcTD7aeaaz-isyjs1_CkRCb7z8b7o5GhpMxc_2G5IgI,1030
|
46
|
+
ormlambda/databases/my_sql/clauses/select.py,sha256=fUeyh2FKud1FOWUGrZCiX-Q2YAcC_EOJ8xCG-SMBDgk,6620
|
47
|
+
ormlambda/databases/my_sql/clauses/update.py,sha256=3Htw0_PT3EckEiF214-V2r63lcNoRBroKZI9yg48Ddg,1867
|
48
|
+
ormlambda/databases/my_sql/clauses/upsert.py,sha256=eW2pQ4ax-GKuXiaWKoSRSS1GrHuILJBsmj83ADbBQ34,1951
|
49
|
+
ormlambda/databases/my_sql/clauses/where_condition.py,sha256=eG514q4Boc2HCZl9MlI5vBKhwQHS9ANpHcTFgLw85vw,8314
|
50
|
+
ormlambda/databases/my_sql/repository.py,sha256=VV1G2LWfRu0KPBQnyiVm0tTCleDqVJvWwqfcsKBptlQ,7446
|
51
|
+
ormlambda/databases/my_sql/statements.py,sha256=WMHrCuQcjWjFyP5v9A_2L_w7N_AjP5Z_PtYjj2-2vYs,10209
|
52
|
+
ormlambda/model_base.py,sha256=x7PUPNslRh4hTNsDDUwuh_maKjEFsHIvee4a6rcyNV8,1064
|
53
|
+
ormlambda/utils/__init__.py,sha256=ywMdWqmA2jHj19-W-S04yfaYF5hv4IZ1lZDq0B8Jnjs,142
|
54
|
+
ormlambda/utils/column.py,sha256=5FAGzCU4yvNS4MhwJJ5i73h7RvHD5UCVox0NdzMsMiE,1945
|
55
|
+
ormlambda/utils/dtypes.py,sha256=1kRsT5JggNS1DMWgSUdBb67CefQHnZ-VTN1WI7nN2yQ,7879
|
56
|
+
ormlambda/utils/foreign_key.py,sha256=ewGLPtf1MrFogvwGm_jsSnOLAH2G9virXvLcc3co36I,2973
|
57
|
+
ormlambda/utils/lambda_disassembler/__init__.py,sha256=q23_F2Vp1_XgVpQSbWQPM5wxzRCZOr7ZMb9X5VG_YxU,229
|
58
|
+
ormlambda/utils/lambda_disassembler/dis_types.py,sha256=Myuo9-KSBIJSyr9jfLSDDe1jbrzyOqZNLufv6ODHm98,4824
|
59
|
+
ormlambda/utils/lambda_disassembler/disassembler.py,sha256=Zc_hFeEheCiBtFIo39F573uU3jkkB-VyA-wJGICqs44,2019
|
60
|
+
ormlambda/utils/lambda_disassembler/dtypes.py,sha256=QtftGMCcb4arAQnXkwGQ1VeV-6x0mZdRTfZmxLkAtFo,6449
|
61
|
+
ormlambda/utils/lambda_disassembler/name_of.py,sha256=Cjic_GzqgArxx7kDUMOGYmmNRHj7HcxG-kcDfAhA5yk,1142
|
62
|
+
ormlambda/utils/lambda_disassembler/nested_element.py,sha256=nXwytOwBbPYSTMxksQTRMhSeqRIMpIcVWg70loVtQ_k,1234
|
63
|
+
ormlambda/utils/lambda_disassembler/tree_instruction.py,sha256=QUnhG89WKJyAlEWAjK5SRZwYgFheHnMw-yUjvVvYhvM,5122
|
64
|
+
ormlambda/utils/module_tree/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
65
|
+
ormlambda/utils/module_tree/dfs_traversal.py,sha256=lSF03G63XtJFLp03ueAmsHMBvhUkjptDbK3IugXm8iU,1425
|
66
|
+
ormlambda/utils/module_tree/dynamic_module.py,sha256=zwvjU3U2cz6H2CDp9Gncs5D5bSAyfITNa2SDqFDl8rw,8551
|
67
|
+
ormlambda/utils/table_constructor.py,sha256=I2oFTfa6BPTILY6UDYGZy4fJxZazZMkH89NObkfRemo,11480
|
68
|
+
ormlambda-2.0.2.dist-info/LICENSE,sha256=xBprFw8GJLdHMOoUqDk0427EvjIcbEREvXXVFULuuXU,1080
|
69
|
+
ormlambda-2.0.2.dist-info/METADATA,sha256=U-ZDe8cECW4qzskQuGo7P-XjFXlM-aEbui_VNopO36U,8428
|
70
|
+
ormlambda-2.0.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
71
|
+
ormlambda-2.0.2.dist-info/RECORD,,
|
ormlambda-1.5.0.dist-info/RECORD
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
ormlambda/__init__.py,sha256=nRG76yZWhrJVqckoYaej3wI2iN2uU--MvqI8Zx_SzWQ,242
|
2
|
-
ormlambda/common/__init__.py,sha256=daEdpEyAJIa8b2VkCqSKcw8PaExcB6Qro80XNes_sHA,2
|
3
|
-
ormlambda/common/abstract_classes/__init__.py,sha256=LZUlffEFZ98DO9MNlw2PloI4xR8Qf9WitIjafBmE9WQ,166
|
4
|
-
ormlambda/common/abstract_classes/abstract_model.py,sha256=-n7Uu9lLQbRJPU7JQIG90HLFaKci3czeqH9ov90HVFY,12835
|
5
|
-
ormlambda/common/abstract_classes/non_query_base.py,sha256=HCzvbiCiyIVIOwiFqDNf5HYatIG6XCWQs3_p6CaTrpw,879
|
6
|
-
ormlambda/common/abstract_classes/query_base.py,sha256=kCGaYpdl4laekmRgtMnkJknsgC4D2BsXYKDj3aP2DvQ,194
|
7
|
-
ormlambda/common/enums/__init__.py,sha256=cKLaRnQqrnywNnDZSvMab67pV3Bw2iqwEI-gyL7yrFE,102
|
8
|
-
ormlambda/common/enums/condition_types.py,sha256=mDPMrtzZu4IYv3-q5Zw4NNgwUoNAx4lih5SIDFRn1Qo,309
|
9
|
-
ormlambda/common/enums/join_type.py,sha256=iRtmY-Zw61jl8zI1Jax65CCqk2qPRjs_6UmiLOpY5F4,290
|
10
|
-
ormlambda/common/interfaces/INonQueryCommand.py,sha256=7CjLW4sKqkR5zUIGvhRXOtzTs6vypJW1a9EJHlgCw2c,260
|
11
|
-
ormlambda/common/interfaces/IQueryCommand.py,sha256=Ins6SufOqL2kAHe-l8f9Kv5NIg0TpqtwLt7Ci0zzpf0,331
|
12
|
-
ormlambda/common/interfaces/IRepositoryBase.py,sha256=I05nCEFMoSRklnQt4fn8ase6YqNeS-qSxRPH_wqrB58,1859
|
13
|
-
ormlambda/common/interfaces/IStatements.py,sha256=VBrVqqsqmaUinSgE11knMfRxZjSeBCwldjCsiBb5jm4,9124
|
14
|
-
ormlambda/common/interfaces/__init__.py,sha256=Ane8WwjRFadOhoSRCbnphV4_SnE0jAE77DLj8ZZJaRg,243
|
15
|
-
ormlambda/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
-
ormlambda/components/delete/IDelete.py,sha256=06ZEdbKBxsHSwsGMBu0E1om4WJjojZAm-L3b95eQrcc,139
|
17
|
-
ormlambda/components/delete/__init__.py,sha256=X_at2L4QkxDVK1olXhFHqNemkB8Dxbb7BYqv0EJyu7M,102
|
18
|
-
ormlambda/components/delete/abstract_delete.py,sha256=rLOWzKY1Mu-YMgOOU0DSV2XNIklkZCs5RlceZMxWB34,468
|
19
|
-
ormlambda/components/insert/IInsert.py,sha256=MDiMFmePra9coEMWmEg5EUhxAIXLxZ9yX5uG-qP7Nl4,137
|
20
|
-
ormlambda/components/insert/__init__.py,sha256=TGShCJZwejK3zZCRistBAKoDy2NNDRR_w1LXIbN66Dk,102
|
21
|
-
ormlambda/components/insert/abstract_insert.py,sha256=9tKMmMgbQe8NwOisNnTHtiFN-4cwnLVO61v-EHwFiXc,602
|
22
|
-
ormlambda/components/select/ISelect.py,sha256=MufLURuFjILvuidLQEI5Dx032cnHE2OaC0u2pQSlJRs,312
|
23
|
-
ormlambda/components/select/__init__.py,sha256=BygaFGphVgGT0Zke4WhzdBQMUxevC34Qseok9qutaJE,95
|
24
|
-
ormlambda/components/select/table_column.py,sha256=yseg5M1MEhzq3EER0Es8qvTWHik2OT3o7Hn1Nxs5QRA,1219
|
25
|
-
ormlambda/components/update/IUpdate.py,sha256=PIt9ohoH0V02Wlsbg6mkwhS0vIrnRfWbuKg0EWK14RE,166
|
26
|
-
ormlambda/components/update/__init__.py,sha256=QNl3V8Ygy6WlU2rGtwQD9TiT1vVVSceYNhx2BwsJglo,101
|
27
|
-
ormlambda/components/update/abstract_update.py,sha256=AFIThy_qqLKqCEuC4NJ2sP9JuWHjvxXmZHCluMTPVEs,794
|
28
|
-
ormlambda/components/upsert/IUpsert.py,sha256=2m6Bcwa0X80IDLnf0QErqr01uYEydOnRta9_T1nxjK4,139
|
29
|
-
ormlambda/components/upsert/__init__.py,sha256=vfyfXrQILiExYo5lQ7dDNuOMhJ0mE9CVV0w3j1LaagE,101
|
30
|
-
ormlambda/components/upsert/abstract_upsert.py,sha256=ISHdN_MTpmM24F-x6wZkKflE0WpadX9p82gr1abGeeA,592
|
31
|
-
ormlambda/components/where/__init__.py,sha256=mI-ylB6cTTVf3rtCX54apgZrMP6y9tTD7-X3Ct0RFxw,56
|
32
|
-
ormlambda/components/where/abstract_where.py,sha256=s4FDBJIXYzb9KfEg4ZpbnNkoGHLbK_JVJF0pIP87rQg,245
|
33
|
-
ormlambda/databases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
-
ormlambda/databases/my_sql/__init__.py,sha256=3PbOp4WqxJzFOSRwBozqyNtQi25cLLdiJFPDzEnSI70,115
|
35
|
-
ormlambda/databases/my_sql/clauses/__init__.py,sha256=1gAcmaajMmtIqTOXF6ibcPjKTuWkVKk9TM5OtrInmaE,650
|
36
|
-
ormlambda/databases/my_sql/clauses/create_database.py,sha256=sZtr8PXuH2RVmpJZQAYm8giJKAhCGUj0nX1pND3IXD0,988
|
37
|
-
ormlambda/databases/my_sql/clauses/delete.py,sha256=tjmMmGW7X2-4ai-15acT2VwygNExRAd0axzoHe6ksoA,1871
|
38
|
-
ormlambda/databases/my_sql/clauses/drop_database.py,sha256=H4_CAl8lPXvW7UuYosg4MwZkGdi8AX_hQRD8PlQQE0E,517
|
39
|
-
ormlambda/databases/my_sql/clauses/drop_table.py,sha256=0xZBUWuxhQpyKZ2c0JVys4gGbEdDu7YpFA-_SXsYmPw,604
|
40
|
-
ormlambda/databases/my_sql/clauses/insert.py,sha256=2ZDN1lqR28t9Lu2l3IArxefYpn92Q9Bak6l5zxvGy1M,2790
|
41
|
-
ormlambda/databases/my_sql/clauses/joins.py,sha256=M6Oj0T6at-zvG2UXO5pJ4bndtvgrBj0CucFppskh1sE,3037
|
42
|
-
ormlambda/databases/my_sql/clauses/limit.py,sha256=sudJY2YLq33OA46iGGUuuappzz-kJUAwx8oVk7SCmxI,385
|
43
|
-
ormlambda/databases/my_sql/clauses/offset.py,sha256=lRPfE198-j4X8gJUVzzrdUxKyOj9cY2vDY15qkFGUUY,389
|
44
|
-
ormlambda/databases/my_sql/clauses/order.py,sha256=I80nCYk4Mf5O-kXWBa-gSdIOjn76j0nWTJx0PSqWtJo,1012
|
45
|
-
ormlambda/databases/my_sql/clauses/select.py,sha256=hZKNMdUHL1JZJJB1KMzzU9KmwxkAqngzuWi1cz9giZI,6541
|
46
|
-
ormlambda/databases/my_sql/clauses/update.py,sha256=1U9JrUOc0_aUkhcjYRWpS1b8BuDUHpootUAsh5to8jA,1873
|
47
|
-
ormlambda/databases/my_sql/clauses/upsert.py,sha256=ecj3cqmBPczFca6QaZmSNDtk05UKPjn6Z4d0R3MZago,1957
|
48
|
-
ormlambda/databases/my_sql/clauses/where_condition.py,sha256=SXdEDjYoeoNubb7Y07UV_UQQ_EeywPyqHsvBoH_yhrY,8290
|
49
|
-
ormlambda/databases/my_sql/repository.py,sha256=rpBnciyYe6nTxZgjviTYGUK_YkDvJuTCw6j-LbF1Fn0,6479
|
50
|
-
ormlambda/databases/my_sql/statements.py,sha256=IFnPRzYme8YyNiM3rumGP_1CzWiocZb8xF1QNq2DP5s,2086
|
51
|
-
ormlambda/model_base.py,sha256=gEvGi7VH7aawmBU6a-V3pIWaWOs1grQ_gTBsrsC8DiQ,1071
|
52
|
-
ormlambda/utils/__init__.py,sha256=ywMdWqmA2jHj19-W-S04yfaYF5hv4IZ1lZDq0B8Jnjs,142
|
53
|
-
ormlambda/utils/column.py,sha256=ATyOUZ6cWYlvYQwlusVNYjV6A9aQn0T9CaKVUw52jDo,1941
|
54
|
-
ormlambda/utils/dtypes.py,sha256=YTh9a3E3eZLECCXD_en1ufXV0gLVmLMS50haIdGt8Zw,7739
|
55
|
-
ormlambda/utils/foreign_key.py,sha256=Y5mwzKXL_AjCbsV7rJ-O2rZ4SaIUjsrLl8XPjXksT7Y,1329
|
56
|
-
ormlambda/utils/lambda_disassembler/__init__.py,sha256=_718I4R_ipYLYQ1I9nhrAcN0PzROrKluazH_Gu4S98c,228
|
57
|
-
ormlambda/utils/lambda_disassembler/dis_types.py,sha256=D7kBFbHQJpQ5bpY30RSpNkLmITfpmblkHpnVBmt4yLo,4805
|
58
|
-
ormlambda/utils/lambda_disassembler/disassembler.py,sha256=Zc_hFeEheCiBtFIo39F573uU3jkkB-VyA-wJGICqs44,2019
|
59
|
-
ormlambda/utils/lambda_disassembler/dtypes.py,sha256=QtftGMCcb4arAQnXkwGQ1VeV-6x0mZdRTfZmxLkAtFo,6449
|
60
|
-
ormlambda/utils/lambda_disassembler/name_of.py,sha256=Cjic_GzqgArxx7kDUMOGYmmNRHj7HcxG-kcDfAhA5yk,1142
|
61
|
-
ormlambda/utils/lambda_disassembler/nested_element.py,sha256=nXwytOwBbPYSTMxksQTRMhSeqRIMpIcVWg70loVtQ_k,1234
|
62
|
-
ormlambda/utils/lambda_disassembler/tree_instruction.py,sha256=ftt8QPSoGUZ3gYAK59y8SpiaumrvLExmp-lgwCeO9vk,5115
|
63
|
-
ormlambda/utils/module_tree/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
|
-
ormlambda/utils/module_tree/dfs_traversal.py,sha256=lSF03G63XtJFLp03ueAmsHMBvhUkjptDbK3IugXm8iU,1425
|
65
|
-
ormlambda/utils/module_tree/dynamic_module.py,sha256=PHUGfO7ENBRlUR1uP6R7g76YApLpvFzMKdWlJJ9vQLw,8468
|
66
|
-
ormlambda/utils/table_constructor.py,sha256=hKiDDsSpVakFqL_QhIfmlvwXI91nb_KoPpPFway7NQ4,10881
|
67
|
-
ormlambda-1.5.0.dist-info/LICENSE,sha256=xBprFw8GJLdHMOoUqDk0427EvjIcbEREvXXVFULuuXU,1080
|
68
|
-
ormlambda-1.5.0.dist-info/METADATA,sha256=dYP-gn3oyNul0o1et_UMJo4XQg4gfoN1L_XqXD4lgEg,8249
|
69
|
-
ormlambda-1.5.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
70
|
-
ormlambda-1.5.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|