ormlambda 3.34.9__tar.gz → 3.35.1__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.
- {ormlambda-3.34.9 → ormlambda-3.35.1}/PKG-INFO +1 -1
- {ormlambda-3.34.9 → ormlambda-3.35.1}/pyproject.toml +1 -1
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/caster.py +2 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/__init__.py +1 -0
- ormlambda-3.35.1/src/ormlambda/databases/my_sql/caster/types/json.py +31 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/sqltypes.py +6 -2
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/table/table.py +6 -1
- {ormlambda-3.34.9 → ormlambda-3.35.1}/AUTHORS +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/LICENSE +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/README.md +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/caster/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/caster/base_caster.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/caster/caster.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/caster/interfaces/ICaster.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/caster/interfaces/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/abstract_classes/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/abstract_classes/clause_info_converter.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/abstract_classes/decomposition_query.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/abstract_classes/non_query_base.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/abstract_classes/query_base.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/enums/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/enums/condition_types.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/enums/join_type.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/errors/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/global_checker.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/interfaces/ICustomAlias.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/interfaces/IDecompositionQuery.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/interfaces/IJoinSelector.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/interfaces/INonQueryCommand.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/interfaces/IQueryCommand.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/interfaces/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/boolean.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/bytes.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/date.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/datetime.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/decimal.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/float.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/int.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/iterable.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/none.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/point.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/string.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/ST_AsText.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/ST_Contains.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/count.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/delete.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/drop_table.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/group_by.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/having.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/insert.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/joins.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/limit.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/offset.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/order.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/update.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/upsert.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/clauses/where.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/pool_types.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/repository.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/default/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/default/base.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/interface/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/interface/dialect.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/mysql/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/mysql/base.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/mysql/mysqlconnector.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/mysql/types.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/sqlite/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/sqlite/base.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/dialects/sqlite/pysqlite.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/engine/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/engine/base.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/engine/create.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/engine/url.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/engine/utils.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/env.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/errors.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/model/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/model/base_model.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/repository/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/repository/base_repository.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/repository/interfaces/IDatabaseConnection.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/repository/interfaces/IRepositoryBase.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/repository/interfaces/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/repository/response.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/aggregate_function_base.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/clause_info.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/clause_info_context.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/interface/IAggregate.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/interface/IClauseInfo.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/interface/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/alias.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/count.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/delete.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/group_by.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/having.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/insert.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/interfaces/IDelete.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/interfaces/IInsert.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/interfaces/ISelect.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/interfaces/IUpdate.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/interfaces/IUpsert.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/interfaces/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/join/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/join/join_context.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/joins.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/limit.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/new_join.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/offset.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/order.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/select.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/update.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/upsert.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clauses/where.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/column/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/column/column.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/comparer.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/compiler.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/ddl.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/elements.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/foreign_key.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/functions/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/functions/concat.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/functions/max.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/functions/min.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/functions/sum.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/interfaces/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/table/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/table/fields.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/table/table_constructor.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/type_api.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/types.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/visitors.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/statements/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/statements/base_statement.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/statements/interfaces/IStatements.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/statements/interfaces/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/statements/query_builder.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/statements/statements.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/statements/types.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/types/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/types/metadata.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/util/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/util/load_module.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/util/module_tree/__init__.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/util/module_tree/dfs_traversal.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/util/module_tree/dynamic_module.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/util/plugin_loader.py +0 -0
- {ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/util/typing.py +0 -0
@@ -3,7 +3,7 @@ line-length = 320
|
|
3
3
|
|
4
4
|
[tool.poetry]
|
5
5
|
name = "ormlambda"
|
6
|
-
version = "3.
|
6
|
+
version = "3.35.1"
|
7
7
|
description = "ORM designed to interact with the database (currently with MySQL) using lambda functions and nested functions"
|
8
8
|
authors = ["p-hzamora <p.hzamora@icloud.com>"]
|
9
9
|
readme = "README.md"
|
@@ -13,6 +13,7 @@ from .types import (
|
|
13
13
|
IterableCaster,
|
14
14
|
BooleanCaster,
|
15
15
|
DecimalCaster,
|
16
|
+
JsonCaster,
|
16
17
|
)
|
17
18
|
|
18
19
|
from shapely import Point
|
@@ -40,4 +41,5 @@ class MySQLCaster(Caster):
|
|
40
41
|
list: IterableCaster,
|
41
42
|
bool: BooleanCaster,
|
42
43
|
Decimal: DecimalCaster,
|
44
|
+
dict:JsonCaster
|
43
45
|
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
from typing import Optional
|
2
|
+
from ormlambda.caster import BaseCaster, Caster
|
3
|
+
import json
|
4
|
+
|
5
|
+
class JsonCaster[TType](BaseCaster[dict, TType]):
|
6
|
+
def __init__(self, value: dict, type_value: TType):
|
7
|
+
super().__init__(value, type_value)
|
8
|
+
|
9
|
+
def wildcard_to_select(self, value: Optional[str] = None) -> str:
|
10
|
+
return Caster.PLACEHOLDER if value is None else value
|
11
|
+
|
12
|
+
def wildcard_to_where(self, value: Optional[str] = None) -> str:
|
13
|
+
return Caster.PLACEHOLDER if value is None else value
|
14
|
+
|
15
|
+
def wildcard_to_insert(self, value: Optional[str] = None) -> str:
|
16
|
+
return Caster.PLACEHOLDER if value is None else value
|
17
|
+
|
18
|
+
@property
|
19
|
+
@BaseCaster.return_value_if_exists
|
20
|
+
def to_database(self) -> Optional[str]:
|
21
|
+
return json.dumps(self.value)
|
22
|
+
|
23
|
+
@property
|
24
|
+
@BaseCaster.return_value_if_exists
|
25
|
+
def from_database(self) -> Optional[str]:
|
26
|
+
return json.loads(self.value)
|
27
|
+
|
28
|
+
@property
|
29
|
+
@BaseCaster.return_value_if_exists
|
30
|
+
def string_data(self) -> Optional[str]:
|
31
|
+
return f"'{self.value}'"
|
@@ -449,10 +449,14 @@ class Point(TypeEngine[_python_Point]):
|
|
449
449
|
return _python_Point
|
450
450
|
|
451
451
|
|
452
|
-
class JSON(TypeEngine[
|
452
|
+
class JSON[T](TypeEngine[dict | list | T]):
|
453
453
|
"""JSON data type."""
|
454
454
|
|
455
|
-
__visit_name__ = "
|
455
|
+
__visit_name__ = "JSON"
|
456
|
+
|
457
|
+
@property
|
458
|
+
def python_type(self) -> T | Type[dict | list]:
|
459
|
+
return dict | list
|
456
460
|
|
457
461
|
|
458
462
|
type UuidType = str | _python_UUID
|
@@ -95,7 +95,12 @@ class Table(metaclass=TableMeta):
|
|
95
95
|
def to_dict(self) -> dict[str, str | int]:
|
96
96
|
dicc: dict[str, Any] = {}
|
97
97
|
for x in self.__annotations__:
|
98
|
-
|
98
|
+
value = getattr(self, x)
|
99
|
+
if isinstance(value, dict):
|
100
|
+
value = tuple(sorted(value.items()))
|
101
|
+
if isinstance(value, list | set):
|
102
|
+
value = tuple(value)
|
103
|
+
dicc[x] = value
|
99
104
|
return dicc
|
100
105
|
|
101
106
|
@classmethod
|
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
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/abstract_classes/clause_info_converter.py
RENAMED
File without changes
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/abstract_classes/decomposition_query.py
RENAMED
File without changes
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/abstract_classes/non_query_base.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
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/common/interfaces/IDecompositionQuery.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
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/boolean.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/datetime.py
RENAMED
File without changes
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/decimal.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/databases/my_sql/caster/types/iterable.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
|
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
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/repository/interfaces/IDatabaseConnection.py
RENAMED
File without changes
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/repository/interfaces/IRepositoryBase.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/aggregate_function_base.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{ormlambda-3.34.9 → ormlambda-3.35.1}/src/ormlambda/sql/clause_info/interface/IClauseInfo.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
|
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
|