ormsgpack 1.2.6__cp311-none-win_amd64.whl → 1.4.0__cp311-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ormsgpack might be problematic. Click here for more details.

ormsgpack/__init__.py CHANGED
@@ -1,5 +1,25 @@
1
- from .ormsgpack import *
2
-
3
- __doc__ = ormsgpack.__doc__
4
- if hasattr(ormsgpack, "__all__"):
5
- __all__ = ormsgpack.__all__
1
+ # SPDX-License-Identifier: (Apache-2.0 OR MIT)
2
+
3
+ from .ormsgpack import *
4
+ from .ormsgpack import __version__
5
+
6
+ __all__ = (
7
+ "__version__",
8
+ "packb",
9
+ "unpackb",
10
+ "Ext",
11
+ "MsgpackDecodeError",
12
+ "MsgpackEncodeError",
13
+ "OPT_NAIVE_UTC",
14
+ "OPT_NON_STR_KEYS",
15
+ "OPT_OMIT_MICROSECONDS",
16
+ "OPT_PASSTHROUGH_BIGINT",
17
+ "OPT_PASSTHROUGH_DATACLASS",
18
+ "OPT_PASSTHROUGH_DATETIME",
19
+ "OPT_PASSTHROUGH_SUBCLASS",
20
+ "OPT_PASSTHROUGH_TUPLE",
21
+ "OPT_SERIALIZE_NUMPY",
22
+ "OPT_SERIALIZE_PYDANTIC",
23
+ "OPT_SORT_KEYS",
24
+ "OPT_UTC_Z",
25
+ )
ormsgpack/__init__.pyi CHANGED
@@ -8,7 +8,9 @@ def packb(
8
8
  option: Optional[int] = None,
9
9
  ) -> bytes: ...
10
10
  def unpackb(
11
- __obj: Union[str, bytes, bytearray, memoryview], option: Optional[int] = ...
11
+ __obj: Union[str, bytes, bytearray, memoryview],
12
+ ext_hook: Optional[Callable[[int, bytes], Any]] = ...,
13
+ option: Optional[int] = ...,
12
14
  ) -> Any: ...
13
15
 
14
16
  class MsgpackDecodeError(ValueError): ...
@@ -24,4 +26,5 @@ OPT_PASSTHROUGH_TUPLE: int
24
26
  OPT_SERIALIZE_NUMPY: int
25
27
  OPT_SERIALIZE_PYDANTIC: int
26
28
  OPT_NON_STR_KEYS: int
29
+ OPT_SORT_KEYS: int
27
30
  OPT_UTC_Z: int
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ormsgpack
3
- Version: 1.2.6
3
+ Version: 1.4.0
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: Apache Software License
@@ -9,11 +9,11 @@ Classifier: Operating System :: MacOS
9
9
  Classifier: Operating System :: Microsoft :: Windows
10
10
  Classifier: Operating System :: POSIX :: Linux
11
11
  Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.7
13
12
  Classifier: Programming Language :: Python :: 3.8
14
13
  Classifier: Programming Language :: Python :: 3.9
15
14
  Classifier: Programming Language :: Python :: 3.10
16
15
  Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Programming Language :: Python :: Implementation :: CPython
18
18
  Classifier: Programming Language :: Python
19
19
  Classifier: Programming Language :: Rust
@@ -23,10 +23,10 @@ License-File: LICENSE-MIT
23
23
  Summary: Fast, correct Python msgpack library supporting dataclasses, datetimes, and numpy
24
24
  Keywords: fast,msgpack,dataclass,dataclasses,datetime
25
25
  Home-Page: https://github.com/aviramha/ormsgpack
26
- Author: Aviram Hassan <aviramyhassan@gmail.com>
27
- Author-email: Aviram Hassan <aviramyhassan@gmail.com>
26
+ Author: Aviram Hassan <aviramyhassan@gmail.com>, Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
27
+ Author-email: Aviram Hassan <aviramyhassan@gmail.com>, Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
28
28
  License: Apache-2.0 OR MIT
