python-rapidjson 1.17__cp313-cp313-win32.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.
@@ -0,0 +1,23 @@
1
+ python-rapidjson is licensed under the MIT license.
2
+
3
+ The MIT License (MIT)
4
+
5
+ Copyright (c) 2015, 2016, 2017 Ken Robbins
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
@@ -0,0 +1,781 @@
1
+ Metadata-Version: 2.1
2
+ Name: python-rapidjson
3
+ Version: 1.17
4
+ Summary: Python wrapper around rapidjson
5
+ Home-page: https://github.com/python-rapidjson/python-rapidjson
6
+ Author: Ken Robbins
7
+ Author-email: ken@kenrobbins.com
8
+ Maintainer: Lele Gaifax
9
+ Maintainer-email: lele@metapensiero.it
10
+ License: MIT License
11
+ Keywords: json rapidjson
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: C++
16
+ Classifier: Programming Language :: Python :: 3 :: Only
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python
24
+ Requires-Python: >=3.6
25
+ Description-Content-Type: text/x-rst
26
+ License-File: LICENSE
27
+
28
+ .. -*- coding: utf-8 -*-
29
+ .. :Project: python-rapidjson -- Introduction
30
+ .. :Author: Ken Robbins <ken@kenrobbins.com>
31
+ .. :License: MIT License
32
+ .. :Copyright: © 2015 Ken Robbins
33
+ .. :Copyright: © 2016, 2017, 2018, 2020, 2022 Lele Gaifax
34
+ ..
35
+
36
+ ==================
37
+ python-rapidjson
38
+ ==================
39
+
40
+ Python wrapper around RapidJSON
41
+ ===============================
42
+
43
+ :Authors: Ken Robbins <ken@kenrobbins.com>; Lele Gaifax <lele@metapensiero.it>
44
+ :License: `MIT License`__
45
+ :Status: |build| |doc|
46
+
47
+ __ https://raw.githubusercontent.com/python-rapidjson/python-rapidjson/master/LICENSE
48
+ .. |build| image:: https://travis-ci.org/python-rapidjson/python-rapidjson.svg?branch=master
49
+ :target: https://travis-ci.org/python-rapidjson/python-rapidjson
50
+ :alt: Build status
51
+ .. |doc| image:: https://readthedocs.org/projects/python-rapidjson/badge/?version=latest
52
+ :target: https://readthedocs.org/projects/python-rapidjson/builds/
53
+ :alt: Documentation status
54
+
55
+ RapidJSON_ is an extremely fast C++ JSON parser and serialization library: this module
56
+ wraps it into a Python 3 extension, exposing its serialization/deserialization (to/from
57
+ either ``bytes``, ``str`` or *file-like* instances) and `JSON Schema`__ validation
58
+ capabilities.
59
+
60
+ Latest version documentation is automatically rendered by `Read the Docs`__.
61
+
62
+ __ http://json-schema.org/documentation.html
63
+ __ https://python-rapidjson.readthedocs.io/en/latest/
64
+
65
+
66
+ Getting Started
67
+ ---------------
68
+
69
+ First install ``python-rapidjson``:
70
+
71
+ .. code-block:: bash
72
+
73
+ $ pip install python-rapidjson
74
+
75
+ or, if you prefer `Conda`__:
76
+
77
+ .. code-block:: bash
78
+
79
+ $ conda install -c conda-forge python-rapidjson
80
+
81
+ __ https://conda.io/docs/
82
+
83
+ Basic usage looks like this:
84
+
85
+ .. code-block:: python
86
+
87
+ >>> import rapidjson
88
+ >>> data = {'foo': 100, 'bar': 'baz'}
89
+ >>> rapidjson.dumps(data)
90
+ '{"foo":100,"bar":"baz"}'
91
+ >>> rapidjson.loads('{"bar":"baz","foo":100}')
92
+ {'bar': 'baz', 'foo': 100}
93
+ >>>
94
+ >>> class Stream:
95
+ ... def write(self, data):
96
+ ... print("Chunk:", data)
97
+ ...
98
+ >>> rapidjson.dump(data, Stream(), chunk_size=5)
99
+ Chunk: b'{"foo'
100
+ Chunk: b'":100'
101
+ Chunk: b',"bar'
102
+ Chunk: b'":"ba'
103
+ Chunk: b'z"}'
104
+
105
+
106
+ Development
107
+ -----------
108
+
109
+ If you want to install the development version (maybe to contribute fixes or
110
+ enhancements) you may clone the repository:
111
+
112
+ .. code-block:: bash
113
+
114
+ $ git clone --recursive https://github.com/python-rapidjson/python-rapidjson.git
115
+
116
+ .. note:: The ``--recursive`` option is needed because we use a *submodule* to
117
+ include RapidJSON_ sources. Alternatively you can do a plain
118
+ ``clone`` immediately followed by a ``git submodule update --init``.
119
+
120
+ Alternatively, if you already have (a *compatible* version of)
121
+ RapidJSON includes around, you can compile the module specifying
122
+ their location with the option ``--rj-include-dir``, for example:
123
+
124
+ .. code-block:: shell
125
+
126
+ $ python3 setup.py build --rj-include-dir=/usr/include/rapidjson
127
+
128
+ A set of makefiles implement most common operations, such as *build*, *check*
129
+ and *release*; see ``make help`` output for a list of available targets.
130
+
131
+
132
+ Performance
133
+ -----------
134
+
135
+ ``python-rapidjson`` tries to be as performant as possible while staying
136
+ compatible with the ``json`` module.
137
+
138
+ See the `this section`__ in the documentation for a comparison with other JSON libraries.
139
+
140
+ __ https://python-rapidjson.readthedocs.io/en/latest/benchmarks.html
141
+
142
+
143
+ Incompatibility
144
+ ---------------
145
+
146
+ Although we tried to implement an API similar to the standard library ``json``, being a
147
+ strict *drop-in* replacement in not our goal and we have decided to depart from there in
148
+ some aspects. See `this section`__ in the documentation for further details.
149
+
150
+ __ https://python-rapidjson.readthedocs.io/en/latest/quickstart.html#incompatibilities
151
+
152
+ .. _RapidJSON: http://rapidjson.org/
153
+
154
+
155
+ Changes
156
+ -------
157
+
158
+ 1.17 (2024-05-18)
159
+ ~~~~~~~~~~~~~~~~~
160
+
161
+ * Use `current master`__ version of rapidjson
162
+
163
+ __ https://github.com/Tencent/rapidjson/compare/5e17dbed34eef33af8f3e734820b5dc547a2a3aa...ab1842a2dae061284c0a62dca1cc6d5e7e37e346
164
+
165
+ * Generate wheels on PyPI using Python 3.13b1 release, thanks to cibuildwheel `2.18.0`__
166
+
167
+ __ https://cibuildwheel.pypa.io/en/stable/changelog/#v2180
168
+
169
+
170
+ 1.16 (2024-02-28)
171
+ ~~~~~~~~~~~~~~~~~
172
+
173
+ * Produce Python 3.8 wheels again, I deactivated it too eagerly, it's in *security fixes
174
+ only* mode, not yet reached its `end-of-life` state
175
+
176
+
177
+ 1.15 (2024-02-28)
178
+ ~~~~~~~~~~~~~~~~~
179
+
180
+ * Honor the `recursion limit`__ also at parse time, to avoid attacks as described by
181
+ `CVE-2024-27454`__
182
+
183
+ __ https://docs.python.org/3.12/library/sys.html#sys.setrecursionlimit
184
+ __ https://monicz.dev/CVE-2024-27454
185
+
186
+
187
+ 1.14 (2023-12-14)
188
+ ~~~~~~~~~~~~~~~~~
189
+
190
+ * Produce binary wheels for macOS/arm64, thanks to timothyjlaurent (`PR #195`__)
191
+
192
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/170
193
+
194
+
195
+ 1.13 (2023-10-29)
196
+ ~~~~~~~~~~~~~~~~~
197
+
198
+ * Fix handling of write_mode in dump functions (problem emerged discussing `issue #191`__)
199
+
200
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/191
201
+
202
+
203
+ 1.12 (2023-10-07)
204
+ ~~~~~~~~~~~~~~~~~
205
+
206
+ * Generate wheels on PyPI using final Python 3.12 release, thanks to cibuildwheel `2.16.2`__
207
+
208
+ __ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v2162
209
+
210
+
211
+ 1.11 (2023-09-11)
212
+ ~~~~~~~~~~~~~~~~~
213
+
214
+ * Use `current master`__ version of rapidjson
215
+
216
+ __ https://github.com/Tencent/rapidjson/compare/083f359f5c36198accc2b9360ce1e32a333231d9...5e17dbed34eef33af8f3e734820b5dc547a2a3aa
217
+
218
+ * Use cibuildwheel `2.15.0`__
219
+
220
+ __ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v2150
221
+
222
+
223
+ 1.10 (2023-03-15)
224
+ ~~~~~~~~~~~~~~~~~
225
+
226
+ * Use `current master`__ version of rapidjson
227
+
228
+ __ https://github.com/Tencent/rapidjson/commit/083f359f5c36198accc2b9360ce1e32a333231d9
229
+
230
+ * Produce ppc64le wheels, thanks to mgiessing (`PR #170`__)
231
+
232
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/170
233
+
234
+ * Use cibuildwheel `2.12.1`__
235
+
236
+ __ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v2121
237
+
238
+
239
+ 1.9 (2022-10-17)
240
+ ~~~~~~~~~~~~~~~~
241
+
242
+ * Produce Python 3.11 wheels, thanks to ``cibuildwheel`` `2.11.1`__
243
+
244
+ __ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v2111
245
+
246
+
247
+ 1.8 (2022-07-07)
248
+ ~~~~~~~~~~~~~~~~
249
+
250
+ * Fix `problem on macOS`__ explicitly requiring C++11, thanks to agate-pris (`issue
251
+ #166`__)
252
+
253
+ __ https://github.com/Tencent/rapidjson/commit/9965ab37f6cfae3d58a0a6e34c76112866ace0b1#commitcomment-77875054
254
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/166
255
+
256
+
257
+ 1.7 (2022-07-06)
258
+ ~~~~~~~~~~~~~~~~
259
+
260
+ * Use `current master`__ version of rapidjson
261
+
262
+ __ https://github.com/Tencent/rapidjson/commit/232389d4f1012dddec4ef84861face2d2ba85709
263
+
264
+ * Update the test suite to work on Pyston, thanks to Kevin Modzelewski (`PR #161`__)
265
+
266
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/161
267
+
268
+
269
+ 1.6 (2022-02-19)
270
+ ~~~~~~~~~~~~~~~~
271
+
272
+ * Fix memory leak when using ``end_array`` (`issue #160`__)
273
+
274
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/160
275
+
276
+
277
+ 1.5 (2021-10-16)
278
+ ~~~~~~~~~~~~~~~~
279
+
280
+ * Fix serialization bug when using DM_UNIX_TIME in a non-C locale context
281
+
282
+
283
+ 1.4 (2021-06-25)
284
+ ~~~~~~~~~~~~~~~~
285
+
286
+ * Build binary wheel for aarch64, thanks to odidev (`PR #156`__)
287
+
288
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/156
289
+
290
+
291
+ 1.3 (2021-06-25)
292
+ ~~~~~~~~~~~~~~~~
293
+
294
+ * Yet another attempt to fix automatic wheels upload
295
+
296
+
297
+ 1.2 (2021-06-25)
298
+ ~~~~~~~~~~~~~~~~
299
+
300
+ * Fix automatic wheels upload from GH Actions to PyPI
301
+
302
+
303
+ 1.1 (2021-06-25)
304
+ ~~~~~~~~~~~~~~~~
305
+
306
+ * Reduce decoder memory consumption by uniquifiying keys in the loaded dictionaries
307
+
308
+ * Implement an alternative way of transmogrify JSON objects, similar to ``json``\ 's
309
+ ``object_pairs_hook`` load option (`issue #154`__)
310
+
311
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/154
312
+
313
+
314
+ 1.0 (2020-12-13)
315
+ ~~~~~~~~~~~~~~~~
316
+
317
+ * Require Python 3.6 or greater
318
+
319
+ * New serialization options, ``iterable_mode`` and ``mapping_mode``, to give some control
320
+ on how generic iterables and mappings get encoded (fix `issue #149`__ and
321
+ `issue #150`__)
322
+
323
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/149
324
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/150
325
+
326
+ * Internal refactorings, folding "skipkeys" and "sort_keys" arguments into the
327
+ mapping_mode options, respectively as MM_SKIP_NON_STRING_KEYS and MM_SORT_KEYS: "old"
328
+ arguments kept for backward compatibility
329
+
330
+ * Bump major version to 1, tag as "production/stable" and switch to a simpler X.Y
331
+ versioning schema
332
+
333
+
334
+ 0.9.4 (2020-11-16)
335
+ ~~~~~~~~~~~~~~~~~~
336
+
337
+ * Fix memory leak loading an invalid JSON (`issue #148`__)
338
+
339
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/148
340
+
341
+
342
+ 0.9.3 (2020-10-24)
343
+ ~~~~~~~~~~~~~~~~~~
344
+
345
+ * Fix access to ``Encoder`` instance attributes (`issue #147`__)
346
+
347
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/147
348
+
349
+
350
+ 0.9.2 (2020-10-24)
351
+ ~~~~~~~~~~~~~~~~~~
352
+
353
+ * Use `current master`__ version of rapidjson
354
+
355
+ __ https://github.com/Tencent/rapidjson/commit/0ccdbf364c577803e2a751f5aededce935314313
356
+
357
+ * Enable GH Actions-based test workflow, thanks to Martin Thoma (`PR #143`__)
358
+
359
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/143
360
+
361
+ * Produce Python 3.9 wheels, disable testing under Python < 3.6
362
+
363
+ * Make the character used for indentation in pretty mode a parameter (`issue #135`__)
364
+
365
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/135
366
+
367
+ * Handle wider precision range in timestamps fractional seconds (`PR 133`__), thanks to
368
+ Karl Seguin
369
+
370
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/133
371
+
372
+ * Add comparison benchmarks against orjson and hyperjson (`issue #130`__ and `PR #131`__,
373
+ thanks to Sebastian Pipping)
374
+
375
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/130
376
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/131
377
+
378
+
379
+ 0.9.1 (2019-11-13)
380
+ ~~~~~~~~~~~~~~~~~~
381
+
382
+ * Fix memory leak in case of failed validation (`issue #126`__)
383
+
384
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/126
385
+
386
+
387
+ 0.9.0 (2019-11-13)
388
+ ~~~~~~~~~~~~~~~~~~
389
+
390
+ * Produce Python 3.8 wheels
391
+
392
+ * Compatibility fix for Python 3.8 (`issue #125`__)
393
+
394
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/125
395
+
396
+ * New dump option ``write_mode``, supporting RapidJSON's ``kFormatSingleLineArray`` option
397
+ (`issue #123`__), thanks to Nguyễn Hồng Quân for the initial implementation (`PR #124`__)
398
+
399
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/123
400
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/124
401
+
402
+
403
+ 0.8.0 (2019-08-09)
404
+ ~~~~~~~~~~~~~~~~~~
405
+
406
+ * New serialization option ``bytes_mode`` to control how bytes instances get encoded
407
+ (`issue #122`__)
408
+
409
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/122
410
+
411
+
412
+ 0.7.2 (2019-06-09)
413
+ ~~~~~~~~~~~~~~~~~~
414
+
415
+ * Hopefully fix the memory leak when loading from a stream (`issue #117`__)
416
+
417
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/117
418
+
419
+
420
+ 0.7.1 (2019-05-11)
421
+ ~~~~~~~~~~~~~~~~~~
422
+
423
+ * Raise a more specific exception on loading errors, ``JSONDecodeError``, instead of
424
+ generic ``ValueError`` (`issue #118`__)
425
+
426
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/118
427
+
428
+ * Fix optimization path when using ``OrderedDict``\ s (`issue #119`__)
429
+
430
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/119
431
+
432
+ * Fix serialization of ``IntEnum``\ s (`issue #121`__)
433
+
434
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/121
435
+
436
+ * I spent *quite a lot* of time investigating on the memory leak when loading from a
437
+ stream (`issue #117`__): as I was not able to fully replicate the problem, I cannot be
438
+ sure I solved the problem... sorry!
439
+
440
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/117
441
+
442
+
443
+ 0.7.0 (2019-02-11)
444
+ ~~~~~~~~~~~~~~~~~~
445
+
446
+ * Raise correct exception in code samples (`PR #109`__), thanks to Thomas Dähling
447
+
448
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/109
449
+
450
+ * Fix compilation with system-wide install of rapidjson (`issue #110`__)
451
+
452
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/110
453
+
454
+ * Use current master version of rapidjson, that includes a `fix`__ for its `issue #1368`__
455
+ and `issue #1336`__, and cures several compilation warnings as well (`issue #112`__ and
456
+ `issue #107`__)
457
+
458
+ __ https://github.com/Tencent/rapidjson/commit/f5e5d47fac0f654749c4d6267015005b74643dff
459
+ __ https://github.com/Tencent/rapidjson/issues/1368
460
+ __ https://github.com/Tencent/rapidjson/issues/1336
461
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/112
462
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/107
463
+
464
+ * Fix memory leak when using ``object_hook`` (`issue #115`__)
465
+
466
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/115
467
+
468
+
469
+ 0.6.3 (2018-07-11)
470
+ ~~~~~~~~~~~~~~~~~~
471
+
472
+ * No visible changes, but now PyPI carries binary wheels for Python 3.7.
473
+
474
+
475
+ 0.6.2 (2018-06-08)
476
+ ~~~~~~~~~~~~~~~~~~
477
+
478
+ * Use a more specific ValidationError, to differentiate from invalid JSON
479
+
480
+
481
+ 0.6.1 (2018-06-06)
482
+ ~~~~~~~~~~~~~~~~~~
483
+
484
+ * Nothing new, attempt to build Python 3.6 binary wheels on Travis CI
485
+
486
+
487
+ 0.6.0 (2018-06-06)
488
+ ~~~~~~~~~~~~~~~~~~
489
+
490
+ * Add a new comparison table involving ``ensure_ascii`` (`issue #98`__)
491
+
492
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/98
493
+
494
+ * Use Python's ``repr()`` to emit float values instead of rapidjson's ``dtoa()`` (`issue
495
+ #101`__)
496
+
497
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/101
498
+
499
+ * Use a newer (although unreleased) version of rapidjson to fix an `issue`__ with
500
+ JSONSchema validation (`PR #103`__), thanks to Anthony Miyaguchi
501
+
502
+ __ https://github.com/Tencent/rapidjson/issues/825
503
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/103
504
+
505
+
506
+ 0.5.2 (2018-03-31)
507
+ ~~~~~~~~~~~~~~~~~~
508
+
509
+ * Tiny tweak to restore macOS build on Travis CI
510
+
511
+
512
+ 0.5.1 (2018-03-31)
513
+ ~~~~~~~~~~~~~~~~~~
514
+
515
+ * Minor tweaks to CI and PyPI deploy configuration
516
+
517
+
518
+ 0.5.0 (2018-03-31)
519
+ ~~~~~~~~~~~~~~~~~~
520
+
521
+ * New ``RawJSON`` class, allowing inclusion of *pre-serialized* content (`PR #95`__ and
522
+ `PR #96`__), thanks to Silvio Tomatis
523
+
524
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/95
525
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/96
526
+
527
+
528
+ 0.4.3 (2018-01-14)
529
+ ~~~~~~~~~~~~~~~~~~
530
+
531
+ * Deserialize from ``bytes`` and ``bytearray`` instances, ensuring they
532
+ contain valid UTF-8 data
533
+
534
+ * Speed up parsing of floating point numbers, avoiding intermediary conversion
535
+ to a Python string (`PR #94`__)
536
+
537
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/94
538
+
539
+
540
+ 0.4.2 (2018-01-09)
541
+ ~~~~~~~~~~~~~~~~~~
542
+
543
+ * Fix precision handling of DM_UNIX_TIME timestamps
544
+
545
+
546
+ 0.4.1 (2018-01-08)
547
+ ~~~~~~~~~~~~~~~~~~
548
+
549
+ * Fix memory leaks in ``Decoder()`` and ``Encoder()`` classes, related to
550
+ bad handling of ``PyObject_GetAttr()`` result value
551
+
552
+ * Fix compatibility with Python 3.7a
553
+
554
+
555
+ 0.4.0 (2018-01-05)
556
+ ~~~~~~~~~~~~~~~~~~
557
+
558
+ * Implemented the streaming interface, see `load()`__ and `dump()`__ (`issue #80`__)
559
+
560
+ __ https://python-rapidjson.readthedocs.io/en/latest/load.html
561
+ __ https://python-rapidjson.readthedocs.io/en/latest/dump.html
562
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/80
563
+
564
+ **Backward incompatibility**: now the *flags* arguments on all the functions are
565
+ *keyword only*, to mimic stdlib's ``json`` style
566
+
567
+
568
+ 0.3.2 (2017-12-21)
569
+ ~~~~~~~~~~~~~~~~~~
570
+
571
+ * Reduce compiler warnings (`issue #87`__)
572
+
573
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/87
574
+
575
+
576
+ 0.3.1 (2017-12-20)
577
+ ~~~~~~~~~~~~~~~~~~
578
+
579
+ * Fix Travis CI recipe to accomodate MacOS
580
+
581
+
582
+ 0.3.0 (2017-12-20)
583
+ ~~~~~~~~~~~~~~~~~~
584
+
585
+ * Fix compilation on MacOS (`issue #78`__)
586
+
587
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/78
588
+
589
+ * Handle generic iterables (`PR #89`__)
590
+
591
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/89
592
+
593
+ **Backward incompatibility**: the ``dumps()`` function and the ``Encoder()``
594
+ constructor used to accept a ``max_recursion_depth`` argument, to control
595
+ the maximum allowed nesting of Python structures; since the underlying
596
+ function is now effectively recursive, it has been replaced by the generic
597
+ `sys.setrecursionlimit()`__ mechanism
598
+
599
+ __ https://docs.python.org/3.6/library/sys.html#sys.setrecursionlimit
600
+
601
+
602
+ 0.2.7 (2017-12-08)
603
+ ~~~~~~~~~~~~~~~~~~
604
+
605
+ * Restore compatibility with Python < 3.6
606
+
607
+
608
+ 0.2.6 (2017-12-08)
609
+ ~~~~~~~~~~~~~~~~~~
610
+
611
+ * Fix memory leaks when using object_hook/start_object/end_object
612
+
613
+
614
+ 0.2.5 (2017-09-30)
615
+ ~~~~~~~~~~~~~~~~~~
616
+
617
+ * Fix bug where error handling code could raise an exception causing a
618
+ confusing exception to be returned (`PR #82`__)
619
+
620
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/82
621
+
622
+ * Fix bug where loads's ``object_hook`` and dumps's ``default`` arguments
623
+ could not be passed ``None`` explicitly (`PR #83`__)
624
+
625
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/83
626
+
627
+ * Fix crash when dealing with surrogate pairs (`issue #81`__)
628
+
629
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/81
630
+
631
+
632
+ 0.2.4 (2017-09-17)
633
+ ~~~~~~~~~~~~~~~~~~
634
+
635
+ * Fix compatibility with MacOS/clang
636
+
637
+
638
+ 0.2.3 (2017-08-24)
639
+ ~~~~~~~~~~~~~~~~~~
640
+
641
+ * Limit the precision of DM_UNIX_TIME timestamps to six decimal digits
642
+
643
+
644
+ 0.2.2 (2017-08-24)
645
+ ~~~~~~~~~~~~~~~~~~
646
+
647
+ * Nothing new, attempt to fix production of Python 3.6 binary wheels
648
+
649
+
650
+ 0.2.1 (2017-08-24)
651
+ ~~~~~~~~~~~~~~~~~~
652
+
653
+ * Nothing new, attempt to fix production of Python 3.6 binary wheels
654
+
655
+
656
+ 0.2.0 (2017-08-24)
657
+ ~~~~~~~~~~~~~~~~~~
658
+
659
+ * New ``parse_mode`` option, implementing relaxed JSON syntax (`issue #73`__)
660
+
661
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/73
662
+
663
+ * New ``Encoder`` and ``Decoder``, implementing a class-based interface
664
+
665
+ * New ``Validator``, exposing the underlying *JSON schema* validation (`issue #71`__)
666
+
667
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/71
668
+
669
+
670
+ 0.1.0 (2017-08-16)
671
+ ~~~~~~~~~~~~~~~~~~
672
+
673
+ * Remove beta status
674
+
675
+
676
+ 0.1.0b4 (2017-08-14)
677
+ ~~~~~~~~~~~~~~~~~~~~
678
+
679
+ * Make execution of the test suite on Appveyor actually happen
680
+
681
+
682
+ 0.1.0b3 (2017-08-12)
683
+ ~~~~~~~~~~~~~~~~~~~~
684
+
685
+ * Exclude CI configurations from the source distribution
686
+
687
+
688
+ 0.1.0b2 (2017-08-12)
689
+ ~~~~~~~~~~~~~~~~~~~~
690
+
691
+ * Fix Powershell wheel upload script in appveyor configuration
692
+
693
+
694
+ 0.1.0b1 (2017-08-12)
695
+ ~~~~~~~~~~~~~~~~~~~~
696
+
697
+ * Compilable with somewhat old g++ (`issue #69`__)
698
+
699
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/69
700
+
701
+ * **Backward incompatibilities**:
702
+
703
+ - all ``DATETIME_MODE_XXX`` constants have been shortened to ``DM_XXX``
704
+ ``DATETIME_MODE_ISO8601_UTC`` has been renamed to ``DM_SHIFT_TO_UTC``
705
+
706
+ - all ``UUID_MODE_XXX`` constants have been shortened to ``UM_XXX``
707
+
708
+ * New option ``DM_UNIX_TIME`` to serialize date, datetime and time values as
709
+ `UNIX timestamps`__ targeting `issue #61`__
710
+
711
+ __ https://en.wikipedia.org/wiki/Unix_time
712
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/61
713
+
714
+ * New option ``DM_NAIVE_IS_UTC`` to treat naïve datetime and time values as if
715
+ they were in the UTC timezone (also for issue #61)
716
+
717
+ * New keyword argument ``number_mode`` to use underlying C library numbers
718
+
719
+ * Binary wheels for GNU/Linux and Windows on PyPI (one would hope: this is the
720
+ reason for the beta1 release)
721
+
722
+
723
+ 0.0.11 (2017-03-05)
724
+ ~~~~~~~~~~~~~~~~~~~
725
+
726
+ * Fix a couple of refcount handling glitches, hopefully targeting `issue
727
+ #48`__.
728
+
729
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/48
730
+
731
+
732
+ 0.0.10 (2017-03-02)
733
+ ~~~~~~~~~~~~~~~~~~~
734
+
735
+ * Fix source distribution to contain all required stuff (`PR #64`__)
736
+
737
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/64
738
+
739
+
740
+ 0.0.9 (2017-03-02)
741
+ ~~~~~~~~~~~~~~~~~~
742
+
743
+ * CI testing on GitHub
744
+
745
+ * Allow using locally installed RapidJSON library (`issue #60`__)
746
+
747
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/60
748
+
749
+ * Bug fixes (`issue #37`__, `issue #51`__, `issue #57`__)
750
+
751
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/37
752
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/51
753
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/57
754
+
755
+
756
+ 0.0.8 (2016-12-09)
757
+ ~~~~~~~~~~~~~~~~~~
758
+
759
+ * Use unpatched RapidJSON 1.1 (`PR #46`__)
760
+
761
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/46
762
+
763
+ * Handle serialization and deserialization of datetime, date and time
764
+ instances (`PR #35`__) and of UUID instances (`PR #40`__)
765
+
766
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/35
767
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/40
768
+
769
+ * Sphinx based documentation (`PR #44`__)
770
+
771
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/44
772
+
773
+ * Refresh benchmarks (`PR #45`__)
774
+
775
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/45
776
+
777
+ * Bug fixes (`issue #25`__, `issue #38`__, `PR #43`__)
778
+
779
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/25
780
+ __ https://github.com/python-rapidjson/python-rapidjson/issues/38
781
+ __ https://github.com/python-rapidjson/python-rapidjson/pull/43
@@ -0,0 +1,6 @@
1
+ rapidjson.cp313-win32.pyd,sha256=mtMw6O6EGxtqHyTjPAtpT7UTwLvBFmoYszJJx9ZXBrM,304640
2
+ python_rapidjson-1.17.dist-info/LICENSE,sha256=TuttICocc7Qa8miKakWdXKUBp9KckkE4U3c7cFFcf7M,1166
3
+ python_rapidjson-1.17.dist-info/METADATA,sha256=DgwkD7z_U4xjNd_k00LDc8gYpAjIKpmyZcg9PWCjUEU,22604
4
+ python_rapidjson-1.17.dist-info/WHEEL,sha256=uzNcwOmzNUAgEoG_sYp8g8UDV8HdDXTwTJmgkNf1lZY,98
5
+ python_rapidjson-1.17.dist-info/top_level.txt,sha256=-0I5iOz_3tN6VaauFNAT0v0D3pB_llwaVtf4Lv_dt3E,10
6
+ python_rapidjson-1.17.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win32
5
+
@@ -0,0 +1 @@
1
+ rapidjson
Binary file