File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55### Fixed
66
7- - Handle invalid UTF-8 in str
7+ - Handle invalid UTF-8 in str.
88
99## 1.3.0 - 2019-01-02
1010
1616
1717### Fixed
1818
19- - Fix memory leak in deserializing dict
19+ - Fix memory leak in deserializing dict.
2020
2121## 1.2.0 - 2018-12-16
2222
Original file line number Diff line number Diff line change 11# orjson
22
3- orjson is a fast JSON library for Python. It benchmarks as the fastest Python
4- library for JSON. Its serialization performance is 2x to 3x the nearest
3+ orjson is a fast, correct JSON library for Python. It benchmarks as the
4+ fastest Python library for JSON and has comprehensive unit, integration, and
5+ interoperability tests.
6+
7+ Its serialization performance is 2x to 3x the nearest
58other library and 4.5x to 11.5x the standard library. Its deserialization
69performance is 1.05x to 1.2x the nearest other library and 1.2x to 4x
710the standard library.
811
9- It supports CPython 3.6 and 3.7. Its API is a subset of the
10- API of the standard library's json module.
12+ It differs in behavior from other Python JSON libraries in supporting
13+ datetimes, not supporting subclasses without a ` default ` hook,
14+ serializing UTF-8 to bytes rather than escaped ASCII (e.g., "好" rather than
15+ "\\ \u597d") by default, having strict UTF-8 conformance, not supporting pretty
16+ printing, and not supporting all standard library options.
17+
18+ It supports CPython 3.6 and 3.7.
1119
1220## Usage
1321
You can’t perform that action at this time.
0 commit comments