ormsgpack


Nameormsgpack JSON
Version 1.5.0 PyPI version JSON
download
home_pagehttps://github.com/aviramha/ormsgpack
SummaryFast, correct Python msgpack library supporting dataclasses, datetimes, and numpy
upload_time2024-04-20 07:13:53
maintainerNone
docs_urlNone
authorAviram Hassan <aviramyhassan@gmail.com>, Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
requires_python>=3.8
licenseApache-2.0 OR MIT
keywords fast msgpack dataclass dataclasses datetime
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ormsgpack
![PyPI](https://img.shields.io/pypi/v/ormsgpack)
![PyPI - Downloads](https://img.shields.io/pypi/dm/ormsgpack)

ormsgpack is a fast msgpack library for Python. It is a fork/reboot of [orjson](https://github.com/ijl/orjson)
It serializes faster than [msgpack-python](https://github.com/msgpack/msgpack-python) and deserializes a bit slower (right now).
It supports serialization of:
[dataclass](#dataclass),
[datetime](#datetime),
[numpy](#numpy),
[pydantic](#pydantic) and
[UUID](#uuid) instances natively.

Its features and drawbacks compared to other Python msgpack libraries:

* serializes `dataclass` instances natively.
* serializes `datetime`, `date`, and `time` instances to RFC 3339 format,
e.g., "1970-01-01T00:00:00+00:00"
* serializes `numpy.ndarray` instances natively and faster.
* serializes `pydantic.BaseModel` instances natively
* serializes arbitrary types using a `default` hook

ormsgpack supports CPython 3.8, 3.9, 3.10, 3.11 and 3.12. ormsgpack does not support PyPy. Releases follow semantic
versioning and serializing a new object type without an opt-in flag is
considered a breaking change.

ormsgpack is licensed under both the Apache 2.0 and MIT licenses. The
repository and issue tracker is
[github.com/aviramha/ormsgpack](https://github.com/aviramha/ormsgpack), and patches may be
submitted there. There is a
[CHANGELOG](https://github.com/aviramha/ormsgpack/blob/master/CHANGELOG.md)
available in the repository.

1. [Usage](#usage)
    1. [Install](#install)
    2. [Quickstart](#quickstart)
    4. [Serialize](#serialize)
        1. [default](#default)
        2. [option](#option)
    5. [Deserialize](#deserialize)
2. [Types](#types)
    1. [dataclass](#dataclass)
    2. [datetime](#datetime)
    3. [enum](#enum)
    4. [float](#float)
    5. [int](#int)
    6. [numpy](#numpy)
    7. [uuid](#uuid)
    8. [pydantic](#pydantic)
3. [Latency](#latency)
4. [Questions](#questions)
5. [Packaging](#packaging)
6. [License](#license)

## Usage

### Install

To install a wheel from PyPI:

```sh
pip install --upgrade "pip>=20.3" # manylinux_x_y, universal2 wheel support
pip install --upgrade ormsgpack
```

To build a wheel, see [packaging](#packaging).

### Quickstart

This is an example of serializing, with options specified, and deserializing:

```python
>>> import ormsgpack, datetime, numpy
>>> data = {
...     "type": "job",
...     "created_at": datetime.datetime(1970, 1, 1),
...     "status": "๐Ÿ†—",
...     "payload": numpy.array([[1, 2], [3, 4]]),
... }
>>> ormsgpack.packb(data, option=ormsgpack.OPT_NAIVE_UTC | ormsgpack.OPT_SERIALIZE_NUMPY)
b'\x84\xa4type\xa3job\xaacreated_at\xb91970-01-01T00:00:00+00:00\xa6status\xa4\xf0\x9f\x86\x97\xa7payload\x92\x92\x01\x02\x92\x03\x04'
>>> ormsgpack.unpackb(_)
{'type': 'job', 'created_at': '1970-01-01T00:00:00+00:00', 'status': '๐Ÿ†—', 'payload': [[1, 2], [3, 4]]}
```

### Serialize

```python
def packb(
    __obj: Any,
    default: Optional[Callable[[Any], Any]] = ...,
    option: Optional[int] = ...,
) -> bytes: ...
```

`packb()` serializes Python objects to msgpack.

It natively serializes
`bytes`, `str`, `dict`, `list`, `tuple`, `int`, `float`, `bool`,
`dataclasses.dataclass`, `typing.TypedDict`, `datetime.datetime`,
`datetime.date`, `datetime.time`, `uuid.UUID`, `numpy.ndarray`, and
`None` instances. It supports arbitrary types through `default`. It
serializes subclasses of `str`, `int`, `dict`, `list`,
`dataclasses.dataclass`, and `enum.Enum`. It does not serialize subclasses
of `tuple` to avoid serializing `namedtuple` objects as arrays. To avoid
serializing subclasses, specify the option `ormsgpack.OPT_PASSTHROUGH_SUBCLASS`.

The output is a `bytes` object containing UTF-8.

The global interpreter lock (GIL) is held for the duration of the call.

It raises `MsgpackEncodeError` on an unsupported type. This exception message
describes the invalid object with the error message
`Type is not msgpack serializable: ...`. To fix this, specify
[default](#default).

It raises `MsgpackEncodeError` on a `str` that contains invalid UTF-8.

It raises `MsgpackEncodeError` if a `dict` has a key of a type other than `str` or `bytes`,
unless `OPT_NON_STR_KEYS` is specified.

It raises `MsgpackEncodeError` if the output of `default` recurses to handling by
`default` more than 254 levels deep.

It raises `MsgpackEncodeError` on circular references.

It raises `MsgpackEncodeError`  if a `tzinfo` on a datetime object is
unsupported.

`MsgpackEncodeError` is a subclass of `TypeError`.

#### default

To serialize a subclass or arbitrary types, specify `default` as a
callable that returns a supported type. `default` may be a function,
lambda, or callable class instance. To specify that a type was not
handled by `default`, raise an exception such as `TypeError`.

```python
>>> import ormsgpack, decimal
>>> def default(obj):
...     if isinstance(obj, decimal.Decimal):
...         return str(obj)
...     raise TypeError
...
>>> ormsgpack.packb(decimal.Decimal("0.0842389659712649442845"))
TypeError: Type is not msgpack serializable: decimal.Decimal
>>> ormsgpack.packb(decimal.Decimal("0.0842389659712649442845"), default=default)
b'\xb80.0842389659712649442845'
>>> ormsgpack.packb({1, 2}, default=default)
TypeError: Type is not msgpack serializable: set
```

The `default` callable may return an object that itself
must be handled by `default` up to 254 times before an exception
is raised.

It is important that `default` raise an exception if a type cannot be handled.
Python otherwise implicitly returns `None`, which appears to the caller
like a legitimate value and is serialized:

```python
>>> import ormsgpack, decimal
>>> def default(obj):
...     if isinstance(obj, decimal.Decimal):
...         return str(obj)
...
>>> ormsgpack.packb({"set":{1, 2}}, default=default)
b'\x81\xa3set\xc0'
>>> ormsgpack.unpackb(_)
{'set': None}
```

To serialize a type as a MessagePack extension type, return an
`ormsgpack.Ext` object. The instantiation arguments are an integer in
the range `[0, 127]` and a `bytes` object, defining the type and
value, respectively.

```python
>>> import ormsgpack, decimal
>>> def default(obj):
...     if isinstance(obj, decimal.Decimal):
...         return ormsgpack.Ext(0, str(obj).encode())
...     raise TypeError
...
>>> ormsgpack.packb(decimal.Decimal("0.0842389659712649442845"), default=default)
b'\xc7\x18\x000.0842389659712649442845'
```

#### option

To modify how data is serialized, specify `option`. Each `option` is an integer
constant in `ormsgpack`. To specify multiple options, mask them together, e.g.,
`option=ormsgpack.OPT_NON_STR_KEYS | ormsgpack.OPT_NAIVE_UTC`.

##### OPT_NAIVE_UTC

Serialize `datetime.datetime` objects without a `tzinfo` and `numpy.datetime64`
objects as UTC. This has no effect on `datetime.datetime` objects that have
`tzinfo` set.

```python
>>> import ormsgpack, datetime
>>> ormsgpack.packb(
...     datetime.datetime(1970, 1, 1, 0, 0, 0),
... )
b'\xb31970-01-01T00:00:00'
>>> ormsgpack.unpackb(_)
'1970-01-01T00:00:00'
>>> ormsgpack.packb(
...     datetime.datetime(1970, 1, 1, 0, 0, 0),
...     option=ormsgpack.OPT_NAIVE_UTC,
... )
b'\xb91970-01-01T00:00:00+00:00'
>>> ormsgpack.unpackb(_)
'1970-01-01T00:00:00+00:00'
```

##### OPT_NON_STR_KEYS

Serialize `dict` keys of type other than `str`. This allows `dict` keys
to be one of `str`, `int`, `float`, `bool`, `None`, `datetime.datetime`,
`datetime.date`, `datetime.time`, `enum.Enum`, and `uuid.UUID`.

```python
>>> import ormsgpack, datetime, uuid
>>> ormsgpack.packb(
...     {uuid.UUID("7202d115-7ff3-4c81-a7c1-2a1f067b1ece"): [1, 2, 3]},
...     option=ormsgpack.OPT_NON_STR_KEYS,
... )
b'\x81\xd9$7202d115-7ff3-4c81-a7c1-2a1f067b1ece\x93\x01\x02\x03'
>>> ormsgpack.unpackb(_)
{'7202d115-7ff3-4c81-a7c1-2a1f067b1ece': [1, 2, 3]}
>>> ormsgpack.packb(
...     {datetime.datetime(1970, 1, 1, 0, 0, 0): [1, 2, 3]},
...     option=ormsgpack.OPT_NON_STR_KEYS | ormsgpack.OPT_NAIVE_UTC,
... )
b'\x81\xb91970-01-01T00:00:00+00:00\x93\x01\x02\x03'
>>> ormsgpack.unpackb(_)
{'1970-01-01T00:00:00+00:00': [1, 2, 3]}
```

These types are generally serialized how they would be as
values, e.g., `datetime.datetime` is still an RFC 3339 string and respects
options affecting it.

This option has the risk of creating duplicate keys. This is because non-`str`
objects may serialize to the same `str` as an existing key, e.g.,
`{"1970-01-01T00:00:00+00:00": true, datetime.datetime(1970, 1, 1, 0, 0, 0): false}`.
The last key to be inserted to the `dict` will be serialized last and a msgpack deserializer will presumably take the last
occurrence of a key (in the above, `false`). The first value will be lost.

This option is not compatible with `ormsgpack.OPT_SORT_KEYS`.

##### OPT_OMIT_MICROSECONDS

Do not serialize the microsecond component of `datetime.datetime`,
`datetime.time` and `numpy.datetime64` instances.

```python
>>> import ormsgpack, datetime
>>> ormsgpack.packb(
...     datetime.datetime(1970, 1, 1, 0, 0, 0, 1),
... )
b'\xba1970-01-01T00:00:00.000001'
>>> ormsgpack.unpackb(_)
'1970-01-01T00:00:00.000001'
>>> ormsgpack.packb(
...     datetime.datetime(1970, 1, 1, 0, 0, 0, 1),
...     option=ormsgpack.OPT_OMIT_MICROSECONDS,
... )
b'\xb31970-01-01T00:00:00'
>>> ormsgpack.unpackb(_)
'1970-01-01T00:00:00'
```

##### OPT_PASSTHROUGH_BIG_INT

Enables passthrough of big (Python) ints. By setting this option, one can set a `default` function for ints larger than 63 bits, smaller ints are still serialized efficiently.

```python
>>> import ormsgpack
>>> ormsgpack.packb(
...     2**65,
... )
TypeError: Integer exceeds 64-bit range
>>> ormsgpack.packb(
...     2**65,
...     option=ormsgpack.OPT_PASSTHROUGH_BIG_INT,
...     default=lambda _: {"type": "bigint", "value": str(_) }
... )
b'\x82\xa4type\xa6bigint\xa5value\xb436893488147419103232'
>>> ormsgpack.unpackb(_)
{'type': 'bigint', 'value': '36893488147419103232'}
```

##### OPT_PASSTHROUGH_DATACLASS

Passthrough `dataclasses.dataclass` instances to `default`. This allows
customizing their output but is much slower.


```python
>>> import ormsgpack, dataclasses
>>> @dataclasses.dataclass
... class User:
...     id: str
...     name: str
...     password: str
...
>>> def default(obj):
...     if isinstance(obj, User):
...         return {"id": obj.id, "name": obj.name}
...     raise TypeError
...
>>> ormsgpack.packb(User("3b1", "asd", "zxc"))
b'\x83\xa2id\xa33b1\xa4name\xa3asd\xa8password\xa3zxc'
>>> ormsgpack.packb(User("3b1", "asd", "zxc"), option=ormsgpack.OPT_PASSTHROUGH_DATACLASS)
TypeError: Type is not msgpack serializable: User
>>> ormsgpack.packb(
...     User("3b1", "asd", "zxc"),
...     option=ormsgpack.OPT_PASSTHROUGH_DATACLASS,
...     default=default,
... )
b'\x82\xa2id\xa33b1\xa4name\xa3asd'
```

##### OPT_PASSTHROUGH_DATETIME

Passthrough `datetime.datetime`, `datetime.date`, and `datetime.time` instances
to `default`. This allows serializing datetimes to a custom format, e.g.,
HTTP dates:

```python
>>> import ormsgpack, datetime
>>> def default(obj):
...     if isinstance(obj, datetime.datetime):
...         return obj.strftime("%a, %d %b %Y %H:%M:%S GMT")
...     raise TypeError
...
>>> ormsgpack.packb({"created_at": datetime.datetime(1970, 1, 1)})
b'\x81\xaacreated_at\xb31970-01-01T00:00:00'
>>> ormsgpack.packb({"created_at": datetime.datetime(1970, 1, 1)}, option=ormsgpack.OPT_PASSTHROUGH_DATETIME)
TypeError: Type is not msgpack serializable: datetime.datetime
>>> ormsgpack.packb(
...     {"created_at": datetime.datetime(1970, 1, 1)},
...     option=ormsgpack.OPT_PASSTHROUGH_DATETIME,
...     default=default,
... )
b'\x81\xaacreated_at\xbdThu, 01 Jan 1970 00:00:00 GMT'
```

This does not affect datetimes in `dict` keys if using OPT_NON_STR_KEYS.

##### OPT_PASSTHROUGH_SUBCLASS

Passthrough subclasses of builtin types to `default`.

```python
>>> import ormsgpack
>>> class Secret(str):
...     pass
...
>>> def default(obj):
...     if isinstance(obj, Secret):
...         return "******"
...     raise TypeError
...
>>> ormsgpack.packb(Secret("zxc"))
b'\xa3zxc'
>>> ormsgpack.packb(Secret("zxc"), option=ormsgpack.OPT_PASSTHROUGH_SUBCLASS)
TypeError: Type is not msgpack serializable: Secret
>>> ormsgpack.packb(Secret("zxc"), option=ormsgpack.OPT_PASSTHROUGH_SUBCLASS, default=default)
b'\xa6******'
```

This does not affect serializing subclasses as `dict` keys if using
OPT_NON_STR_KEYS.

##### OPT_PASSTHROUGH_TUPLE

Passthrough tuples to `default`.

```python
>>> import ormsgpack
>>> ormsgpack.packb(
...     (9193, "test", 42),
... )
b'\x93\xcd#\xe9\xa4test*'
>>> ormsgpack.unpackb(_)
[9193, 'test', 42]
>>> ormsgpack.packb(
...     (9193, "test", 42),
...     option=ormsgpack.OPT_PASSTHROUGH_TUPLE,
...     default=lambda _: {"type": "tuple", "value": list(_)}
... )
b'\x82\xa4type\xa5tuple\xa5value\x93\xcd#\xe9\xa4test*'
>>> ormsgpack.unpackb(_)
{'type': 'tuple', 'value': [9193, 'test', 42]}
```

##### OPT_SERIALIZE_NUMPY

Serialize `numpy.ndarray` instances. For more, see
[numpy](#numpy).

##### OPT_SERIALIZE_PYDANTIC
Serialize `pydantic.BaseModel` instances.

##### OPT_SORT_KEYS

Serialize `dict` keys in sorted order. The default is to serialize in an
unspecified order.

This can be used to ensure the order is deterministic for hashing or tests.
It has a substantial performance penalty and is not recommended in general.

```python
>>> import ormsgpack
>>> ormsgpack.packb({"b": 1, "c": 2, "a": 3})
b'\x83\xa1b\x01\xa1c\x02\xa1a\x03'
>>> ormsgpack.packb({"b": 1, "c": 2, "a": 3}, option=ormsgpack.OPT_SORT_KEYS)
b'\x83\xa1a\x03\xa1b\x01\xa1c\x02'
```

The sorting is not collation/locale-aware:

```python
>>> import ormsgpack
>>> ormsgpack.packb({"a": 1, "รค": 2, "A": 3}, option=ormsgpack.OPT_SORT_KEYS)
b'\x83\xa1A\x03\xa1a\x01\xa2\xc3\xa4\x02'
```

`dataclass` also serialize as maps but this has no effect on them.

##### OPT_UTC_Z

Serialize a UTC timezone on `datetime.datetime` and `numpy.datetime64` instances
as `Z` instead of `+00:00`.

```python
>>> import ormsgpack, datetime
>>> ormsgpack.packb(
...     datetime.datetime(1970, 1, 1, 0, 0, 0, tzinfo=datetime.timezone.utc),
... )
b'\xb91970-01-01T00:00:00+00:00'
>>> ormsgpack.packb(
...     datetime.datetime(1970, 1, 1, 0, 0, 0, tzinfo=datetime.timezone.utc),
...     option=ormsgpack.OPT_UTC_Z
... )
b'\xb41970-01-01T00:00:00Z'
```

### Deserialize
```python
def unpackb(
    __obj: Union[bytes, bytearray, memoryview],
    /,
    ext_hook: Optional[Callable[[int, bytes], Any]] = ...,
    option: Optional[int] = ...,
) -> Any: ...
```

`unpackb()` deserializes msgpack to Python objects. It deserializes to `dict`,
`list`, `int`, `float`, `str`, `bool`, `bytes` and `None` objects.

`bytes`, `bytearray`, `memoryview` input are accepted.

ormsgpack maintains a cache of map keys for the duration of the process. This
causes a net reduction in memory usage by avoiding duplicate strings. The
keys must be at most 64 bytes to be cached and 512 entries are stored.

The global interpreter lock (GIL) is held for the duration of the call.

It raises `MsgpackDecodeError` if given an invalid type or invalid
msgpack.

`MsgpackDecodeError` is a subclass of `ValueError`.

#### ext_hook

To deserialize extension types, specify the optional `ext_hook`
argument. The value should be a callable and is invoked with the
extension type and value as arguments.

```python
>>> import ormsgpack, decimal
>>> def ext_hook(tag, data):
...     if tag == 0:
...         return decimal.Decimal(data.decode())
...     raise TypeError
...
>>> ormsgpack.packb(
...     ormsgpack.Ext(0, str(decimal.Decimal("0.0842389659712649442845")).encode())
... )
b'\xc7\x18\x000.0842389659712649442845'
>>> ormsgpack.unpackb(_, ext_hook=ext_hook)
Decimal('0.0842389659712649442845'
```

#### option
`unpackb()` supports the `OPT_NON_STR_KEYS` option, that is similar to original msgpack's `strict_map_key=False`.
Be aware that this option is considered unsafe and disabled by default in msgpack due to possibility of HashDoS.

## Types

### dataclass

ormsgpack serializes instances of `dataclasses.dataclass` natively. It serializes
instances 40-50x as fast as other libraries and avoids a severe slowdown seen
in other libraries compared to serializing `dict`.

It is supported to pass all variants of dataclasses, including dataclasses
using `__slots__`, frozen dataclasses, those with optional or default
attributes, and subclasses. There is a performance benefit to not
using `__slots__`.

Dataclasses are serialized as maps, with every attribute serialized and in
the order given on class definition:

```python
>>> import dataclasses, ormsgpack, typing
>>> @dataclasses.dataclass
... class Member:
...     id: int
...     active: bool = dataclasses.field(default=False)
...
>>> @dataclasses.dataclass
... class Object:
...     id: int
...     name: str
...     members: typing.List[Member]
...
>>> ormsgpack.packb(Object(1, "a", [Member(1, True), Member(2)]))
b'\x83\xa2id\x01\xa4name\xa1a\xa7members\x92\x82\xa2id\x01\xa6active\xc3\x82\xa2id\x02\xa6active\xc2'
```
#### Performance
![alt text](doc/dataclass.svg "dataclass")

```
--------------------------------------------------------------------------------- benchmark 'dataclass': 2 tests --------------------------------------------------------------------------------
Name (time in ms)                 Min                 Max                Mean            StdDev              Median               IQR            Outliers       OPS            Rounds  Iterations
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_dataclass_ormsgpack       3.4248 (1.0)        7.7949 (1.0)        3.6266 (1.0)      0.3293 (1.0)        3.5815 (1.0)      0.0310 (1.0)          4;34  275.7434 (1.0)         240           1
test_dataclass_msgpack       140.2774 (40.96)    143.6087 (18.42)    141.3847 (38.99)    1.0038 (3.05)     141.1823 (39.42)    0.7304 (23.60)         2;1    7.0729 (0.03)          8           1
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
```

### datetime

ormsgpack serializes `datetime.datetime` objects to
[RFC 3339](https://tools.ietf.org/html/rfc3339) format,
e.g., "1970-01-01T00:00:00+00:00". This is a subset of ISO 8601 and is
compatible with `isoformat()` in the standard library.

```python
>>> import ormsgpack, datetime, zoneinfo
>>> ormsgpack.packb(
...     datetime.datetime(2018, 12, 1, 2, 3, 4, 9, tzinfo=zoneinfo.ZoneInfo('Australia/Adelaide'))
... )
b'\xd9 2018-12-01T02:03:04.000009+10:30'
>>> ormsgpack.unpackb(_)
'2018-12-01T02:03:04.000009+10:30'
>>> ormsgpack.packb(
...     datetime.datetime.fromtimestamp(4123518902).replace(tzinfo=datetime.timezone.utc)
... )
b'\xb92100-09-02T00:55:02+00:00'
>>> ormsgpack.unpackb(_)
'2100-09-02T00:55:02+00:00'
>>> ormsgpack.packb(
...     datetime.datetime.fromtimestamp(4123518902)
... )
b'\xb32100-09-02T00:55:02'
>>> ormsgpack.unpackb(_)
'2100-09-02T00:55:02'
```

`datetime.datetime` supports instances with a `tzinfo` that is `None`,
`datetime.timezone.utc`, a timezone instance from the python3.9+ `zoneinfo`
module, or a timezone instance from the third-party `pendulum`, `pytz`, or
`dateutil`/`arrow` libraries.

`datetime.time` objects must not have a `tzinfo`.

```python
>>> import ormsgpack, datetime
>>> ormsgpack.packb(datetime.time(12, 0, 15, 290))
b'\xaf12:00:15.000290'
>>> ormsgpack.unpackb(_)
'12:00:15.000290'
```

`datetime.date` objects will always serialize.

```python
>>> import ormsgpack, datetime
>>> ormsgpack.packb(datetime.date(1900, 1, 2))
b'\xaa1900-01-02'
>>> ormsgpack.unpackb(_)
'1900-01-02'
```

Errors with `tzinfo` result in `MsgpackEncodeError` being raised.

To disable serialization of `datetime` objects specify the option
`ormsgpack.OPT_PASSTHROUGH_DATETIME`.

To use "Z" suffix instead of "+00:00" to indicate UTC ("Zulu") time, use the option
`ormsgpack.OPT_UTC_Z`.

To assume datetimes without timezone are UTC, use the option `ormsgpack.OPT_NAIVE_UTC`.

### enum

ormsgpack serializes enums natively. Options apply to their values.

```python
>>> import enum, datetime, ormsgpack
>>> class DatetimeEnum(enum.Enum):
...     EPOCH = datetime.datetime(1970, 1, 1, 0, 0, 0)
...
>>> ormsgpack.packb(DatetimeEnum.EPOCH)
b'\xb31970-01-01T00:00:00'
>>> ormsgpack.unpackb(_)
'1970-01-01T00:00:00'
>>> ormsgpack.packb(DatetimeEnum.EPOCH, option=ormsgpack.OPT_NAIVE_UTC)
b'\xb91970-01-01T00:00:00+00:00'
>>> ormsgpack.unpackb(_)
'1970-01-01T00:00:00+00:00'
```

Enums with members that are not supported types can be serialized using
`default`:

```python
>>> import enum, ormsgpack
>>> class Custom:
...     def __init__(self, val):
...         self.val = val
...
>>> def default(obj):
...     if isinstance(obj, Custom):
...         return obj.val
...     raise TypeError
...
>>> class CustomEnum(enum.Enum):
...     ONE = Custom(1)
...
>>> ormsgpack.packb(CustomEnum.ONE, default=default)
b'\x01'
>>> ormsgpack.unpackb(_)
1
```

### float

ormsgpack serializes and deserializes double precision floats with no loss of
precision and consistent rounding.

### int

ormsgpack serializes and deserializes 64-bit integers by default. The range
supported is a signed 64-bit integer's minimum (-9223372036854775807) to
an unsigned 64-bit integer's maximum (18446744073709551615).

### numpy

ormsgpack natively serializes `numpy.ndarray` and individual
`numpy.float64`, `numpy.float32`, `numpy.float16`,
`numpy.int64`, `numpy.int32`, `numpy.int16`, `numpy.int8`,
`numpy.uint64`, `numpy.uint32`, `numpy.uint16`, `numpy.uint8`,
`numpy.uintp`, `numpy.intp`, `numpy.datetime64`, and `numpy.bool`
instances.

`numpy.datetime64` instances are serialized as RFC 3339 strings.

ormsgpack is faster than all compared libraries at serializing
numpy instances. Serializing numpy data requires specifying
`option=ormsgpack.OPT_SERIALIZE_NUMPY`.

```python
>>> import ormsgpack, numpy
>>> ormsgpack.packb(
...     numpy.array([[1, 2, 3], [4, 5, 6]]),
...     option=ormsgpack.OPT_SERIALIZE_NUMPY,
... )
b'\x92\x93\x01\x02\x03\x93\x04\x05\x06'
>>> ormsgpack.unpackb(_)
[[1, 2, 3], [4, 5, 6]]
```

The array must be a contiguous C array (`C_CONTIGUOUS`) and one of the
supported datatypes.

If an array is not a contiguous C array or contains an supported datatype,
ormsgpack falls through to `default`. In `default`, `obj.tolist()` can be
specified. If an array is malformed, which is not expected,
`ormsgpack.MsgpackEncodeError` is raised.

#### Performance
![alt text](doc/numpy_float64.svg "numpy")
![alt text](doc/numpy_int8.svg "numpy int8")
![alt text](doc/numpy_int32.svg "numpy int32")
![alt text](doc/numpy_npbool.svg "numpy npbool")
![alt text](doc/numpy_uint8.svg "numpy uint8")
```
---------------------------------------------------------------------------------- benchmark 'numpy float64': 2 tests ---------------------------------------------------------------------------------
Name (time in ms)                      Min                 Max                Mean             StdDev              Median                IQR            Outliers      OPS            Rounds  Iterations
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_numpy_ormsgpack[float64]      77.9625 (1.0)       85.2507 (1.0)       79.0326 (1.0)       1.9043 (1.0)       78.5505 (1.0)       0.7408 (1.0)           1;1  12.6530 (1.0)          13           1
test_numpy_msgpack[float64]       511.5176 (6.56)     606.9395 (7.12)     559.0017 (7.07)     44.0661 (23.14)    572.5499 (7.29)     81.2972 (109.75)        3;0   1.7889 (0.14)          5           1
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


------------------------------------------------------------------------------------- benchmark 'numpy int32': 2 tests -------------------------------------------------------------------------------------
Name (time in ms)                      Min                   Max                  Mean             StdDev                Median                IQR            Outliers     OPS            Rounds  Iterations
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_numpy_ormsgpack[int32]       197.8751 (1.0)        210.3111 (1.0)        201.1033 (1.0)       5.1886 (1.0)        198.8518 (1.0)       3.8297 (1.0)           1;1  4.9726 (1.0)           5           1
test_numpy_msgpack[int32]       1,363.8515 (6.89)     1,505.4747 (7.16)     1,428.2127 (7.10)     53.4176 (10.30)    1,425.3516 (7.17)     72.8064 (19.01)         2;0  0.7002 (0.14)          5           1
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


-------------------------------------------------------------------------------- benchmark 'numpy int8': 2 tests ---------------------------------------------------------------------------------
Name (time in ms)                   Min                 Max                Mean            StdDev              Median                IQR            Outliers     OPS            Rounds  Iterations
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_numpy_ormsgpack[int8]     107.8013 (1.0)      113.7336 (1.0)      109.0364 (1.0)      1.7805 (1.0)      108.3574 (1.0)       0.4066 (1.0)           1;2  9.1712 (1.0)          10           1
test_numpy_msgpack[int8]       685.4149 (6.36)     703.2958 (6.18)     693.2396 (6.36)     7.9572 (4.47)     691.5435 (6.38)     14.4142 (35.45)         1;0  1.4425 (0.16)          5           1
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


------------------------------------------------------------------------------------- benchmark 'numpy npbool': 2 tests --------------------------------------------------------------------------------------
Name (time in ms)                       Min                   Max                  Mean             StdDev                Median                IQR            Outliers      OPS            Rounds  Iterations
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_numpy_ormsgpack[npbool]        87.9005 (1.0)         89.5460 (1.0)         88.7928 (1.0)       0.5098 (1.0)         88.8508 (1.0)       0.6609 (1.0)           4;0  11.2622 (1.0)          12           1
test_numpy_msgpack[npbool]       1,095.0599 (12.46)    1,176.3442 (13.14)    1,120.5916 (12.62)    32.9993 (64.73)    1,110.4216 (12.50)    38.4189 (58.13)         1;0   0.8924 (0.08)          5           1
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


--------------------------------------------------------------------------------- benchmark 'numpy uint8': 2 tests ---------------------------------------------------------------------------------
Name (time in ms)                    Min                 Max                Mean             StdDev              Median                IQR            Outliers     OPS            Rounds  Iterations
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_numpy_ormsgpack[uint8]     133.1743 (1.0)      134.7246 (1.0)      134.2793 (1.0)       0.4946 (1.0)      134.3120 (1.0)       0.4492 (1.0)           1;1  7.4472 (1.0)           8           1
test_numpy_msgpack[uint8]       727.1393 (5.46)     824.8247 (6.12)     775.7032 (5.78)     34.9887 (70.73)    775.9595 (5.78)     36.2824 (80.78)         2;0  1.2892 (0.17)          5           1
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
```

### uuid

ormsgpack serializes `uuid.UUID` instances to
[RFC 4122](https://tools.ietf.org/html/rfc4122) format, e.g.,
"f81d4fae-7dec-11d0-a765-00a0c91e6bf6".

```python
>>> import ormsgpack, uuid
>>> ormsgpack.packb(uuid.UUID('f81d4fae-7dec-11d0-a765-00a0c91e6bf6'))
b'\xd9$f81d4fae-7dec-11d0-a765-00a0c91e6bf6'
>>> ormsgpack.unpackb(_)
'f81d4fae-7dec-11d0-a765-00a0c91e6bf6'
>>> ormsgpack.packb(uuid.uuid5(uuid.NAMESPACE_DNS, "python.org"))
b'\xd9$886313e1-3b8a-5372-9b90-0c9aee199e5d'
>>> ormsgpack.unpackb(_)
'886313e1-3b8a-5372-9b90-0c9aee199e5d
```

### Pydantic
ormsgpack serializes `pydantic.BaseModel` instances natively.

#### Performance
![alt text](doc/pydantic.svg "pydantic")

```
-------------------------------------------------------------------------------- benchmark 'pydantic': 2 tests ---------------------------------------------------------------------------------
Name (time in ms)                Min                 Max                Mean            StdDev              Median               IQR            Outliers       OPS            Rounds  Iterations
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_pydantic_ormsgpack       4.3918 (1.0)       12.6521 (1.0)        4.8550 (1.0)      1.1455 (3.98)       4.6101 (1.0)      0.0662 (1.0)         11;24  205.9727 (1.0)         204           1
test_pydantic_msgpack       124.5500 (28.36)    125.5427 (9.92)     125.0582 (25.76)    0.2877 (1.0)      125.0855 (27.13)    0.2543 (3.84)          2;0    7.9963 (0.04)          8           1
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
```

## Latency
### Graphs
![alt text](doc/twitter_packb.svg "twitter.json serialization")
![alt text](doc/twitter_unpackb.svg "twitter.json deserialization")
![alt text](doc/github_packb.svg "github.json serialization")
![alt text](doc/github_unpackb.svg "github.json deserialization")
![alt text](doc/citm_catalog_packb.svg "citm_catalog.json serialization")
![alt text](doc/citm_catalog_unpackb.svg "citm_catalog.json deserialization")
![alt text](doc/canada_packb.svg "canada.json serialization")
![alt text](doc/canada_unpackb.svg "canada.json deserialization")
### Data
```
----------------------------------------------------------------------------- benchmark 'canada packb': 2 tests ------------------------------------------------------------------------------
Name (time in ms)                   Min                Max              Mean            StdDev            Median               IQR            Outliers       OPS            Rounds  Iterations
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_ormsgpack_packb[canada]     3.5302 (1.0)       3.8939 (1.0)      3.7319 (1.0)      0.0563 (1.0)      3.7395 (1.0)      0.0484 (1.0)         56;22  267.9571 (1.0)         241           1
test_msgpack_packb[canada]       8.8642 (2.51)     14.0432 (3.61)     9.3660 (2.51)     0.5649 (10.03)    9.2983 (2.49)     0.0982 (2.03)         3;11  106.7691 (0.40)        106           1
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


------------------------------------------------------------------------------- benchmark 'canada unpackb': 2 tests --------------------------------------------------------------------------------
Name (time in ms)                      Min                Max               Mean             StdDev             Median                IQR            Outliers      OPS            Rounds  Iterations
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_msgpack_unpackb[canada]       10.1176 (1.0)      62.0466 (1.18)     33.4806 (1.0)      18.8279 (1.0)      46.6582 (1.0)      38.5921 (1.02)         30;0  29.8680 (1.0)          67           1
test_ormsgpack_unpackb[canada]     11.3992 (1.13)     52.6587 (1.0)      34.1842 (1.02)     18.9461 (1.01)     47.6456 (1.02)     37.8024 (1.0)           8;0  29.2533 (0.98)         20           1
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


----------------------------------------------------------------------------- benchmark 'citm_catalog packb': 2 tests -----------------------------------------------------------------------------
Name (time in ms)                         Min               Max              Mean            StdDev            Median               IQR            Outliers       OPS            Rounds  Iterations
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_ormsgpack_packb[citm_catalog]     1.8024 (1.0)      2.1259 (1.0)      1.9487 (1.0)      0.0346 (1.0)      1.9525 (1.0)      0.0219 (1.0)         79;60  513.1650 (1.0)         454           1
test_msgpack_packb[citm_catalog]       3.4195 (1.90)     3.8128 (1.79)     3.6928 (1.90)     0.0535 (1.55)     3.7009 (1.90)     0.0250 (1.14)        47;49  270.7958 (0.53)        257           1
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


------------------------------------------------------------------------------ benchmark 'citm_catalog unpackb': 2 tests ------------------------------------------------------------------------------
Name (time in ms)                           Min                Max               Mean             StdDev            Median               IQR            Outliers      OPS            Rounds  Iterations
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_ormsgpack_unpackb[citm_catalog]     5.6986 (1.0)      46.1843 (1.0)      14.2491 (1.0)      15.9791 (1.0)      6.1051 (1.0)      0.3074 (1.0)           5;5  70.1798 (1.0)          23           1
test_msgpack_unpackb[citm_catalog]       7.2600 (1.27)     56.6642 (1.23)     16.4095 (1.15)     16.3257 (1.02)     7.7364 (1.27)     0.4944 (1.61)        28;29  60.9404 (0.87)        125           1
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


----------------------------------------------------------------------------------- benchmark 'github packb': 2 tests -----------------------------------------------------------------------------------
Name (time in us)                     Min                 Max                Mean            StdDev              Median               IQR            Outliers  OPS (Kops/s)            Rounds  Iterations
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_ormsgpack_packb[github]      73.0000 (1.0)      215.9000 (1.0)       80.4826 (1.0)      4.8889 (1.0)       80.3000 (1.0)      1.1000 (1.83)     866;1118       12.4250 (1.0)        6196           1
test_msgpack_packb[github]       103.8000 (1.42)     220.8000 (1.02)     112.8049 (1.40)     4.9686 (1.02)     113.0000 (1.41)     0.6000 (1.0)     1306;1560        8.8649 (0.71)       7028           1
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


----------------------------------------------------------------------------------- benchmark 'github unpackb': 2 tests -----------------------------------------------------------------------------------
Name (time in us)                       Min                 Max                Mean            StdDev              Median               IQR            Outliers  OPS (Kops/s)            Rounds  Iterations
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_ormsgpack_unpackb[github]     201.3000 (1.0)      318.5000 (1.0)      219.0861 (1.0)      6.7340 (1.0)      219.1000 (1.0)      1.2000 (1.0)       483;721        4.5644 (1.0)        3488           1
test_msgpack_unpackb[github]       289.8000 (1.44)     436.0000 (1.37)     314.9631 (1.44)     9.4130 (1.40)     315.1000 (1.44)     2.3000 (1.92)      341;557        3.1750 (0.70)       2477           1
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

--------------------------------------------------------------------------------------- benchmark 'twitter packb': 2 tests ---------------------------------------------------------------------------------------
Name (time in us)                        Min                   Max                  Mean             StdDev                Median                IQR            Outliers         OPS            Rounds  Iterations
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_ormsgpack_packb[twitter]       820.7000 (1.0)      2,945.2000 (2.03)       889.3791 (1.0)      78.4139 (2.43)       884.2000 (1.0)      12.5250 (1.0)          4;76  1,124.3799 (1.0)         809           1
test_msgpack_packb[twitter]       1,209.3000 (1.47)     1,451.2000 (1.0)      1,301.3615 (1.46)     32.2147 (1.0)      1,306.7000 (1.48)     14.1000 (1.13)      118;138    768.4260 (0.68)        592           1
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


------------------------------------------------------------------------------ benchmark 'twitter unpackb': 2 tests -----------------------------------------------------------------------------
Name (time in ms)                      Min                Max              Mean            StdDev            Median               IQR            Outliers       OPS            Rounds  Iterations
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_ormsgpack_unpackb[twitter]     2.7097 (1.0)      41.1530 (1.0)      3.2721 (1.0)      3.5860 (1.03)     2.8868 (1.0)      0.0614 (1.32)         4;38  305.6098 (1.0)         314           1
test_msgpack_unpackb[twitter]       3.8079 (1.41)     42.0617 (1.02)     4.4459 (1.36)     3.4893 (1.0)      4.1097 (1.42)     0.0465 (1.0)          2;54  224.9267 (0.74)        228           1
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
```
### Reproducing

The above was measured using Python 3.7.9 on Azure Linux VM (x86_64) with ormsgpack 0.2.1 and msgpack 1.0.2.

The latency results can be reproduced using `./scripts/benchmark.sh` and graphs using
`pytest --benchmark-histogram benchmarks/bench_*`.
## Questions

### Why can't I install it from PyPI?

Probably `pip` needs to be upgraded to version 20.3 or later to support
the latest manylinux_x_y or universal2 wheel formats.

### Will it deserialize to dataclasses, UUIDs, decimals, etc or support object_hook?

No. This requires a schema specifying what types are expected and how to
handle errors etc. This is addressed by data validation libraries a
level above this.

## Packaging

To package ormsgpack requires [Rust](https://www.rust-lang.org/) 1.65
or newer and the [maturin](https://github.com/PyO3/maturin) build
tool. The default feature `unstable-simd` enables the usage of SIMD
operations and requires nightly Rust. The recommended build command
is:

```sh
maturin build --release --strip
```

ormsgpack is tested on Linux/amd64, Linux/aarch64, Linux/armv7, macOS/amd64 and Windows/amd64.

There are no runtime dependencies other than libc.

## License

orjson was written by ijl <<ijl@mailbox.org>>, copyright 2018 - 2021, licensed
under both the Apache 2 and MIT licenses.

ormsgpack was forked from orjson by Aviram Hassan and is now maintained by Emanuele Giaquinta (@exg), licensed
same as orjson.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/aviramha/ormsgpack",
    "name": "ormsgpack",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "fast, msgpack, dataclass, dataclasses, datetime",
    "author": "Aviram Hassan <aviramyhassan@gmail.com>, Emanuele Giaquinta <emanuele.giaquinta@gmail.com>",
    "author_email": "Aviram Hassan <aviramyhassan@gmail.com>, Emanuele Giaquinta <emanuele.giaquinta@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/c5/70/11a6ab33136c2f98bb64e96743a55c7a87b87bae0413460cab7cc5764951/ormsgpack-1.5.0.tar.gz",
    "platform": null,
    "description": "# ormsgpack\n![PyPI](https://img.shields.io/pypi/v/ormsgpack)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/ormsgpack)\n\normsgpack is a fast msgpack library for Python. It is a fork/reboot of [orjson](https://github.com/ijl/orjson)\nIt serializes faster than [msgpack-python](https://github.com/msgpack/msgpack-python) and deserializes a bit slower (right now).\nIt supports serialization of:\n[dataclass](#dataclass),\n[datetime](#datetime),\n[numpy](#numpy),\n[pydantic](#pydantic) and\n[UUID](#uuid) instances natively.\n\nIts features and drawbacks compared to other Python msgpack libraries:\n\n* serializes `dataclass` instances natively.\n* serializes `datetime`, `date`, and `time` instances to RFC 3339 format,\ne.g., \"1970-01-01T00:00:00+00:00\"\n* serializes `numpy.ndarray` instances natively and faster.\n* serializes `pydantic.BaseModel` instances natively\n* serializes arbitrary types using a `default` hook\n\normsgpack supports CPython 3.8, 3.9, 3.10, 3.11 and 3.12. ormsgpack does not support PyPy. Releases follow semantic\nversioning and serializing a new object type without an opt-in flag is\nconsidered a breaking change.\n\normsgpack is licensed under both the Apache 2.0 and MIT licenses. The\nrepository and issue tracker is\n[github.com/aviramha/ormsgpack](https://github.com/aviramha/ormsgpack), and patches may be\nsubmitted there. There is a\n[CHANGELOG](https://github.com/aviramha/ormsgpack/blob/master/CHANGELOG.md)\navailable in the repository.\n\n1. [Usage](#usage)\n    1. [Install](#install)\n    2. [Quickstart](#quickstart)\n    4. [Serialize](#serialize)\n        1. [default](#default)\n        2. [option](#option)\n    5. [Deserialize](#deserialize)\n2. [Types](#types)\n    1. [dataclass](#dataclass)\n    2. [datetime](#datetime)\n    3. [enum](#enum)\n    4. [float](#float)\n    5. [int](#int)\n    6. [numpy](#numpy)\n    7. [uuid](#uuid)\n    8. [pydantic](#pydantic)\n3. [Latency](#latency)\n4. [Questions](#questions)\n5. [Packaging](#packaging)\n6. [License](#license)\n\n## Usage\n\n### Install\n\nTo install a wheel from PyPI:\n\n```sh\npip install --upgrade \"pip>=20.3\" # manylinux_x_y, universal2 wheel support\npip install --upgrade ormsgpack\n```\n\nTo build a wheel, see [packaging](#packaging).\n\n### Quickstart\n\nThis is an example of serializing, with options specified, and deserializing:\n\n```python\n>>> import ormsgpack, datetime, numpy\n>>> data = {\n...     \"type\": \"job\",\n...     \"created_at\": datetime.datetime(1970, 1, 1),\n...     \"status\": \"\ud83c\udd97\",\n...     \"payload\": numpy.array([[1, 2], [3, 4]]),\n... }\n>>> ormsgpack.packb(data, option=ormsgpack.OPT_NAIVE_UTC | ormsgpack.OPT_SERIALIZE_NUMPY)\nb'\\x84\\xa4type\\xa3job\\xaacreated_at\\xb91970-01-01T00:00:00+00:00\\xa6status\\xa4\\xf0\\x9f\\x86\\x97\\xa7payload\\x92\\x92\\x01\\x02\\x92\\x03\\x04'\n>>> ormsgpack.unpackb(_)\n{'type': 'job', 'created_at': '1970-01-01T00:00:00+00:00', 'status': '\ud83c\udd97', 'payload': [[1, 2], [3, 4]]}\n```\n\n### Serialize\n\n```python\ndef packb(\n    __obj: Any,\n    default: Optional[Callable[[Any], Any]] = ...,\n    option: Optional[int] = ...,\n) -> bytes: ...\n```\n\n`packb()` serializes Python objects to msgpack.\n\nIt natively serializes\n`bytes`, `str`, `dict`, `list`, `tuple`, `int`, `float`, `bool`,\n`dataclasses.dataclass`, `typing.TypedDict`, `datetime.datetime`,\n`datetime.date`, `datetime.time`, `uuid.UUID`, `numpy.ndarray`, and\n`None` instances. It supports arbitrary types through `default`. It\nserializes subclasses of `str`, `int`, `dict`, `list`,\n`dataclasses.dataclass`, and `enum.Enum`. It does not serialize subclasses\nof `tuple` to avoid serializing `namedtuple` objects as arrays. To avoid\nserializing subclasses, specify the option `ormsgpack.OPT_PASSTHROUGH_SUBCLASS`.\n\nThe output is a `bytes` object containing UTF-8.\n\nThe global interpreter lock (GIL) is held for the duration of the call.\n\nIt raises `MsgpackEncodeError` on an unsupported type. This exception message\ndescribes the invalid object with the error message\n`Type is not msgpack serializable: ...`. To fix this, specify\n[default](#default).\n\nIt raises `MsgpackEncodeError` on a `str` that contains invalid UTF-8.\n\nIt raises `MsgpackEncodeError` if a `dict` has a key of a type other than `str` or `bytes`,\nunless `OPT_NON_STR_KEYS` is specified.\n\nIt raises `MsgpackEncodeError` if the output of `default` recurses to handling by\n`default` more than 254 levels deep.\n\nIt raises `MsgpackEncodeError` on circular references.\n\nIt raises `MsgpackEncodeError`  if a `tzinfo` on a datetime object is\nunsupported.\n\n`MsgpackEncodeError` is a subclass of `TypeError`.\n\n#### default\n\nTo serialize a subclass or arbitrary types, specify `default` as a\ncallable that returns a supported type. `default` may be a function,\nlambda, or callable class instance. To specify that a type was not\nhandled by `default`, raise an exception such as `TypeError`.\n\n```python\n>>> import ormsgpack, decimal\n>>> def default(obj):\n...     if isinstance(obj, decimal.Decimal):\n...         return str(obj)\n...     raise TypeError\n...\n>>> ormsgpack.packb(decimal.Decimal(\"0.0842389659712649442845\"))\nTypeError: Type is not msgpack serializable: decimal.Decimal\n>>> ormsgpack.packb(decimal.Decimal(\"0.0842389659712649442845\"), default=default)\nb'\\xb80.0842389659712649442845'\n>>> ormsgpack.packb({1, 2}, default=default)\nTypeError: Type is not msgpack serializable: set\n```\n\nThe `default` callable may return an object that itself\nmust be handled by `default` up to 254 times before an exception\nis raised.\n\nIt is important that `default` raise an exception if a type cannot be handled.\nPython otherwise implicitly returns `None`, which appears to the caller\nlike a legitimate value and is serialized:\n\n```python\n>>> import ormsgpack, decimal\n>>> def default(obj):\n...     if isinstance(obj, decimal.Decimal):\n...         return str(obj)\n...\n>>> ormsgpack.packb({\"set\":{1, 2}}, default=default)\nb'\\x81\\xa3set\\xc0'\n>>> ormsgpack.unpackb(_)\n{'set': None}\n```\n\nTo serialize a type as a MessagePack extension type, return an\n`ormsgpack.Ext` object. The instantiation arguments are an integer in\nthe range `[0, 127]` and a `bytes` object, defining the type and\nvalue, respectively.\n\n```python\n>>> import ormsgpack, decimal\n>>> def default(obj):\n...     if isinstance(obj, decimal.Decimal):\n...         return ormsgpack.Ext(0, str(obj).encode())\n...     raise TypeError\n...\n>>> ormsgpack.packb(decimal.Decimal(\"0.0842389659712649442845\"), default=default)\nb'\\xc7\\x18\\x000.0842389659712649442845'\n```\n\n#### option\n\nTo modify how data is serialized, specify `option`. Each `option` is an integer\nconstant in `ormsgpack`. To specify multiple options, mask them together, e.g.,\n`option=ormsgpack.OPT_NON_STR_KEYS | ormsgpack.OPT_NAIVE_UTC`.\n\n##### OPT_NAIVE_UTC\n\nSerialize `datetime.datetime` objects without a `tzinfo` and `numpy.datetime64`\nobjects as UTC. This has no effect on `datetime.datetime` objects that have\n`tzinfo` set.\n\n```python\n>>> import ormsgpack, datetime\n>>> ormsgpack.packb(\n...     datetime.datetime(1970, 1, 1, 0, 0, 0),\n... )\nb'\\xb31970-01-01T00:00:00'\n>>> ormsgpack.unpackb(_)\n'1970-01-01T00:00:00'\n>>> ormsgpack.packb(\n...     datetime.datetime(1970, 1, 1, 0, 0, 0),\n...     option=ormsgpack.OPT_NAIVE_UTC,\n... )\nb'\\xb91970-01-01T00:00:00+00:00'\n>>> ormsgpack.unpackb(_)\n'1970-01-01T00:00:00+00:00'\n```\n\n##### OPT_NON_STR_KEYS\n\nSerialize `dict` keys of type other than `str`. This allows `dict` keys\nto be one of `str`, `int`, `float`, `bool`, `None`, `datetime.datetime`,\n`datetime.date`, `datetime.time`, `enum.Enum`, and `uuid.UUID`.\n\n```python\n>>> import ormsgpack, datetime, uuid\n>>> ormsgpack.packb(\n...     {uuid.UUID(\"7202d115-7ff3-4c81-a7c1-2a1f067b1ece\"): [1, 2, 3]},\n...     option=ormsgpack.OPT_NON_STR_KEYS,\n... )\nb'\\x81\\xd9$7202d115-7ff3-4c81-a7c1-2a1f067b1ece\\x93\\x01\\x02\\x03'\n>>> ormsgpack.unpackb(_)\n{'7202d115-7ff3-4c81-a7c1-2a1f067b1ece': [1, 2, 3]}\n>>> ormsgpack.packb(\n...     {datetime.datetime(1970, 1, 1, 0, 0, 0): [1, 2, 3]},\n...     option=ormsgpack.OPT_NON_STR_KEYS | ormsgpack.OPT_NAIVE_UTC,\n... )\nb'\\x81\\xb91970-01-01T00:00:00+00:00\\x93\\x01\\x02\\x03'\n>>> ormsgpack.unpackb(_)\n{'1970-01-01T00:00:00+00:00': [1, 2, 3]}\n```\n\nThese types are generally serialized how they would be as\nvalues, e.g., `datetime.datetime` is still an RFC 3339 string and respects\noptions affecting it.\n\nThis option has the risk of creating duplicate keys. This is because non-`str`\nobjects may serialize to the same `str` as an existing key, e.g.,\n`{\"1970-01-01T00:00:00+00:00\": true, datetime.datetime(1970, 1, 1, 0, 0, 0): false}`.\nThe last key to be inserted to the `dict` will be serialized last and a msgpack deserializer will presumably take the last\noccurrence of a key (in the above, `false`). The first value will be lost.\n\nThis option is not compatible with `ormsgpack.OPT_SORT_KEYS`.\n\n##### OPT_OMIT_MICROSECONDS\n\nDo not serialize the microsecond component of `datetime.datetime`,\n`datetime.time` and `numpy.datetime64` instances.\n\n```python\n>>> import ormsgpack, datetime\n>>> ormsgpack.packb(\n...     datetime.datetime(1970, 1, 1, 0, 0, 0, 1),\n... )\nb'\\xba1970-01-01T00:00:00.000001'\n>>> ormsgpack.unpackb(_)\n'1970-01-01T00:00:00.000001'\n>>> ormsgpack.packb(\n...     datetime.datetime(1970, 1, 1, 0, 0, 0, 1),\n...     option=ormsgpack.OPT_OMIT_MICROSECONDS,\n... )\nb'\\xb31970-01-01T00:00:00'\n>>> ormsgpack.unpackb(_)\n'1970-01-01T00:00:00'\n```\n\n##### OPT_PASSTHROUGH_BIG_INT\n\nEnables passthrough of big (Python) ints. By setting this option, one can set a `default` function for ints larger than 63 bits, smaller ints are still serialized efficiently.\n\n```python\n>>> import ormsgpack\n>>> ormsgpack.packb(\n...     2**65,\n... )\nTypeError: Integer exceeds 64-bit range\n>>> ormsgpack.packb(\n...     2**65,\n...     option=ormsgpack.OPT_PASSTHROUGH_BIG_INT,\n...     default=lambda _: {\"type\": \"bigint\", \"value\": str(_) }\n... )\nb'\\x82\\xa4type\\xa6bigint\\xa5value\\xb436893488147419103232'\n>>> ormsgpack.unpackb(_)\n{'type': 'bigint', 'value': '36893488147419103232'}\n```\n\n##### OPT_PASSTHROUGH_DATACLASS\n\nPassthrough `dataclasses.dataclass` instances to `default`. This allows\ncustomizing their output but is much slower.\n\n\n```python\n>>> import ormsgpack, dataclasses\n>>> @dataclasses.dataclass\n... class User:\n...     id: str\n...     name: str\n...     password: str\n...\n>>> def default(obj):\n...     if isinstance(obj, User):\n...         return {\"id\": obj.id, \"name\": obj.name}\n...     raise TypeError\n...\n>>> ormsgpack.packb(User(\"3b1\", \"asd\", \"zxc\"))\nb'\\x83\\xa2id\\xa33b1\\xa4name\\xa3asd\\xa8password\\xa3zxc'\n>>> ormsgpack.packb(User(\"3b1\", \"asd\", \"zxc\"), option=ormsgpack.OPT_PASSTHROUGH_DATACLASS)\nTypeError: Type is not msgpack serializable: User\n>>> ormsgpack.packb(\n...     User(\"3b1\", \"asd\", \"zxc\"),\n...     option=ormsgpack.OPT_PASSTHROUGH_DATACLASS,\n...     default=default,\n... )\nb'\\x82\\xa2id\\xa33b1\\xa4name\\xa3asd'\n```\n\n##### OPT_PASSTHROUGH_DATETIME\n\nPassthrough `datetime.datetime`, `datetime.date`, and `datetime.time` instances\nto `default`. This allows serializing datetimes to a custom format, e.g.,\nHTTP dates:\n\n```python\n>>> import ormsgpack, datetime\n>>> def default(obj):\n...     if isinstance(obj, datetime.datetime):\n...         return obj.strftime(\"%a, %d %b %Y %H:%M:%S GMT\")\n...     raise TypeError\n...\n>>> ormsgpack.packb({\"created_at\": datetime.datetime(1970, 1, 1)})\nb'\\x81\\xaacreated_at\\xb31970-01-01T00:00:00'\n>>> ormsgpack.packb({\"created_at\": datetime.datetime(1970, 1, 1)}, option=ormsgpack.OPT_PASSTHROUGH_DATETIME)\nTypeError: Type is not msgpack serializable: datetime.datetime\n>>> ormsgpack.packb(\n...     {\"created_at\": datetime.datetime(1970, 1, 1)},\n...     option=ormsgpack.OPT_PASSTHROUGH_DATETIME,\n...     default=default,\n... )\nb'\\x81\\xaacreated_at\\xbdThu, 01 Jan 1970 00:00:00 GMT'\n```\n\nThis does not affect datetimes in `dict` keys if using OPT_NON_STR_KEYS.\n\n##### OPT_PASSTHROUGH_SUBCLASS\n\nPassthrough subclasses of builtin types to `default`.\n\n```python\n>>> import ormsgpack\n>>> class Secret(str):\n...     pass\n...\n>>> def default(obj):\n...     if isinstance(obj, Secret):\n...         return \"******\"\n...     raise TypeError\n...\n>>> ormsgpack.packb(Secret(\"zxc\"))\nb'\\xa3zxc'\n>>> ormsgpack.packb(Secret(\"zxc\"), option=ormsgpack.OPT_PASSTHROUGH_SUBCLASS)\nTypeError: Type is not msgpack serializable: Secret\n>>> ormsgpack.packb(Secret(\"zxc\"), option=ormsgpack.OPT_PASSTHROUGH_SUBCLASS, default=default)\nb'\\xa6******'\n```\n\nThis does not affect serializing subclasses as `dict` keys if using\nOPT_NON_STR_KEYS.\n\n##### OPT_PASSTHROUGH_TUPLE\n\nPassthrough tuples to `default`.\n\n```python\n>>> import ormsgpack\n>>> ormsgpack.packb(\n...     (9193, \"test\", 42),\n... )\nb'\\x93\\xcd#\\xe9\\xa4test*'\n>>> ormsgpack.unpackb(_)\n[9193, 'test', 42]\n>>> ormsgpack.packb(\n...     (9193, \"test\", 42),\n...     option=ormsgpack.OPT_PASSTHROUGH_TUPLE,\n...     default=lambda _: {\"type\": \"tuple\", \"value\": list(_)}\n... )\nb'\\x82\\xa4type\\xa5tuple\\xa5value\\x93\\xcd#\\xe9\\xa4test*'\n>>> ormsgpack.unpackb(_)\n{'type': 'tuple', 'value': [9193, 'test', 42]}\n```\n\n##### OPT_SERIALIZE_NUMPY\n\nSerialize `numpy.ndarray` instances. For more, see\n[numpy](#numpy).\n\n##### OPT_SERIALIZE_PYDANTIC\nSerialize `pydantic.BaseModel` instances.\n\n##### OPT_SORT_KEYS\n\nSerialize `dict` keys in sorted order. The default is to serialize in an\nunspecified order.\n\nThis can be used to ensure the order is deterministic for hashing or tests.\nIt has a substantial performance penalty and is not recommended in general.\n\n```python\n>>> import ormsgpack\n>>> ormsgpack.packb({\"b\": 1, \"c\": 2, \"a\": 3})\nb'\\x83\\xa1b\\x01\\xa1c\\x02\\xa1a\\x03'\n>>> ormsgpack.packb({\"b\": 1, \"c\": 2, \"a\": 3}, option=ormsgpack.OPT_SORT_KEYS)\nb'\\x83\\xa1a\\x03\\xa1b\\x01\\xa1c\\x02'\n```\n\nThe sorting is not collation/locale-aware:\n\n```python\n>>> import ormsgpack\n>>> ormsgpack.packb({\"a\": 1, \"\u00e4\": 2, \"A\": 3}, option=ormsgpack.OPT_SORT_KEYS)\nb'\\x83\\xa1A\\x03\\xa1a\\x01\\xa2\\xc3\\xa4\\x02'\n```\n\n`dataclass` also serialize as maps but this has no effect on them.\n\n##### OPT_UTC_Z\n\nSerialize a UTC timezone on `datetime.datetime` and `numpy.datetime64` instances\nas `Z` instead of `+00:00`.\n\n```python\n>>> import ormsgpack, datetime\n>>> ormsgpack.packb(\n...     datetime.datetime(1970, 1, 1, 0, 0, 0, tzinfo=datetime.timezone.utc),\n... )\nb'\\xb91970-01-01T00:00:00+00:00'\n>>> ormsgpack.packb(\n...     datetime.datetime(1970, 1, 1, 0, 0, 0, tzinfo=datetime.timezone.utc),\n...     option=ormsgpack.OPT_UTC_Z\n... )\nb'\\xb41970-01-01T00:00:00Z'\n```\n\n### Deserialize\n```python\ndef unpackb(\n    __obj: Union[bytes, bytearray, memoryview],\n    /,\n    ext_hook: Optional[Callable[[int, bytes], Any]] = ...,\n    option: Optional[int] = ...,\n) -> Any: ...\n```\n\n`unpackb()` deserializes msgpack to Python objects. It deserializes to `dict`,\n`list`, `int`, `float`, `str`, `bool`, `bytes` and `None` objects.\n\n`bytes`, `bytearray`, `memoryview` input are accepted.\n\normsgpack maintains a cache of map keys for the duration of the process. This\ncauses a net reduction in memory usage by avoiding duplicate strings. The\nkeys must be at most 64 bytes to be cached and 512 entries are stored.\n\nThe global interpreter lock (GIL) is held for the duration of the call.\n\nIt raises `MsgpackDecodeError` if given an invalid type or invalid\nmsgpack.\n\n`MsgpackDecodeError` is a subclass of `ValueError`.\n\n#### ext_hook\n\nTo deserialize extension types, specify the optional `ext_hook`\nargument. The value should be a callable and is invoked with the\nextension type and value as arguments.\n\n```python\n>>> import ormsgpack, decimal\n>>> def ext_hook(tag, data):\n...     if tag == 0:\n...         return decimal.Decimal(data.decode())\n...     raise TypeError\n...\n>>> ormsgpack.packb(\n...     ormsgpack.Ext(0, str(decimal.Decimal(\"0.0842389659712649442845\")).encode())\n... )\nb'\\xc7\\x18\\x000.0842389659712649442845'\n>>> ormsgpack.unpackb(_, ext_hook=ext_hook)\nDecimal('0.0842389659712649442845'\n```\n\n#### option\n`unpackb()` supports the `OPT_NON_STR_KEYS` option, that is similar to original msgpack's `strict_map_key=False`.\nBe aware that this option is considered unsafe and disabled by default in msgpack due to possibility of HashDoS.\n\n## Types\n\n### dataclass\n\normsgpack serializes instances of `dataclasses.dataclass` natively. It serializes\ninstances 40-50x as fast as other libraries and avoids a severe slowdown seen\nin other libraries compared to serializing `dict`.\n\nIt is supported to pass all variants of dataclasses, including dataclasses\nusing `__slots__`, frozen dataclasses, those with optional or default\nattributes, and subclasses. There is a performance benefit to not\nusing `__slots__`.\n\nDataclasses are serialized as maps, with every attribute serialized and in\nthe order given on class definition:\n\n```python\n>>> import dataclasses, ormsgpack, typing\n>>> @dataclasses.dataclass\n... class Member:\n...     id: int\n...     active: bool = dataclasses.field(default=False)\n...\n>>> @dataclasses.dataclass\n... class Object:\n...     id: int\n...     name: str\n...     members: typing.List[Member]\n...\n>>> ormsgpack.packb(Object(1, \"a\", [Member(1, True), Member(2)]))\nb'\\x83\\xa2id\\x01\\xa4name\\xa1a\\xa7members\\x92\\x82\\xa2id\\x01\\xa6active\\xc3\\x82\\xa2id\\x02\\xa6active\\xc2'\n```\n#### Performance\n![alt text](doc/dataclass.svg \"dataclass\")\n\n```\n--------------------------------------------------------------------------------- benchmark 'dataclass': 2 tests --------------------------------------------------------------------------------\nName (time in ms)                 Min                 Max                Mean            StdDev              Median               IQR            Outliers       OPS            Rounds  Iterations\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_dataclass_ormsgpack       3.4248 (1.0)        7.7949 (1.0)        3.6266 (1.0)      0.3293 (1.0)        3.5815 (1.0)      0.0310 (1.0)          4;34  275.7434 (1.0)         240           1\ntest_dataclass_msgpack       140.2774 (40.96)    143.6087 (18.42)    141.3847 (38.99)    1.0038 (3.05)     141.1823 (39.42)    0.7304 (23.60)         2;1    7.0729 (0.03)          8           1\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n```\n\n### datetime\n\normsgpack serializes `datetime.datetime` objects to\n[RFC 3339](https://tools.ietf.org/html/rfc3339) format,\ne.g., \"1970-01-01T00:00:00+00:00\". This is a subset of ISO 8601 and is\ncompatible with `isoformat()` in the standard library.\n\n```python\n>>> import ormsgpack, datetime, zoneinfo\n>>> ormsgpack.packb(\n...     datetime.datetime(2018, 12, 1, 2, 3, 4, 9, tzinfo=zoneinfo.ZoneInfo('Australia/Adelaide'))\n... )\nb'\\xd9 2018-12-01T02:03:04.000009+10:30'\n>>> ormsgpack.unpackb(_)\n'2018-12-01T02:03:04.000009+10:30'\n>>> ormsgpack.packb(\n...     datetime.datetime.fromtimestamp(4123518902).replace(tzinfo=datetime.timezone.utc)\n... )\nb'\\xb92100-09-02T00:55:02+00:00'\n>>> ormsgpack.unpackb(_)\n'2100-09-02T00:55:02+00:00'\n>>> ormsgpack.packb(\n...     datetime.datetime.fromtimestamp(4123518902)\n... )\nb'\\xb32100-09-02T00:55:02'\n>>> ormsgpack.unpackb(_)\n'2100-09-02T00:55:02'\n```\n\n`datetime.datetime` supports instances with a `tzinfo` that is `None`,\n`datetime.timezone.utc`, a timezone instance from the python3.9+ `zoneinfo`\nmodule, or a timezone instance from the third-party `pendulum`, `pytz`, or\n`dateutil`/`arrow` libraries.\n\n`datetime.time` objects must not have a `tzinfo`.\n\n```python\n>>> import ormsgpack, datetime\n>>> ormsgpack.packb(datetime.time(12, 0, 15, 290))\nb'\\xaf12:00:15.000290'\n>>> ormsgpack.unpackb(_)\n'12:00:15.000290'\n```\n\n`datetime.date` objects will always serialize.\n\n```python\n>>> import ormsgpack, datetime\n>>> ormsgpack.packb(datetime.date(1900, 1, 2))\nb'\\xaa1900-01-02'\n>>> ormsgpack.unpackb(_)\n'1900-01-02'\n```\n\nErrors with `tzinfo` result in `MsgpackEncodeError` being raised.\n\nTo disable serialization of `datetime` objects specify the option\n`ormsgpack.OPT_PASSTHROUGH_DATETIME`.\n\nTo use \"Z\" suffix instead of \"+00:00\" to indicate UTC (\"Zulu\") time, use the option\n`ormsgpack.OPT_UTC_Z`.\n\nTo assume datetimes without timezone are UTC, use the option `ormsgpack.OPT_NAIVE_UTC`.\n\n### enum\n\normsgpack serializes enums natively. Options apply to their values.\n\n```python\n>>> import enum, datetime, ormsgpack\n>>> class DatetimeEnum(enum.Enum):\n...     EPOCH = datetime.datetime(1970, 1, 1, 0, 0, 0)\n...\n>>> ormsgpack.packb(DatetimeEnum.EPOCH)\nb'\\xb31970-01-01T00:00:00'\n>>> ormsgpack.unpackb(_)\n'1970-01-01T00:00:00'\n>>> ormsgpack.packb(DatetimeEnum.EPOCH, option=ormsgpack.OPT_NAIVE_UTC)\nb'\\xb91970-01-01T00:00:00+00:00'\n>>> ormsgpack.unpackb(_)\n'1970-01-01T00:00:00+00:00'\n```\n\nEnums with members that are not supported types can be serialized using\n`default`:\n\n```python\n>>> import enum, ormsgpack\n>>> class Custom:\n...     def __init__(self, val):\n...         self.val = val\n...\n>>> def default(obj):\n...     if isinstance(obj, Custom):\n...         return obj.val\n...     raise TypeError\n...\n>>> class CustomEnum(enum.Enum):\n...     ONE = Custom(1)\n...\n>>> ormsgpack.packb(CustomEnum.ONE, default=default)\nb'\\x01'\n>>> ormsgpack.unpackb(_)\n1\n```\n\n### float\n\normsgpack serializes and deserializes double precision floats with no loss of\nprecision and consistent rounding.\n\n### int\n\normsgpack serializes and deserializes 64-bit integers by default. The range\nsupported is a signed 64-bit integer's minimum (-9223372036854775807) to\nan unsigned 64-bit integer's maximum (18446744073709551615).\n\n### numpy\n\normsgpack natively serializes `numpy.ndarray` and individual\n`numpy.float64`, `numpy.float32`, `numpy.float16`,\n`numpy.int64`, `numpy.int32`, `numpy.int16`, `numpy.int8`,\n`numpy.uint64`, `numpy.uint32`, `numpy.uint16`, `numpy.uint8`,\n`numpy.uintp`, `numpy.intp`, `numpy.datetime64`, and `numpy.bool`\ninstances.\n\n`numpy.datetime64` instances are serialized as RFC 3339 strings.\n\normsgpack is faster than all compared libraries at serializing\nnumpy instances. Serializing numpy data requires specifying\n`option=ormsgpack.OPT_SERIALIZE_NUMPY`.\n\n```python\n>>> import ormsgpack, numpy\n>>> ormsgpack.packb(\n...     numpy.array([[1, 2, 3], [4, 5, 6]]),\n...     option=ormsgpack.OPT_SERIALIZE_NUMPY,\n... )\nb'\\x92\\x93\\x01\\x02\\x03\\x93\\x04\\x05\\x06'\n>>> ormsgpack.unpackb(_)\n[[1, 2, 3], [4, 5, 6]]\n```\n\nThe array must be a contiguous C array (`C_CONTIGUOUS`) and one of the\nsupported datatypes.\n\nIf an array is not a contiguous C array or contains an supported datatype,\normsgpack falls through to `default`. In `default`, `obj.tolist()` can be\nspecified. If an array is malformed, which is not expected,\n`ormsgpack.MsgpackEncodeError` is raised.\n\n#### Performance\n![alt text](doc/numpy_float64.svg \"numpy\")\n![alt text](doc/numpy_int8.svg \"numpy int8\")\n![alt text](doc/numpy_int32.svg \"numpy int32\")\n![alt text](doc/numpy_npbool.svg \"numpy npbool\")\n![alt text](doc/numpy_uint8.svg \"numpy uint8\")\n```\n---------------------------------------------------------------------------------- benchmark 'numpy float64': 2 tests ---------------------------------------------------------------------------------\nName (time in ms)                      Min                 Max                Mean             StdDev              Median                IQR            Outliers      OPS            Rounds  Iterations\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_numpy_ormsgpack[float64]      77.9625 (1.0)       85.2507 (1.0)       79.0326 (1.0)       1.9043 (1.0)       78.5505 (1.0)       0.7408 (1.0)           1;1  12.6530 (1.0)          13           1\ntest_numpy_msgpack[float64]       511.5176 (6.56)     606.9395 (7.12)     559.0017 (7.07)     44.0661 (23.14)    572.5499 (7.29)     81.2972 (109.75)        3;0   1.7889 (0.14)          5           1\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n------------------------------------------------------------------------------------- benchmark 'numpy int32': 2 tests -------------------------------------------------------------------------------------\nName (time in ms)                      Min                   Max                  Mean             StdDev                Median                IQR            Outliers     OPS            Rounds  Iterations\n------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_numpy_ormsgpack[int32]       197.8751 (1.0)        210.3111 (1.0)        201.1033 (1.0)       5.1886 (1.0)        198.8518 (1.0)       3.8297 (1.0)           1;1  4.9726 (1.0)           5           1\ntest_numpy_msgpack[int32]       1,363.8515 (6.89)     1,505.4747 (7.16)     1,428.2127 (7.10)     53.4176 (10.30)    1,425.3516 (7.17)     72.8064 (19.01)         2;0  0.7002 (0.14)          5           1\n------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n-------------------------------------------------------------------------------- benchmark 'numpy int8': 2 tests ---------------------------------------------------------------------------------\nName (time in ms)                   Min                 Max                Mean            StdDev              Median                IQR            Outliers     OPS            Rounds  Iterations\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_numpy_ormsgpack[int8]     107.8013 (1.0)      113.7336 (1.0)      109.0364 (1.0)      1.7805 (1.0)      108.3574 (1.0)       0.4066 (1.0)           1;2  9.1712 (1.0)          10           1\ntest_numpy_msgpack[int8]       685.4149 (6.36)     703.2958 (6.18)     693.2396 (6.36)     7.9572 (4.47)     691.5435 (6.38)     14.4142 (35.45)         1;0  1.4425 (0.16)          5           1\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n------------------------------------------------------------------------------------- benchmark 'numpy npbool': 2 tests --------------------------------------------------------------------------------------\nName (time in ms)                       Min                   Max                  Mean             StdDev                Median                IQR            Outliers      OPS            Rounds  Iterations\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_numpy_ormsgpack[npbool]        87.9005 (1.0)         89.5460 (1.0)         88.7928 (1.0)       0.5098 (1.0)         88.8508 (1.0)       0.6609 (1.0)           4;0  11.2622 (1.0)          12           1\ntest_numpy_msgpack[npbool]       1,095.0599 (12.46)    1,176.3442 (13.14)    1,120.5916 (12.62)    32.9993 (64.73)    1,110.4216 (12.50)    38.4189 (58.13)         1;0   0.8924 (0.08)          5           1\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n--------------------------------------------------------------------------------- benchmark 'numpy uint8': 2 tests ---------------------------------------------------------------------------------\nName (time in ms)                    Min                 Max                Mean             StdDev              Median                IQR            Outliers     OPS            Rounds  Iterations\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_numpy_ormsgpack[uint8]     133.1743 (1.0)      134.7246 (1.0)      134.2793 (1.0)       0.4946 (1.0)      134.3120 (1.0)       0.4492 (1.0)           1;1  7.4472 (1.0)           8           1\ntest_numpy_msgpack[uint8]       727.1393 (5.46)     824.8247 (6.12)     775.7032 (5.78)     34.9887 (70.73)    775.9595 (5.78)     36.2824 (80.78)         2;0  1.2892 (0.17)          5           1\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n```\n\n### uuid\n\normsgpack serializes `uuid.UUID` instances to\n[RFC 4122](https://tools.ietf.org/html/rfc4122) format, e.g.,\n\"f81d4fae-7dec-11d0-a765-00a0c91e6bf6\".\n\n```python\n>>> import ormsgpack, uuid\n>>> ormsgpack.packb(uuid.UUID('f81d4fae-7dec-11d0-a765-00a0c91e6bf6'))\nb'\\xd9$f81d4fae-7dec-11d0-a765-00a0c91e6bf6'\n>>> ormsgpack.unpackb(_)\n'f81d4fae-7dec-11d0-a765-00a0c91e6bf6'\n>>> ormsgpack.packb(uuid.uuid5(uuid.NAMESPACE_DNS, \"python.org\"))\nb'\\xd9$886313e1-3b8a-5372-9b90-0c9aee199e5d'\n>>> ormsgpack.unpackb(_)\n'886313e1-3b8a-5372-9b90-0c9aee199e5d\n```\n\n### Pydantic\normsgpack serializes `pydantic.BaseModel` instances natively.\n\n#### Performance\n![alt text](doc/pydantic.svg \"pydantic\")\n\n```\n-------------------------------------------------------------------------------- benchmark 'pydantic': 2 tests ---------------------------------------------------------------------------------\nName (time in ms)                Min                 Max                Mean            StdDev              Median               IQR            Outliers       OPS            Rounds  Iterations\n------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_pydantic_ormsgpack       4.3918 (1.0)       12.6521 (1.0)        4.8550 (1.0)      1.1455 (3.98)       4.6101 (1.0)      0.0662 (1.0)         11;24  205.9727 (1.0)         204           1\ntest_pydantic_msgpack       124.5500 (28.36)    125.5427 (9.92)     125.0582 (25.76)    0.2877 (1.0)      125.0855 (27.13)    0.2543 (3.84)          2;0    7.9963 (0.04)          8           1\n------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n```\n\n## Latency\n### Graphs\n![alt text](doc/twitter_packb.svg \"twitter.json serialization\")\n![alt text](doc/twitter_unpackb.svg \"twitter.json deserialization\")\n![alt text](doc/github_packb.svg \"github.json serialization\")\n![alt text](doc/github_unpackb.svg \"github.json deserialization\")\n![alt text](doc/citm_catalog_packb.svg \"citm_catalog.json serialization\")\n![alt text](doc/citm_catalog_unpackb.svg \"citm_catalog.json deserialization\")\n![alt text](doc/canada_packb.svg \"canada.json serialization\")\n![alt text](doc/canada_unpackb.svg \"canada.json deserialization\")\n### Data\n```\n----------------------------------------------------------------------------- benchmark 'canada packb': 2 tests ------------------------------------------------------------------------------\nName (time in ms)                   Min                Max              Mean            StdDev            Median               IQR            Outliers       OPS            Rounds  Iterations\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_ormsgpack_packb[canada]     3.5302 (1.0)       3.8939 (1.0)      3.7319 (1.0)      0.0563 (1.0)      3.7395 (1.0)      0.0484 (1.0)         56;22  267.9571 (1.0)         241           1\ntest_msgpack_packb[canada]       8.8642 (2.51)     14.0432 (3.61)     9.3660 (2.51)     0.5649 (10.03)    9.2983 (2.49)     0.0982 (2.03)         3;11  106.7691 (0.40)        106           1\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n------------------------------------------------------------------------------- benchmark 'canada unpackb': 2 tests --------------------------------------------------------------------------------\nName (time in ms)                      Min                Max               Mean             StdDev             Median                IQR            Outliers      OPS            Rounds  Iterations\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_msgpack_unpackb[canada]       10.1176 (1.0)      62.0466 (1.18)     33.4806 (1.0)      18.8279 (1.0)      46.6582 (1.0)      38.5921 (1.02)         30;0  29.8680 (1.0)          67           1\ntest_ormsgpack_unpackb[canada]     11.3992 (1.13)     52.6587 (1.0)      34.1842 (1.02)     18.9461 (1.01)     47.6456 (1.02)     37.8024 (1.0)           8;0  29.2533 (0.98)         20           1\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n----------------------------------------------------------------------------- benchmark 'citm_catalog packb': 2 tests -----------------------------------------------------------------------------\nName (time in ms)                         Min               Max              Mean            StdDev            Median               IQR            Outliers       OPS            Rounds  Iterations\n---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_ormsgpack_packb[citm_catalog]     1.8024 (1.0)      2.1259 (1.0)      1.9487 (1.0)      0.0346 (1.0)      1.9525 (1.0)      0.0219 (1.0)         79;60  513.1650 (1.0)         454           1\ntest_msgpack_packb[citm_catalog]       3.4195 (1.90)     3.8128 (1.79)     3.6928 (1.90)     0.0535 (1.55)     3.7009 (1.90)     0.0250 (1.14)        47;49  270.7958 (0.53)        257           1\n---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n------------------------------------------------------------------------------ benchmark 'citm_catalog unpackb': 2 tests ------------------------------------------------------------------------------\nName (time in ms)                           Min                Max               Mean             StdDev            Median               IQR            Outliers      OPS            Rounds  Iterations\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_ormsgpack_unpackb[citm_catalog]     5.6986 (1.0)      46.1843 (1.0)      14.2491 (1.0)      15.9791 (1.0)      6.1051 (1.0)      0.3074 (1.0)           5;5  70.1798 (1.0)          23           1\ntest_msgpack_unpackb[citm_catalog]       7.2600 (1.27)     56.6642 (1.23)     16.4095 (1.15)     16.3257 (1.02)     7.7364 (1.27)     0.4944 (1.61)        28;29  60.9404 (0.87)        125           1\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n----------------------------------------------------------------------------------- benchmark 'github packb': 2 tests -----------------------------------------------------------------------------------\nName (time in us)                     Min                 Max                Mean            StdDev              Median               IQR            Outliers  OPS (Kops/s)            Rounds  Iterations\n---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_ormsgpack_packb[github]      73.0000 (1.0)      215.9000 (1.0)       80.4826 (1.0)      4.8889 (1.0)       80.3000 (1.0)      1.1000 (1.83)     866;1118       12.4250 (1.0)        6196           1\ntest_msgpack_packb[github]       103.8000 (1.42)     220.8000 (1.02)     112.8049 (1.40)     4.9686 (1.02)     113.0000 (1.41)     0.6000 (1.0)     1306;1560        8.8649 (0.71)       7028           1\n---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n----------------------------------------------------------------------------------- benchmark 'github unpackb': 2 tests -----------------------------------------------------------------------------------\nName (time in us)                       Min                 Max                Mean            StdDev              Median               IQR            Outliers  OPS (Kops/s)            Rounds  Iterations\n-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_ormsgpack_unpackb[github]     201.3000 (1.0)      318.5000 (1.0)      219.0861 (1.0)      6.7340 (1.0)      219.1000 (1.0)      1.2000 (1.0)       483;721        4.5644 (1.0)        3488           1\ntest_msgpack_unpackb[github]       289.8000 (1.44)     436.0000 (1.37)     314.9631 (1.44)     9.4130 (1.40)     315.1000 (1.44)     2.3000 (1.92)      341;557        3.1750 (0.70)       2477           1\n-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n--------------------------------------------------------------------------------------- benchmark 'twitter packb': 2 tests ---------------------------------------------------------------------------------------\nName (time in us)                        Min                   Max                  Mean             StdDev                Median                IQR            Outliers         OPS            Rounds  Iterations\n------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_ormsgpack_packb[twitter]       820.7000 (1.0)      2,945.2000 (2.03)       889.3791 (1.0)      78.4139 (2.43)       884.2000 (1.0)      12.5250 (1.0)          4;76  1,124.3799 (1.0)         809           1\ntest_msgpack_packb[twitter]       1,209.3000 (1.47)     1,451.2000 (1.0)      1,301.3615 (1.46)     32.2147 (1.0)      1,306.7000 (1.48)     14.1000 (1.13)      118;138    768.4260 (0.68)        592           1\n------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n------------------------------------------------------------------------------ benchmark 'twitter unpackb': 2 tests -----------------------------------------------------------------------------\nName (time in ms)                      Min                Max              Mean            StdDev            Median               IQR            Outliers       OPS            Rounds  Iterations\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_ormsgpack_unpackb[twitter]     2.7097 (1.0)      41.1530 (1.0)      3.2721 (1.0)      3.5860 (1.03)     2.8868 (1.0)      0.0614 (1.32)         4;38  305.6098 (1.0)         314           1\ntest_msgpack_unpackb[twitter]       3.8079 (1.41)     42.0617 (1.02)     4.4459 (1.36)     3.4893 (1.0)      4.1097 (1.42)     0.0465 (1.0)          2;54  224.9267 (0.74)        228           1\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n```\n### Reproducing\n\nThe above was measured using Python 3.7.9 on Azure Linux VM (x86_64) with ormsgpack 0.2.1 and msgpack 1.0.2.\n\nThe latency results can be reproduced using `./scripts/benchmark.sh` and graphs using\n`pytest --benchmark-histogram benchmarks/bench_*`.\n## Questions\n\n### Why can't I install it from PyPI?\n\nProbably `pip` needs to be upgraded to version 20.3 or later to support\nthe latest manylinux_x_y or universal2 wheel formats.\n\n### Will it deserialize to dataclasses, UUIDs, decimals, etc or support object_hook?\n\nNo. This requires a schema specifying what types are expected and how to\nhandle errors etc. This is addressed by data validation libraries a\nlevel above this.\n\n## Packaging\n\nTo package ormsgpack requires [Rust](https://www.rust-lang.org/) 1.65\nor newer and the [maturin](https://github.com/PyO3/maturin) build\ntool. The default feature `unstable-simd` enables the usage of SIMD\noperations and requires nightly Rust. The recommended build command\nis:\n\n```sh\nmaturin build --release --strip\n```\n\normsgpack is tested on Linux/amd64, Linux/aarch64, Linux/armv7, macOS/amd64 and Windows/amd64.\n\nThere are no runtime dependencies other than libc.\n\n## License\n\norjson was written by ijl <<ijl@mailbox.org>>, copyright 2018 - 2021, licensed\nunder both the Apache 2 and MIT licenses.\n\normsgpack was forked from orjson by Aviram Hassan and is now maintained by Emanuele Giaquinta (@exg), licensed\nsame as orjson.\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0 OR MIT",
    "summary": "Fast, correct Python msgpack library supporting dataclasses, datetimes, and numpy",
    "version": "1.5.0",
    "project_urls": {
        "Homepage": "https://github.com/aviramha/ormsgpack",
        "Source Code": "https://github.com/aviramha/ormsgpack"
    },
    "split_keywords": [
        "fast",
        " msgpack",
        " dataclass",
        " dataclasses",
        " datetime"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e56f38f1466b866eecc3ad9851573dec366b7eb7f0788725324825561a1e9abd",
                "md5": "b1511b3f9438667df8282f32b4389572",
                "sha256": "98efdbb1f8c4a172a05143bbbc000491ca7d99644521ad90a15d5e96c7895fba"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "b1511b3f9438667df8282f32b4389572",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 426631,
            "upload_time": "2024-04-20T07:13:09",
            "upload_time_iso_8601": "2024-04-20T07:13:09.925449Z",
            "url": "https://files.pythonhosted.org/packages/e5/6f/38f1466b866eecc3ad9851573dec366b7eb7f0788725324825561a1e9abd/ormsgpack-1.5.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6314542b5c2e25218f559722907866c8d00da4fad2842912920a0add257904a",
                "md5": "3109d5640eb5affb03935d26c65152fa",
                "sha256": "091bb019b3101dd034515dce13852f4250aa2ee406e6ac5cb8d745dc1e146e6f"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3109d5640eb5affb03935d26c65152fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 276769,
            "upload_time": "2024-04-20T07:13:12",
            "upload_time_iso_8601": "2024-04-20T07:13:12.213107Z",
            "url": "https://files.pythonhosted.org/packages/f6/31/4542b5c2e25218f559722907866c8d00da4fad2842912920a0add257904a/ormsgpack-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fcd228d631ef16b640301d99515dc906a4d5339096ca83eb30b7bf64b2623eb",
                "md5": "10ed35cdbfced2cd7c05905111ef2a32",
                "sha256": "7ee97e618e852891e3cb3ae8a0662d54e289e7ba438fc245e70643c6f0b16849"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "10ed35cdbfced2cd7c05905111ef2a32",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 280603,
            "upload_time": "2024-04-20T07:13:14",
            "upload_time_iso_8601": "2024-04-20T07:13:14.085563Z",
            "url": "https://files.pythonhosted.org/packages/8f/cd/228d631ef16b640301d99515dc906a4d5339096ca83eb30b7bf64b2623eb/ormsgpack-1.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "539b1fc54fd06f4b46f4ce5041ce3382abe36e7f63f621809925369435494eaa",
                "md5": "f77c2af5e03620c180d5fb7b48d83cfc",
                "sha256": "789725c38493509a1c7a0a25d9baaf2edc120a38a51e0a85008215de25d034c7"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f77c2af5e03620c180d5fb7b48d83cfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 276102,
            "upload_time": "2024-04-20T07:13:15",
            "upload_time_iso_8601": "2024-04-20T07:13:15.431760Z",
            "url": "https://files.pythonhosted.org/packages/53/9b/1fc54fd06f4b46f4ce5041ce3382abe36e7f63f621809925369435494eaa/ormsgpack-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f20b53946f84370eafd9f80ffeeb21ecbeb0caac2ab044c79e33e555fb1b95bc",
                "md5": "011d64346070a4ef1440a0db6903d49f",
                "sha256": "c81dfcaef16e1a0583f1491441d6f7888b742d72dc299fdeddc3da069774ede4"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "011d64346070a4ef1440a0db6903d49f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 154899,
            "upload_time": "2024-04-20T07:13:17",
            "upload_time_iso_8601": "2024-04-20T07:13:17.279742Z",
            "url": "https://files.pythonhosted.org/packages/f2/0b/53946f84370eafd9f80ffeeb21ecbeb0caac2ab044c79e33e555fb1b95bc/ormsgpack-1.5.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b5d86e05c01247081ecae8dfbf8bf160ff4d7656417f6a01bae51d23d60cc2c",
                "md5": "97442b19c06b936cb954bf92645cd665",
                "sha256": "a94c8dfe1ee41e536b9c20af48b191fcae89b015b7fcbef0909915c0d5624c8d"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "97442b19c06b936cb954bf92645cd665",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 426630,
            "upload_time": "2024-04-20T07:13:18",
            "upload_time_iso_8601": "2024-04-20T07:13:18.991945Z",
            "url": "https://files.pythonhosted.org/packages/2b/5d/86e05c01247081ecae8dfbf8bf160ff4d7656417f6a01bae51d23d60cc2c/ormsgpack-1.5.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e36389f38d3ab157ceeef91971f82eec7058bc7c3453d9d4d5ef29892889761",
                "md5": "fade74dcac88c1728a87afcca2e25715",
                "sha256": "fb56792348a674ae8915106bdf7b02720852fc195fdda23884c24a5f05e5fd9a"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fade74dcac88c1728a87afcca2e25715",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 276769,
            "upload_time": "2024-04-20T07:13:21",
            "upload_time_iso_8601": "2024-04-20T07:13:21.044921Z",
            "url": "https://files.pythonhosted.org/packages/3e/36/389f38d3ab157ceeef91971f82eec7058bc7c3453d9d4d5ef29892889761/ormsgpack-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db2ca51aec641011337813cdca24e5a4eee6f5a2bbc7f489af04144fc9d8a307",
                "md5": "88d0b382fc1a45b9e312b60c05ff2552",
                "sha256": "044856a25c2fa19261f02a6f7a9b5329e90a51cf45780cface01b667cc21ac3d"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "88d0b382fc1a45b9e312b60c05ff2552",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 280602,
            "upload_time": "2024-04-20T07:13:22",
            "upload_time_iso_8601": "2024-04-20T07:13:22.980716Z",
            "url": "https://files.pythonhosted.org/packages/db/2c/a51aec641011337813cdca24e5a4eee6f5a2bbc7f489af04144fc9d8a307/ormsgpack-1.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c066d33df5efe53dae713dba02876fe179c2e1bfeab7dc1896d4c8cef7d6fb80",
                "md5": "e6df4c7991069e822145b1150875422c",
                "sha256": "111214ea0970eb49b19ffa1fde94996f09efa4d8585986be9d5b81492fa1e3fc"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6df4c7991069e822145b1150875422c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 276101,
            "upload_time": "2024-04-20T07:13:24",
            "upload_time_iso_8601": "2024-04-20T07:13:24.927669Z",
            "url": "https://files.pythonhosted.org/packages/c0/66/d33df5efe53dae713dba02876fe179c2e1bfeab7dc1896d4c8cef7d6fb80/ormsgpack-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63c0f4270c6622198fc121847a9e9b567e88cc60e84b0125647163e97fa9a89b",
                "md5": "53413b3b970bf2933f242664d6f69aad",
                "sha256": "e2a28bfc10cb492659c8704007567483aa3cfc863a22fd5973309373f396c9e1"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53413b3b970bf2933f242664d6f69aad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 154908,
            "upload_time": "2024-04-20T07:13:26",
            "upload_time_iso_8601": "2024-04-20T07:13:26.759638Z",
            "url": "https://files.pythonhosted.org/packages/63/c0/f4270c6622198fc121847a9e9b567e88cc60e84b0125647163e97fa9a89b/ormsgpack-1.5.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4719df1626f9c149a20d2273eecf97ae913a026be2730264db86126ac3e594db",
                "md5": "260a82d86324d9d5e46e4fde644b4c47",
                "sha256": "a921b0d54b5fb5ba1ea4e87c65caa8992736224f1fc5ce8f46a882e918c8e22d"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "260a82d86324d9d5e46e4fde644b4c47",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 427447,
            "upload_time": "2024-04-20T07:13:28",
            "upload_time_iso_8601": "2024-04-20T07:13:28.226591Z",
            "url": "https://files.pythonhosted.org/packages/47/19/df1626f9c149a20d2273eecf97ae913a026be2730264db86126ac3e594db/ormsgpack-1.5.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82ccbad6d4a237ff0943cb1c8c4a12fe95bcd7ff81c0f8bca26340efd599aa1d",
                "md5": "c14bf3864920089304603b27ed442f89",
                "sha256": "c6d423668e2c3abdbc474562b1c73360ff7326f06cb9532dcb73254b5b63dae4"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c14bf3864920089304603b27ed442f89",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 276867,
            "upload_time": "2024-04-20T07:13:29",
            "upload_time_iso_8601": "2024-04-20T07:13:29.436067Z",
            "url": "https://files.pythonhosted.org/packages/82/cc/bad6d4a237ff0943cb1c8c4a12fe95bcd7ff81c0f8bca26340efd599aa1d/ormsgpack-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7d13ed38a54923fe04eace750c0f0adbc149fb2b028375c71e864aee5e2d6d6",
                "md5": "85a68c55b235246a62bca69075305fc5",
                "sha256": "eeb2dd4ed3e503a8266dcbfbb8d810a36baa34e4bb4229e90e9c213058a06d74"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "85a68c55b235246a62bca69075305fc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 280728,
            "upload_time": "2024-04-20T07:13:31",
            "upload_time_iso_8601": "2024-04-20T07:13:31.459117Z",
            "url": "https://files.pythonhosted.org/packages/c7/d1/3ed38a54923fe04eace750c0f0adbc149fb2b028375c71e864aee5e2d6d6/ormsgpack-1.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b520261a80de2486793b4844c2668b17f49d03a20aba13a8d3d975831b1d866",
                "md5": "7d965b9ba68b775d0fa14c81a39409b7",
                "sha256": "6f13bd643df1324e8797caba4c5c0168a87524df8424e8413ba29723e89a586a"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d965b9ba68b775d0fa14c81a39409b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 276644,
            "upload_time": "2024-04-20T07:13:32",
            "upload_time_iso_8601": "2024-04-20T07:13:32.708687Z",
            "url": "https://files.pythonhosted.org/packages/9b/52/0261a80de2486793b4844c2668b17f49d03a20aba13a8d3d975831b1d866/ormsgpack-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7f02ebda08824d4f658c5ad048bcbe64e352b637b661b4d26c51d7403d30569",
                "md5": "3d2588dc8cd9b91b8e5803bb454d103c",
                "sha256": "e016da381a126478c4bafab0ae19d3a2537f6471341ecced4bb61471e8841cad"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3d2588dc8cd9b91b8e5803bb454d103c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 155198,
            "upload_time": "2024-04-20T07:13:34",
            "upload_time_iso_8601": "2024-04-20T07:13:34.759860Z",
            "url": "https://files.pythonhosted.org/packages/b7/f0/2ebda08824d4f658c5ad048bcbe64e352b637b661b4d26c51d7403d30569/ormsgpack-1.5.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4612c60834a09bd5700efe8697a1be9309bd092ea20881bee387fb3d7387aa59",
                "md5": "63f64d1e9ba96513f2bf473e55fc1166",
                "sha256": "b6e9689d55530f434976dc311e8db805010db2239844c780f79061a9af533348"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "63f64d1e9ba96513f2bf473e55fc1166",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 426563,
            "upload_time": "2024-04-20T07:13:36",
            "upload_time_iso_8601": "2024-04-20T07:13:36.115255Z",
            "url": "https://files.pythonhosted.org/packages/46/12/c60834a09bd5700efe8697a1be9309bd092ea20881bee387fb3d7387aa59/ormsgpack-1.5.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e94c888bee760c6b24bdddd074c759b72505a73ea8b94469a33cb239ebba1672",
                "md5": "e61b8c296a7a9b5038b42598d7692aec",
                "sha256": "b406d8aa676b70b592d6b65c6523de2e55a41d68b8da60a991419f2a76a50ab9"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e61b8c296a7a9b5038b42598d7692aec",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 276700,
            "upload_time": "2024-04-20T07:13:38",
            "upload_time_iso_8601": "2024-04-20T07:13:38.024343Z",
            "url": "https://files.pythonhosted.org/packages/e9/4c/888bee760c6b24bdddd074c759b72505a73ea8b94469a33cb239ebba1672/ormsgpack-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d32b53177913d1ec2da702b066e0787c4b57e468d9289966dce466453893720",
                "md5": "93df570ebac9e6958fde200b6b82ec4f",
                "sha256": "a00632ae356844093cae4b1801bea15b54d850c9a4c5a0a1b92690176ed7d376"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "93df570ebac9e6958fde200b6b82ec4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 280550,
            "upload_time": "2024-04-20T07:13:39",
            "upload_time_iso_8601": "2024-04-20T07:13:39.962248Z",
            "url": "https://files.pythonhosted.org/packages/9d/32/b53177913d1ec2da702b066e0787c4b57e468d9289966dce466453893720/ormsgpack-1.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8449ad099a49b5aa189c23016cea4af365d52742de957708f972440788a7b88",
                "md5": "850cdc19a03aff240bf0b5ec0d94ea96",
                "sha256": "bb24010cbb35b7c31bad2be3067499af3648417164f8c3198dc82a35860f4b24"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "850cdc19a03aff240bf0b5ec0d94ea96",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 276026,
            "upload_time": "2024-04-20T07:13:41",
            "upload_time_iso_8601": "2024-04-20T07:13:41.456255Z",
            "url": "https://files.pythonhosted.org/packages/f8/44/9ad099a49b5aa189c23016cea4af365d52742de957708f972440788a7b88/ormsgpack-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f1ac9193623e5f500547003cdf5afaf5c18d6b7af14e04f2dc6101617f49622",
                "md5": "426ff977ed2c123885761a790ea2ab53",
                "sha256": "97db92b4e42c24513f0fc03ba850a4ce72cf8bc790892b1363000b1e904abe44"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "426ff977ed2c123885761a790ea2ab53",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 154915,
            "upload_time": "2024-04-20T07:13:42",
            "upload_time_iso_8601": "2024-04-20T07:13:42.785727Z",
            "url": "https://files.pythonhosted.org/packages/7f/1a/c9193623e5f500547003cdf5afaf5c18d6b7af14e04f2dc6101617f49622/ormsgpack-1.5.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1069e33ae557a2c7a44b3bd4f5e6f0bb56bde5d5273e63cd3e920b2da1ea9709",
                "md5": "363b9b4cb61cbb41fe716265c74cb156",
                "sha256": "09a16f2bb84a0d246fc20eb9c5498f5829fb69e4f248de3e550c0b939613b4e3"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "363b9b4cb61cbb41fe716265c74cb156",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 426639,
            "upload_time": "2024-04-20T07:13:44",
            "upload_time_iso_8601": "2024-04-20T07:13:44.608701Z",
            "url": "https://files.pythonhosted.org/packages/10/69/e33ae557a2c7a44b3bd4f5e6f0bb56bde5d5273e63cd3e920b2da1ea9709/ormsgpack-1.5.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f48cbc6b5f4e4325f52c81f16df55862fc1f573efac884b5c0edf833fa25bc5e",
                "md5": "90e1e826bf205a72f047be3308e85378",
                "sha256": "aad7753bd8ec719861d329a89e10377dc1c5533ed9b4bdbeafdd3bf655c43d9d"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "90e1e826bf205a72f047be3308e85378",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 276757,
            "upload_time": "2024-04-20T07:13:46",
            "upload_time_iso_8601": "2024-04-20T07:13:46.577673Z",
            "url": "https://files.pythonhosted.org/packages/f4/8c/bc6b5f4e4325f52c81f16df55862fc1f573efac884b5c0edf833fa25bc5e/ormsgpack-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db53493bec4c17beca58a3f8959a5d061a6b346291f091ba9fb71fe0470255eb",
                "md5": "0d0e8cee1ddc233a6b91e27b4c483df0",
                "sha256": "badc0afac2d724f2aa6716da3579cf5ffc2ebbe7cce58cf574b5487dac26ea62"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0d0e8cee1ddc233a6b91e27b4c483df0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 280598,
            "upload_time": "2024-04-20T07:13:48",
            "upload_time_iso_8601": "2024-04-20T07:13:48.704593Z",
            "url": "https://files.pythonhosted.org/packages/db/53/493bec4c17beca58a3f8959a5d061a6b346291f091ba9fb71fe0470255eb/ormsgpack-1.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba2cadd9bd76b342ba79c012366402506447bf73f99bdb695db5993cbb725b19",
                "md5": "1efd7889883550eb8dea6f71a92f9ce3",
                "sha256": "82de1300c1897ac8ab091a87724706e3a2343338409ccd19db44e6eebe758fac"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1efd7889883550eb8dea6f71a92f9ce3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 276101,
            "upload_time": "2024-04-20T07:13:50",
            "upload_time_iso_8601": "2024-04-20T07:13:50.709664Z",
            "url": "https://files.pythonhosted.org/packages/ba/2c/add9bd76b342ba79c012366402506447bf73f99bdb695db5993cbb725b19/ormsgpack-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "883cb2f423c890183cd31b149fd608125791cd0a0a7664877cfb02d31ade8b8b",
                "md5": "8cdf6696bfd6336f1de9ab75bb51cb73",
                "sha256": "69cd334fe02c123500fa59b53ab66258ee718bda697d5133df9933b1a0089bc3"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8cdf6696bfd6336f1de9ab75bb51cb73",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 154903,
            "upload_time": "2024-04-20T07:13:51",
            "upload_time_iso_8601": "2024-04-20T07:13:51.983094Z",
            "url": "https://files.pythonhosted.org/packages/88/3c/b2f423c890183cd31b149fd608125791cd0a0a7664877cfb02d31ade8b8b/ormsgpack-1.5.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c57011a6ab33136c2f98bb64e96743a55c7a87b87bae0413460cab7cc5764951",
                "md5": "391be52d1f25a91ca1ea2bd22353673c",
                "sha256": "00c0743ebaa8d21f1c868fbb609c99151ea79e67fec98b51a29077efd91ce348"
            },
            "downloads": -1,
            "filename": "ormsgpack-1.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "391be52d1f25a91ca1ea2bd22353673c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 54353,
            "upload_time": "2024-04-20T07:13:53",
            "upload_time_iso_8601": "2024-04-20T07:13:53.382930Z",
            "url": "https://files.pythonhosted.org/packages/c5/70/11a6ab33136c2f98bb64e96743a55c7a87b87bae0413460cab7cc5764951/ormsgpack-1.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-20 07:13:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aviramha",
    "github_project": "ormsgpack",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "ormsgpack"
}
        
Elapsed time: 0.23824s