A new version Object Mapper for Python has been released.
Get it on Pypi via
pip install object-mapper
Now it supports possibility to specify list of fields that should be excluded from the mapping, i.e.:
result = mapper.map(FromTestClass(), ToTestClass, excluded=['date'])
will map fromTestClass to ToTestClass except property date in source class.
You can clone it from GitHub too. Enjoy!