update readme (#605)

This commit is contained in:
Inada Naoki 2024-05-06 02:12:46 +09:00 committed by GitHub
parent 72e65feb0e
commit 3da5818a3a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,17 +49,7 @@ msgpack provides `dumps` and `loads` as an alias for compatibility with
[1, 2, 3]
```
`unpack` unpacks msgpack's array to Python's list, but can also unpack to tuple:
```pycon
>>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=False)
(1, 2, 3)
```
You should always specify the `use_list` keyword argument for backward compatibility.
See performance issues relating to `use_list option`_ below.
Read the docstring for other options.
Read the docstring for options.
### Streaming unpacking
@ -116,6 +106,9 @@ this_dict_again = msgpack.unpackb(packed_dict, object_hook=decode_datetime)
`object_pairs_hook` callback may instead be used to receive a list of
key-value pairs.
NOTE: msgpack can encode datetime with tzinfo into standard ext type for now.
See `datetime` option in `Packer` docstring.
### Extended types