0 purchases
values
Values #
A Codec implementation that serializes and deserializes key-value pairs with an
= separator.
Example #
Input:
{
'Value1': 'A',
'Value2': 'B',
'Value3': 'C',
}
copied to clipboard
Output:
Value1=A
Value2=B
Value3=C
copied to clipboard
Usage #
See the example for example usage.
The standard Codec interface is implemented by ValuesCodec.
Roadmap #
Chunked conversions
Motivation #
This method of serialization is common in APIs and preference storage.
I don't recommend you use this if you're designing an API or storing your own preferences;
formats like JSON, XML and YAML are much better for that kind of thing. This package is useful
for using this format when you have no other choice.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.