Skip to main content

A compact serializer aiming for flexibility and performance

Project description

Compaqt

A compact serializer aiming for flexibility and performance.

Installation

To install this module for Python, simply run this: pip install compaqt

About this serializer

Compaqt is a serializer designed to strike a balance between compact data representation and performance. According to benchmarks compared to other existing serialization methods, this one performs well in both compactness and (de-)serialization speed.

In an attempt to keep the memory usage low, Compaqt attempts to predict how much memory to allocate before serializing data, by dynamically learning based on previously received data. This is to avoid over-allocating memory by large amounts, while also reducing re-allocations. This - besides the lower memory footprint - also enhances performance due to the ease of upfront allocation and minimal re-allocations during the process.

The serializer currently supports the following datatypes:

  • bytes
  • str
  • int
  • float
  • complex
  • bool
  • NoneType
  • list
  • dict

Usage

Encoding (serializing):

# The value we want to encode
value = {
    'Hello,': 'world!',
    'this is a': ['test', 'value']
}

# Call the `encode` method to encode the value
encoded = compaqt.encode(value)

# Now, `encoded` contains the value serialized to bytes

Decoding (de-serializing):

# Our encoded value (generated by the encode method)
encoded = b'...'

# call the `decode` method to decode the value
value = compaqt.decode(encoded)

# Now, `value` contains the original value

For further usage, see USAGE.

License

This project is licensed under the BSD-3-Clause License. See the LICENSE file for details.

Contact

Feel free to reach out via the GitHub repository of this module (github) or reach out by mail (Sven Boertjens).

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

compaqt-0.4.5.tar.gz (19.3 kB view details)

Uploaded Source

File details

Details for the file compaqt-0.4.5.tar.gz.

File metadata

  • Download URL: compaqt-0.4.5.tar.gz
  • Upload date:
  • Size: 19.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.7

File hashes

Hashes for compaqt-0.4.5.tar.gz
Algorithm Hash digest
SHA256 7a50134d15e4399e63e68433a13facdbaa60402a8c248be278541733e22d96ad
MD5 e5e3f52f73db3b407d616c6da6f07a50
BLAKE2b-256 dd38956599b3803e633186e19f6daacd865476db0e2d34b3def0cfdba2fad5b9

See more details on using hashes here.

Supported by

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