29
- Requires-Python: >=3.7
29
+ Requires-Python: >=3.8
30
30
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
31
31
  Project-URL: Source Code, https://github.com/aviramha/ormsgpack
32
32
 
@@ -37,11 +37,11 @@ Project-URL: Source Code, https://github.com/aviramha/ormsgpack
37
37
  ormsgpack is a fast msgpack library for Python. It is a fork/reboot of [orjson](https://github.com/ijl/orjson)
38
38
  It serializes faster than [msgpack-python](https://github.com/msgpack/msgpack-python) and deserializes a bit slower (right now).
39
39
  It supports serialization of:
40
- [dataclass](https://github.com/aviramha/ormsgpack#dataclass),
41
- [datetime](https://github.com/aviramha/ormsgpack#datetime),
42
- [numpy](https://github.com/aviramha/ormsgpack#numpy),
43
- [pydantic](https://github.com/avirmaha/ormsgpack#OPT_SERIALIZE_PYDANTIC) and
44
- [UUID](https://github.com/aviramha/ormsgpack#uuid) instances natively.
40
+ [dataclass](#dataclass),
41
+ [datetime](#datetime),
42
+ [numpy](#numpy),
43
+ [pydantic](#pydantic) and
44
+ [UUID](#uuid) instances natively.
45
45
 
46
46
  Its features and drawbacks compared to other Python msgpack libraries:
47
47
 
@@ -49,10 +49,10 @@ Its features and drawbacks compared to other Python msgpack libraries:
49
49
  * serializes `datetime`, `date`, and `time` instances to RFC 3339 format,
50
50
  e.g., "1970-01-01T00:00:00+00:00"
51
51
  * serializes `numpy.ndarray` instances natively and faster.
52
- * serializes `pydantic.BaseModel` instances natively (disregards the configuration ATM).
52
+ * serializes `pydantic.BaseModel` instances natively
53
53
  * serializes arbitrary types using a `default` hook
54
54
 
55
- ormsgpack supports CPython 3.6, 3.7, 3.8, 3.9, and 3.10. ormsgpack does not support PyPy. Releases follow semantic
55
+ ormsgpack supports CPython 3.8, 3.9, 3.10, 3.11 and 3.12. ormsgpack does not support PyPy. Releases follow semantic
56
56
  versioning and serializing a new object type without an opt-in flag is
57
57
  considered a breaking change.
58
58
 
@@ -63,26 +63,26 @@ submitted there. There is a
63
63
  [CHANGELOG](https://github.com/aviramha/ormsgpack/blob/master/CHANGELOG.md)
64
64
  available in the repository.
65
65
 
66
- 1. [Usage](https://github.com/aviramha/ormsgpack#usage)
67
- 1. [Install](https://github.com/aviramha/ormsgpack#install)
68
- 2. [Quickstart](https://github.com/aviramha/ormsgpack#quickstart)
69
- 4. [Serialize](https://github.com/aviramha/ormsgpack#serialize)
70
- 1. [default](https://github.com/aviramha/ormsgpack#default)
71
- 2. [option](https://github.com/aviramha/ormsgpack#option)
72
- 5. [Deserialize](https://github.com/aviramha/ormsgpack#deserialize)
73
- 2. [Types](https://github.com/aviramha/ormsgpack#types)
74
- 1. [dataclass](https://github.com/aviramha/ormsgpack#dataclass)
75
- 2. [datetime](https://github.com/aviramha/ormsgpack#datetime)
76
- 3. [enum](https://github.com/aviramha/ormsgpack#enum)
77
- 4. [float](https://github.com/aviramha/ormsgpack#float)
78
- 5. [int](https://github.com/aviramha/ormsgpack#int)
79
- 6. [numpy](https://github.com/aviramha/ormsgpack#numpy)
80
- 7. [uuid](https://github.com/aviramha/ormsgpack#uuid)
81
- 8. [pydantic](https://github.com/aviramha/ormsgpack#pydantic)
82
- 3. [Latency](https://github.com/aviramha/ormsgpack#latency)
83
- 4. [Questions](https://github.com/aviramha/ormsgpack#questions)
84
- 5. [Packaging](https://github.com/aviramha/ormsgpack#packaging)
85
- 6. [License](https://github.com/aviramha/ormsgpack#license)
66
+ 1. [Usage](#usage)
67
+ 1. [Install](#install)
68
+ 2. [Quickstart](#quickstart)
69
+ 4. [Serialize](#serialize)
70
+ 1. [default](#default)
71
+ 2. [option](#option)
72
+ 5. [Deserialize](#deserialize)
73
+ 2. [Types](#types)
74
+ 1. [dataclass](#dataclass)
75
+ 2. [datetime](#datetime)
76
+ 3. [enum](#enum)
77
+ 4. [float](#float)
78
+ 5. [int](#int)
79
+ 6. [numpy](#numpy)
80
+ 7. [uuid](#uuid)
81
+ 8. [pydantic](#pydantic)
82
+ 3. [Latency](#latency)
83
+ 4. [Questions](#questions)
84
+ 5. [Packaging](#packaging)
85
+ 6. [License](#license)
86
86
 
87
87
  ## Usage
88
88
 
@@ -98,7 +98,7 @@ pip install --upgrade ormsgpack
98
98
  Notice that Linux environments with a `pip` version shipped in 2018 or earlier
99
99
  must first upgrade `pip` to support `manylinux2014` wheels.
100
100
 
101
- To build a wheel, see [packaging](https://github.com/aviramha/ormsgpack#packaging).
101
+ To build a wheel, see [packaging](#packaging).
102
102
 
103
103
  ### Quickstart
104
104
 
@@ -147,7 +147,7 @@ The global interpreter lock (GIL) is held for the duration of the call.
147
147
  It raises `MsgpackEncodeError` on an unsupported type. This exception message
148
148
  describes the invalid object with the error message
149
149
  `Type is not JSON serializable: ...`. To fix this, specify
150
- [default](https://github.com/aviramha/ormsgpack#default).
150
+ [default](#default).
151
151
 
152
152
  It raises `MsgpackEncodeError` on a `str` that contains invalid UTF-8.
153
153
 
@@ -207,11 +207,28 @@ def default(obj):
207
207
  {'set': None}
208
208
  ```
209
209
 
210
+ To serialize a type as a MessagePack extension type, return an
211
+ `ormsgpack.Ext` object. The instantiation arguments are an integer in
212
+ the range `[0, 127]` and a `bytes` object, defining the type and
213
+ value, respectively.
214
+
215
+ ```python
216
+ >>> import ormsgpack, decimal
217
+ >>>
218
+ def default(obj):
219
+ if isinstance(obj, decimal.Decimal):
220
+ return ormsgpack.Ext(0, str(obj).encode())
221
+ raise TypeError
222
+
223
+ >>> ormsgpack.packb(decimal.Decimal("0.0842389659712649442845"), default=default)
224
+ b'\xc7\x18\x000.0842389659712649442845'
225
+ ```
226
+
210
227
  #### option
211
228
 
212
229
  To modify how data is serialized, specify `option`. Each `option` is an integer
213
- constant in `ormspgack`. To specify multiple options, mask them together, e.g.,
214
- `option=ormspgack.OPT_NON_STR_KEYS | ormspgack.OPT_NAIVE_UTC`.
230
+ constant in `ormsgpack`. To specify multiple options, mask them together, e.g.,
231
+ `option=ormsgpack.OPT_NON_STR_KEYS | ormsgpack.OPT_NAIVE_UTC`.
215
232
 
216
233
  ##### OPT_NAIVE_UTC
217
234
 
@@ -261,6 +278,8 @@ objects may serialize to the same `str` as an existing key, e.g.,
261
278
  The last key to be inserted to the `dict` will be serialized last and a msgpack deserializer will presumably take the last
262
279
  occurrence of a key (in the above, `false`). The first value will be lost.
263
280
 
281
+ This option is not compatible with `ormsgpack.OPT_SORT_KEYS`.
282
+
264
283
  ##### OPT_OMIT_MICROSECONDS
265
284
 
266
285
  Do not serialize the `microsecond` field on `datetime.datetime` and
@@ -408,11 +427,40 @@ Passthrough tuples to `default`.
408
427
  ##### OPT_SERIALIZE_NUMPY
409
428
 
410
429
  Serialize `numpy.ndarray` instances. For more, see
411
- [numpy](https://github.com/aviramha/ormsgpack#numpy).
430
+ [numpy](#numpy).
412
431
 
413
432
  ##### OPT_SERIALIZE_PYDANTIC
414
- Serialize `pydantic.BaseModel` instances. Right now it ignores the config (str transformations), support might be added
415
- later.
433
+ Serialize `pydantic.BaseModel` instances.
434
+
435
+ ##### OPT_SORT_KEYS
436
+
437
+ Serialize `dict` keys in sorted order. The default is to serialize in an
438
+ unspecified order. This is equivalent to `sort_keys=True` in the standard
439
+ library.
440
+
441
+ This can be used to ensure the order is deterministic for hashing or tests.
442
+ It has a substantial performance penalty and is not recommended in general.
443
+
444
+ ```python
445
+ >>> import ormsgpack
446
+ >>> ormsgpack.packb({"b": 1, "c": 2, "a": 3})
447
+ b'\x83\xa1b\x01\xa1c\x02\xa1a\x03'
448
+ >>> ormsgpack.packb({"b": 1, "c": 2, "a": 3}, option=ormsgpack.OPT_SORT_KEYS)
449
+ b'\x83\xa1a\x03\xa1b\x01\xa1c\x02'
450
+ ```
451
+
452
+ The sorting is not collation/locale-aware:
453
+
454
+ ```python
455
+ >>> import ormsgpack
456
+ >>> ormsgpack.packb({"a": 1, "ä": 2, "A": 3}, option=ormsgpack.OPT_SORT_KEYS)
457
+ b'\x83\xa1A\x03\xa1a\x01\xa2\xc3\xa4\x02'
458
+ ```
459
+
460
+ This is the same sorting behavior as the standard library.
461
+
462
+ `dataclass` also serialize as maps but this has no effect on them.
463
+
416
464
  ##### OPT_UTC_Z
417
465
 
418
466
  Serialize a UTC timezone on `datetime.datetime` instances as `Z` instead
@@ -433,7 +481,12 @@ b'"1970-01-01T00:00:00Z"'
433
481
 
434
482
  ### Deserialize
435
483
  ```python
436
- def unpackb(__obj: Union[bytes, bytearray, memoryview], / , option=None) -> Any: ...
484
+ def unpackb(
485
+ __obj: Union[bytes, bytearray, memoryview],
486
+ /,
487
+ ext_hook: Optional[Callable[[int, bytes], Any]] = ...,
488
+ option: Optional[int] = ...,
489
+ ) -> Any: ...
437
490
  ```
438
491
 
439
492
  `unpackb()` deserializes msgpack to Python objects. It deserializes to `dict`,
@@ -452,6 +505,27 @@ msgpack.
452
505
 
453
506
  `MsgpackDecodeError` is a subclass of `ValueError`.
454
507
 
508
+ #### ext_hook
509
+
510
+ To deserialize extension types, specify the optional `ext_hook`
511
+ argument. The value should be a callable and is invoked with the
512
+ extension type and value as arguments.
513
+
514
+ ```python
515
+ >>> import ormsgpack, decimal
516
+ >>>
517
+ def ext_hook(tag, data):
518
+ if tag == 0:
519
+ return decimal.Decimal(data.decode())
520
+ raise TypeError
521
+
522
+ >>> ormsgpack.packb(
523
+ ormsgpack.Ext(0, str(decimal.Decimal("0.0842389659712649442845")).encode())
524
+ )
525
+ >>> ormsgpack.unpackb(_, ext_hook=ext_hook)
526
+ Decimal('0.0842389659712649442845')
527
+ ```
528
+
455
529
  #### option
456
530
  `unpackb()` supports the `OPT_NON_STR_KEYS` option, that is similar to original msgpack's `strict_map_keys=False`.
457
531
  Be aware that this option is considered unsafe and disabled by default in msgpack due to possibility of HashDoS.
@@ -623,11 +697,13 @@ an unsigned 64-bit integer's maximum (18446744073709551615).
623
697
 
624
698
  ### numpy
625
699
 
626
- ormsgpack natively serializes `numpy.ndarray` and individual `numpy.float64`,
627
- `numpy.float32`, `numpy.int64`, `numpy.int32`, `numpy.int8`, `numpy.uint64`,
628
- `numpy.uint32`, and `numpy.uint8` instances. Arrays may have a
629
- `dtype` of `numpy.bool`, `numpy.float32`, `numpy.float64`, `numpy.int32`,
630
- `numpy.int64`, `numpy.uint32`, `numpy.uint64`, `numpy.uintp`, or `numpy.intp`.
700
+ ormsgpack natively serializes `numpy.ndarray` and individual
701
+ `numpy.float64`, `numpy.float32`,
702
+ `numpy.int64`, `numpy.int32`, `numpy.int16`, `numpy.int8`,
703
+ `numpy.uint64`, `numpy.uint32`, `numpy.uint16`, `numpy.uint8`,
704
+ `numpy.uintp`, `numpy.intp`, and `numpy.bool`
705
+ instances.
706
+
631
707
  ormsgpack is faster than all compared libraries at serializing
632
708
  numpy instances. Serializing numpy data requires specifying
633
709
  `option=ormsgpack.OPT_SERIALIZE_NUMPY`.
@@ -712,10 +788,12 @@ ormsgpack serializes `uuid.UUID` instances to
712
788
  >>> ormsgpack.unpackb(_)
713
789
  "886313e1-3b8a-5372-9b90-0c9aee199e5d"
714
790
  ```
791
+
715
792
  ### Pydantic
716
- ![alt text](doc/pydantic.svg "pydantic")
717
- ormsgpack serializes `pydantic.BaseModel` instances natively. Currently it ignores `pydantic.BaseModel.Config`.
793
+ ormsgpack serializes `pydantic.BaseModel` instances natively.
794
+
718
795
  #### Performance
796
+ ![alt text](doc/pydantic.svg "pydantic")
719
797
 
720
798
  ```
721
799
  -------------------------------------------------------------------------------- benchmark 'pydantic': 2 tests ---------------------------------------------------------------------------------
@@ -725,6 +803,7 @@ test_pydantic_ormsgpack 4.3918 (1.0) 12.6521 (1.0) 4.8550 (1.
725
803
  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
726
804
  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
727
805
  ```
806
+
728
807
  ## Latency
729
808
  ### Graphs
730
809
  ![alt text](doc/twitter_packb.svg "twitter.json serialization")
@@ -824,36 +903,17 @@ If someone implements it well.
824
903
 
825
904
  ## Packaging
826
905
 
827
- To package ormsgpack requires [Rust](https://www.rust-lang.org/) on the
828
- nightly channel and the [maturin](https://github.com/PyO3/maturin)
829
- build tool. maturin can be installed from PyPI or packaged as
830
- well. This is the simplest and recommended way of installing
831
- from source, assuming `rustup` is available from a
832
- package manager:
906
+ To package ormsgpack requires [Rust](https://www.rust-lang.org/) 1.65
907
+ or newer and the [maturin](https://github.com/PyO3/maturin) build
908
+ tool. The default feature `unstable-simd` enables the usage of SIMD
909
+ operations and requires nightly Rust. The recommended build command
910
+ is:
833
911
 
834
912
  ```sh
835
- rustup default nightly
836
- pip wheel --no-binary=ormsgpack ormsgpack
913
+ maturin build --release --strip
837
914
  ```
838
915
 
839
- This is an example of building a wheel using the repository as source,
840
- `rustup` installed from upstream, and a pinned version of Rust:
841
-
842
- ```sh
843
- pip install maturin
844
- curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2021-05-25 --profile minimal -y
845
- export RUSTFLAGS="-C target-cpu=k8"
846
- maturin build --release --strip --manylinux off
847
- ls -1 target/wheels
848
- ```
849
-
850
- Problems with the Rust nightly channel may require pinning a version.
851
- `nightly-2021-05-25` is known to be ok.
852
-
853
- ormsgpack is tested for amd64 and aarch64 on Linux, macOS, and Windows. It
854
- may not work on 32-bit targets. It has recommended `RUSTFLAGS`
855
- specified in `.cargo/config` so it is recommended to either not set
856
- `RUSTFLAGS` or include these options.
916
+ ormsgpack is tested for amd64 on Linux, macOS, and Windows.
857
917
 
858
918
  There are no runtime dependencies other than libc.
859
919
 
@@ -862,5 +922,6 @@ There are no runtime dependencies other than libc.
862
922
  orjson was written by ijl <<ijl@mailbox.org>>, copyright 2018 - 2021, licensed
863
923
  under both the Apache 2 and MIT licenses.
864
924
 
865
- ormsgpack was forked from orjson and is maintained by Aviram Hassan <<aviramyhassan@gmail.com>>, licensed
866
- same as orjson.
925
+ ormsgpack was forked from orjson by Aviram Hassan and is now maintained by Emanuele Giaquinta (@exg), licensed
926
+ same as orjson.
927
+
@@ -0,0 +1,9 @@
1
+ ormsgpack-1.4.0.dist-info/METADATA,sha256=6Khn9kj9zalRB68eOsdugIRBoPN8aa44zfh9oH4eUVo,44296
2
+ ormsgpack-1.4.0.dist-info/WHEEL,sha256=0fmZp6NAxSlU_YgcGvJhhZHDMlAPavq05gwyiPE90gU,95
3
+ ormsgpack-1.4.0.dist-info/license_files/LICENSE-APACHE,sha256=fP1zjFPWHHnwfjSPYiv3cHyQhCNwVNN_vgd4inX1iBw,11048
4
+ ormsgpack-1.4.0.dist-info/license_files/LICENSE-MIT,sha256=NlFq79yExdWh50hUJZE6ItvaaesZMMXoTWrklytRlLk,1046
5
+ ormsgpack/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ ormsgpack/__init__.py,sha256=jGcrk6dQSfTAgcqkXznT4VlrV-z9KZ9t6bHuDepqfJA,583
7
+ ormsgpack/__init__.pyi,sha256=vVfpvAXniV3FAfa546Ni7ZjwYfb4l0OevDCkK2SH9CQ,784
8
+ ormsgpack/ormsgpack.cp311-win_amd64.pyd,sha256=hz5iIUCPflKN4tXZEyr13zfcfN6VE4gBlpNwNjlCA7A,280064
9
+ ormsgpack-1.4.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (0.14.17)
2
+ Generator: maturin (1.3.1)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-none-win_amd64
@@ -1,9 +0,0 @@
1
- ormsgpack-1.2.6.dist-info/METADATA,sha256=cgIEdRg5clEaO-OC09RzIqTxULxQ1zXZI3HIFNYMdaE,44105
2
- ormsgpack-1.2.6.dist-info/WHEEL,sha256=GO0QKvijPsslUfk-qbSmA8JM49WSTvYBgTQ7jvoLG1c,97
3
- ormsgpack-1.2.6.dist-info/license_files/LICENSE-APACHE,sha256=fP1zjFPWHHnwfjSPYiv3cHyQhCNwVNN_vgd4inX1iBw,11048
4
- ormsgpack-1.2.6.dist-info/license_files/LICENSE-MIT,sha256=NlFq79yExdWh50hUJZE6ItvaaesZMMXoTWrklytRlLk,1046
5
- ormsgpack/__init__.py,sha256=2iGuaigXTZxo4dhjQswYiDgJEHq2BY-mxABzAuum9Jg,119
6
- ormsgpack/__init__.pyi,sha256=D_cAEk3J3yGo7Ls3oENO3rkJETpnteCMI8c2u4NJQLM,698
7
- ormsgpack/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- ormsgpack/ormsgpack.cp311-win_amd64.pyd,sha256=FQcJzEZgOxbQqIYBWJtMO64oDw6sBvdGGeFtiA9KYRM,303104
9
- ormsgpack-1.2.6.dist-info/RECORD,,