Igor Davydenko
Igor Davydenko
Let me start with code, ``` In [1]: import trafaret as t In [2]: td = t.Dict({'key': t.String()}).allow_extra('extra_key') In [3]: td.merge(t.Dict({'other_key': t.String()})).check({'key': '1', 'extra_key': '2', 'other_key': '3'}) --------------------------------------------------------------------------- DataError Traceback...
Hi. What about adding syntax sugar for filling `t.Enum` variants from Python's `enum.Enum`? Right now it is doable, but not very reusbale, ```py >>> import enum >>> import trafaret as...
This is helpful, when list of CLI args comes not from `sys.argv` and, as result, entry point cannot be parsed from `sys.argv[0]`. This is also might be helpful for cases,...
At a moment there is a way for `ludic` to avoid escaping any content in a string - by wrapping it into `ludic.base:Safe` as follows, ```py from ludic import html...
It's been awhile since initial "Verify package is installed well" job been introduced to `ci.yml`, at that point of time WIndows runner support was broken for `poetry` and Mac M1/M2/M3...
To define all possible project details in `[project]` TOML table instead of `[tool.poetry]`. On top of that simplify `[tool.mypy]` config to be more default.