Skip to content

Commit f40c15a

Browse files
committed
README, CHANGELOG misc
1 parent 52933d5 commit f40c15a

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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

@@ -16,7 +16,7 @@
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

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
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
58
other library and 4.5x to 11.5x the standard library. Its deserialization
69
performance is 1.05x to 1.2x the nearest other library and 1.2x to 4x
710
the 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

0 commit comments

Comments
 (0)