Skip to main content

Simple and fast Python any object serialization with use msgpack.

Project description

Introduction

Simple pure Python object encoder and decoder using msgpack (u-msgpack-python package at bottom).

It allows encode Python object with high speed and compression since we using msgpack at bottom.

It reduce code overhead to minimum and allow you focus on algorithms.

How to use it

It is very simple:

from cw_msgpack_coder.umsgpack_coder import UmsgpackCoder


class YourNestedClass:
    pass


class YourClass:
    def __init__(name, nested)
        self.name = name
        self.nested = nested


# create coder
coder = UmsgpackCoder()

# register your classes (required because of security reasons)
coder.set_default_coder_for_class(self.YourClass)
coder.set_default_coder_for_class(self.YourNestedClass)

# now create some objects to test
o = YourClass('hello world!', YourNestedClass())

# encode to bytes
encoded = coder.dumps(o)

# decode bytes to objects
o2 = coder.decode(encoded)

# o == o2!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cw_msgpack_coder-1.1.4.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cw_msgpack_coder-1.1.4-py3.6.egg (6.0 kB view details)

Uploaded Egg

File details

Details for the file cw_msgpack_coder-1.1.4.tar.gz.

File metadata

File hashes

Hashes for cw_msgpack_coder-1.1.4.tar.gz
Algorithm Hash digest
SHA256 c3e4ed1bccfa68721ef99c8f294e1a7ecb72729157093102d4135731e9f75323
MD5 ef9d48ed675f9ead47bc0bc89491f278
BLAKE2b-256 221acf52327f66b4f6df8e8c77449e5bd92a699f93179ed936a1508bf6c2c394

See more details on using hashes here.

File details

Details for the file cw_msgpack_coder-1.1.4-py3.6.egg.

File metadata

  • Download URL: cw_msgpack_coder-1.1.4-py3.6.egg
  • Upload date:
  • Size: 6.0 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for cw_msgpack_coder-1.1.4-py3.6.egg
Algorithm Hash digest
SHA256 ecf5a7c1078b698d439e663b241a7c39adf3372cb2a841aa366668d96f842da9
MD5 de9c19313fcd72bc1f0db75049932d0c
BLAKE2b-256 9efa1a8cda754a710b1866957da8141e91dadfa7ca951a6410bc7116c94eb805

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page