Wiki
Version 2 (modified by todd.a, 13 years ago)

Checksum removed. Only source provided so it isn't necessary.

Nugget

Nugget is a Cobra library that provides binary serialization for main primitive types like integers, floating point values, dates, strings, lists, and dictionaries.

The main advantage over the serialization libraries found in System.Runtime is that Nugget's encoded objects are only a fraction of the serialization libraries. The encoding is also designed to be simple, comparable to that of JSON.

Example

class Program
    def main
        list = ['foo', 'bar']
        bytes = Nugget.encode(list)

Download

Find the source for Nugget attached below.

Attachments