New version 1.8.1
[1.8.1] - 2023-02-15
Added
- Add a method to
SQLEnumerable
,simple_insert()
to make quick insertion in relational table. - Add function
is_in
to be able to makeWHERE toto IN (titi, toto, tutu)
. - Add
__getitem__
method toMagicDotPath
to have access to attribute like a dict.
Changed
- New logo and a new banner for the project.
Fixed
- Fix typing in
BaseMagicDotPath._get_generic_operator()
and all operator methods. It fix the mypy errors: no-any-return when wwe use lambda function with an operator and 2 MagicDotPath operand.