python-orjson 3.10.7-2build1 source package in Ubuntu

Changelog

python-orjson (3.10.7-2build1) plucky; urgency=medium

  * No-change rebuild with Python 3.13 only

 -- Graham Inggs <email address hidden>  Wed, 05 Mar 2025 00:05:01 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Plucky
Original maintainer:
Debian Python Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Questing release universe misc
Plucky release universe misc

Downloads

File Size SHA-256 Checksum
python-orjson_3.10.7.orig.tar.gz 885.2 KiB 82794bd7a67caf8ba45f6c157249bab32a1651ae188f2bd8f8af8ced3e16042f
python-orjson_3.10.7-2build1.debian.tar.xz 4.4 KiB b0c0bd6d2c6c54f8a7030a4e5bcf244c2581bb3a004f3f565c7c39fb205948b2
python-orjson_3.10.7-2build1.dsc 2.5 KiB 7c2a131d07aea44ccf7a0487c9e06277811e6b9d972e7bda5f193a7550ddd760

View changes file

Binary packages built by this source

python3-orjson: JSON parsing Python library

 Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
 orjson is a fast, correct JSON library for Python. It benchmarks as the
 fastest Python library for JSON and is more correct than the standard json
 library or other third-party libraries. It serializes dataclass, datetime,
 numpy, and UUID instances natively.
 .
 Its features and drawbacks compared to other Python JSON libraries:
 .
  * serializes `dataclass` instances 40-50x as fast as other libraries
  * serializes `datetime`, `date`, and `time` instances to RFC 3339 format,
    e.g., "1970-01-01T00:00:00+00:00"
  * serializes `numpy.ndarray` instances 4-12x as fast with 0.3x the memory
    usage of other libraries
  * pretty prints 10x to 20x as fast as the standard library
  * serializes to `bytes` rather than `str`, i.e., is not a drop-in replacement
  * serializes `str` without escaping unicode to ASCII, e.g., "好" rather than
  "\\\u597d"
  * serializes `float` 10x as fast and deserializes twice as fast as other
    libraries
  * serializes subclasses of `str`, `int`, `list`, and `dict` natively,
  requiring `default` to specify how to serialize others
  * serializes arbitrary types using a `default` hook
  * has strict UTF-8 conformance, more correct than the standard library
  * has strict JSON conformance in not supporting Nan/Infinity/-Infinity
  * has an option for strict JSON conformance on 53-bit integers with default
    support for 64-bit
  * does not provide `load()` or `dump()` functions for reading from/writing to
    file-like objects

python3-orjson-dbgsym: debug symbols for python3-orjson