object-mapper
object-mapper copied to clipboard
ObjectMapper is a class for automatic object mapping in Python
Hello, We've just noticed that the primitive types do not support float (https://github.com/marazt/object-mapper/blob/9d62e9bf00cd78afdaccd6e950a6bb4a1dd1cc06/mapper/object_mapper.py#L18). This is currently raising an exception when using float types. Is there any plans to support floats...
The map function loads all the attribute values at first, although I expect when I give mappings as lambda, the attribute values get read lazily, that is, if some attribute...
In Python 3.10 `MutableMapping` and others has been moved to `collections.abc` so the `object-mapper` package will not work with Python 3.10. https://stackoverflow.com/a/70870087 - here is a good summary of the...