camel
camel copied to clipboard
Python serialization for adults
Unit tests fail in Python 3.7. Errors such as the following: ``` > assert dumped == expected_serialization E AssertionError: assert '!!python/complex 2j\n' == '!!python/complex 2j\n...\n' E !!python/complex 2j E +...
I'm following along with a game-making tutorial, and when the tutorial plugged `shelve` for saving, I opted for `camel` instead. I ran across some issues that seem to be inherited...
Support for YAML multi-document files is pretty vague. I see that `Camel` has a `load_all()` and `load_first()`, but no `dump_all()`. Does `dump()` do this implicitly, or is it missing?
Certain kinds of recursive structures give me load errors. I did a little googling and found a solution in PyYAML (http://stackoverflow.com/a/29607120); does Camel support something like that? If not, would...
I originally thought this would be better served by combining Camel with another library like Colander, but maybe it's reasonable to include: > 21:27 < _habnabit> eevee, if you made...
"Not Subscriptable" Error in a very simple wrapper for numpy.float64 that simply converts it to float: Hi there, All I am doing is this: @registry.loader('np_float64_mine', version=1) def _load_np_float64(obj, version, **kwargs):...
The only strictly necessary change here is the updates to the test file, which address #10. However, I first added some configuration files to allow for the following things without...