Skip to main content

Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy

Project description

orjson

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

orjson supports CPython 3.8, 3.9, 3.10, 3.11, and 3.12. It distributes amd64/x86_64, aarch64/armv8, arm7, POWER/ppc64le, and s390x wheels for Linux, amd64 and aarch64 wheels for macOS, and amd64 and i686/x86 wheels for Windows. orjson does not and will not support PyPy. orjson does not and will not support PEP 554 subinterpreters. Releases follow semantic versioning and serializing a new object type without an opt-in flag is considered a breaking change.

orjson is licensed under both the Apache 2.0 and MIT licenses. The repository and issue tracker is github.com/ijl/orjson, and patches may be submitted there. There is a CHANGELOG available in the repository.

  1. Usage
    1. Install
    2. Quickstart
    3. Migrating
    4. Serialize
      1. default
      2. option
      3. Fragment
    5. Deserialize
  2. Types
    1. dataclass
    2. datetime
    3. enum
    4. float
    5. int
    6. numpy
    7. str
    8. uuid
  3. Testing
  4. Performance
    1. Latency
    2. Memory
    3. Reproducing
  5. Questions
  6. Packaging
  7. License

Usage

Install

To install a wheel from PyPI:

pip install --upgrade "pip>=20.3" # manylinux_x_y, universal2 wheel support
pip install --upgrade orjson

To build a wheel, see packaging.

Quickstart

This is an example of serializing, with options specified, and deserializing:

>>> import orjson, datetime, numpy
>>> data = {
    "type": "job",
    "created_at": datetime.datetime(1970, 1, 1),
    "status": "🆗",
    "payload": numpy.array([[1, 2], [3, 4]]),
}
>>> orjson.dumps(data, option=orjson.OPT_NAIVE_UTC | orjson.OPT_SERIALIZE_NUMPY)
b'{"type":"job","created_at":"1970-01-01T00:00:00+00:00","status":"\xf0\x9f\x86\x97","payload":[[1,2],[3,4]]}'
>>> orjson.loads(_)
{'type': 'job', 'created_at': '1970-01-01T00:00:00+00:00', 'status': '🆗', 'payload': [[1, 2], [3, 4]]}

Migrating

orjson version 3 serializes more types than version 2. Subclasses of str, int, dict, and list are now serialized. This is faster and more similar to the standard library. It can be disabled with orjson.OPT_PASSTHROUGH_SUBCLASS.dataclasses.dataclass instances are now serialized by default and cannot be customized in a default function unless option=orjson.OPT_PASSTHROUGH_DATACLASS is specified. uuid.UUID instances are serialized by default. For any type that is now serialized, implementations in a default function and options enabling them can be removed but do not need to be. There was no change in deserialization.

To migrate from the standard library, the largest difference is that orjson.dumps returns bytes and json.dumps returns a str. Users with dict objects using non-str keys should specify option=orjson.OPT_NON_STR_KEYS. sort_keys is replaced by option=orjson.OPT_SORT_KEYS. indent is replaced by option=orjson.OPT_INDENT_2 and other levels of indentation are not supported.

Serialize

def dumps(
    __obj: Any,
    default: Optional[Callable[[Any], Any]] = ...,
    option: Optional[int] = ...,
) -> bytes: ...

dumps() serializes Python objects to JSON.

It natively serializes str, dict, list, tuple, int, float, bool, None, dataclasses.dataclass, typing.TypedDict, datetime.datetime, datetime.date, datetime.time, uuid.UUID, numpy.ndarray, and orjson.Fragment instances. It supports arbitrary types through default. It serializes subclasses of str, int, dict, list, dataclasses.dataclass, and enum.Enum. It does not serialize subclasses of tuple to avoid serializing namedtuple objects as arrays. To avoid serializing subclasses, specify the option orjson.OPT_PASSTHROUGH_SUBCLASS.

The output is a bytes object containing UTF-8.

The global interpreter lock (GIL) is held for the duration of the call.

It raises JSONEncodeError on an unsupported type. This exception message describes the invalid object with the error message Type is not JSON serializable: .... To fix this, specify default.

It raises JSONEncodeError on a str that contains invalid UTF-8.

It raises JSONEncodeError on an integer that exceeds 64 bits by default or, with OPT_STRICT_INTEGER, 53 bits.

It raises JSONEncodeError if a dict has a key of a type other than str, unless OPT_NON_STR_KEYS is specified.

It raises JSONEncodeError if the output of default recurses to handling by default more than 254 levels deep.

It raises JSONEncodeError on circular references.

It raises JSONEncodeError if a tzinfo on a datetime object is unsupported.

JSONEncodeError is a subclass of TypeError. This is for compatibility with the standard library.

If the failure was caused by an exception in default then JSONEncodeError chains the original exception as __cause__.

default

To serialize a subclass or arbitrary types, specify default as a callable that returns a supported type. default may be a function, lambda, or callable class instance. To specify that a type was not handled by default, raise an exception such as TypeError.

>>> import orjson, decimal
>>>
def default(obj):
    if isinstance(obj, decimal.Decimal):
        return str(obj)
    raise TypeError

>>> orjson.dumps(decimal.Decimal("0.0842389659712649442845"))
JSONEncodeError: Type is not JSON serializable: decimal.Decimal
>>> orjson.dumps(decimal.Decimal("0.0842389659712649442845"), default=default)
b'"0.0842389659712649442845"'
>>> orjson.dumps({1, 2}, default=default)
orjson.JSONEncodeError: Type is not JSON serializable: set

The default callable may return an object that itself must be handled by default up to 254 times before an exception is raised.

It is important that default raise an exception if a type cannot be handled. Python otherwise implicitly returns None, which appears to the caller like a legitimate value and is serialized:

>>> import orjson, json, rapidjson
>>>
def default(obj):
    if isinstance(obj, decimal.Decimal):
        return str(obj)

>>> orjson.dumps({"set":{1, 2}}, default=default)
b'{"set":null}'
>>> json.dumps({"set":{1, 2}}, default=default)
'{"set":null}'
>>> rapidjson.dumps({"set":{1, 2}}, default=default)
'{"set":null}'

option

To modify how data is serialized, specify option. Each option is an integer constant in orjson. To specify multiple options, mask them together, e.g., option=orjson.OPT_STRICT_INTEGER | orjson.OPT_NAIVE_UTC.

OPT_APPEND_NEWLINE

Append \n to the output. This is a convenience and optimization for the pattern of dumps(...) + "\n". bytes objects are immutable and this pattern copies the original contents.

>>> import orjson
>>> orjson.dumps([])
b"[]"
>>> orjson.dumps([], option=orjson.OPT_APPEND_NEWLINE)
b"[]\n"
OPT_INDENT_2

Pretty-print output with an indent of two spaces. This is equivalent to indent=2 in the standard library. Pretty printing is slower and the output larger. orjson is the fastest compared library at pretty printing and has much less of a slowdown to pretty print than the standard library does. This option is compatible with all other options.

>>> import orjson
>>> orjson.dumps({"a": "b", "c": {"d": True}, "e": [1, 2]})
b'{"a":"b","c":{"d":true},"e":[1,2]}'
>>> orjson.dumps(
    {"a": "b", "c": {"d": True}, "e": [1, 2]},
    option=orjson.OPT_INDENT_2
)
b'{\n  "a": "b",\n  "c": {\n    "d": true\n  },\n  "e": [\n    1,\n    2\n  ]\n}'

If displayed, the indentation and linebreaks appear like this:

{
  "a": "b",
  "c": {
    "d": true
  },
  "e": [
    1,
    2
  ]
}

This measures serializing the github.json fixture as compact (52KiB) or pretty (64KiB):

Library compact (ms) pretty (ms) vs. orjson
orjson 0.03 0.04 1
ujson 0.18 0.19 4.6
rapidjson 0.1 0.12 2.9
simplejson 0.25 0.89 21.4
json 0.18 0.71 17

This measures serializing the citm_catalog.json fixture, more of a worst case due to the amount of nesting and newlines, as compact (489KiB) or pretty (1.1MiB):

Library compact (ms) pretty (ms) vs. orjson
orjson 0.59 0.71 1
ujson 2.9 3.59 5
rapidjson 1.81 2.8 3.9
simplejson 10.43 42.13 59.1
json 4.16 33.42 46.9

This can be reproduced using the pyindent script.

OPT_NAIVE_UTC

Serialize datetime.datetime objects without a tzinfo as UTC. This has no effect on datetime.datetime objects that have tzinfo set.

>>> import orjson, datetime
>>> orjson.dumps(
        datetime.datetime(1970, 1, 1, 0, 0, 0),
    )
b'"1970-01-01T00:00:00"'
>>> orjson.dumps(
        datetime.datetime(1970, 1, 1, 0, 0, 0),
        option=orjson.OPT_NAIVE_UTC,
    )
b'"1970-01-01T00:00:00+00:00"'
OPT_NON_STR_KEYS

Serialize dict keys of type other than str. This allows dict keys to be one of str, int, float, bool, None, datetime.datetime, datetime.date, datetime.time, enum.Enum, and uuid.UUID. For comparison, the standard library serializes str, int, float, bool or None by default. orjson benchmarks as being faster at serializing non-str keys than other libraries. This option is slower for str keys than the default.

>>> import orjson, datetime, uuid
>>> orjson.dumps(
        {uuid.UUID("7202d115-7ff3-4c81-a7c1-2a1f067b1ece"): [1, 2, 3]},
        option=orjson.OPT_NON_STR_KEYS,
    )
b'{"7202d115-7ff3-4c81-a7c1-2a1f067b1ece":[1,2,3]}'
>>> orjson.dumps(
        {datetime.datetime(1970, 1, 1, 0, 0, 0): [1, 2, 3]},
        option=orjson.OPT_NON_STR_KEYS | orjson.OPT_NAIVE_UTC,
    )
b'{"1970-01-01T00:00:00+00:00":[1,2,3]}'

These types are generally serialized how they would be as values, e.g., datetime.datetime is still an RFC 3339 string and respects options affecting it. The exception is that int serialization does not respect OPT_STRICT_INTEGER.

This option has the risk of creating duplicate keys. This is because non-str objects may serialize to the same str as an existing key, e.g., {"1": true, 1: false}. The last key to be inserted to the dict will be serialized last and a JSON deserializer will presumably take the last occurrence of a key (in the above, false). The first value will be lost.

This option is compatible with orjson.OPT_SORT_KEYS. If sorting is used, note the sort is unstable and will be unpredictable for duplicate keys.

>>> import orjson, datetime
>>> orjson.dumps(
    {"other": 1, datetime.date(1970, 1, 5): 2, datetime.date(1970, 1, 3): 3},
    option=orjson.OPT_NON_STR_KEYS | orjson.OPT_SORT_KEYS
)
b'{"1970-01-03":3,"1970-01-05":2,"other":1}'

This measures serializing 589KiB of JSON comprising a list of 100 dict in which each dict has both 365 randomly-sorted int keys representing epoch timestamps as well as one str key and the value for each key is a single integer. In "str keys", the keys were converted to str before serialization, and orjson still specifes option=orjson.OPT_NON_STR_KEYS (which is always somewhat slower).

Library str keys (ms) int keys (ms) int keys sorted (ms)
orjson 1.53 2.16 4.29
ujson 3.07 5.65
rapidjson 4.29
simplejson 11.24 14.50 21.86
json 7.17 8.49

ujson is blank for sorting because it segfaults. json is blank because it raises TypeError on attempting to sort before converting all keys to str. rapidjson is blank because it does not support non-str keys. This can be reproduced using the pynonstr script.

OPT_OMIT_MICROSECONDS

Do not serialize the microsecond field on datetime.datetime and datetime.time instances.

>>> import orjson, datetime
>>> orjson.dumps(
        datetime.datetime(1970, 1, 1, 0, 0, 0, 1),
    )
b'"1970-01-01T00:00:00.000001"'
>>> orjson.dumps(
        datetime.datetime(1970, 1, 1, 0, 0, 0, 1),
        option=orjson.OPT_OMIT_MICROSECONDS,
    )
b'"1970-01-01T00:00:00"'
OPT_PASSTHROUGH_DATACLASS

Passthrough dataclasses.dataclass instances to default. This allows customizing their output but is much slower.

>>> import orjson, dataclasses
>>>
@dataclasses.dataclass
class User:
    id: str
    name: str
    password: str

def default(obj):
    if isinstance(obj, User):
        return {"id": obj.id, "name": obj.name}
    raise TypeError

>>> orjson.dumps(User("3b1", "asd", "zxc"))
b'{"id":"3b1","name":"asd","password":"zxc"}'
>>> orjson.dumps(User("3b1", "asd", "zxc"), option=orjson.OPT_PASSTHROUGH_DATACLASS)
TypeError: Type is not JSON serializable: User
>>> orjson.dumps(
        User("3b1", "asd", "zxc"),
        option=orjson.OPT_PASSTHROUGH_DATACLASS,
        default=default,
    )
b'{"id":"3b1","name":"asd"}'
OPT_PASSTHROUGH_DATETIME

Passthrough datetime.datetime, datetime.date, and datetime.time instances to default. This allows serializing datetimes to a custom format, e.g., HTTP dates:

>>> import orjson, datetime
>>>
def default(obj):
    if isinstance(obj, datetime.datetime):
        return obj.strftime("%a, %d %b %Y %H:%M:%S GMT")
    raise TypeError

>>> orjson.dumps({"created_at": datetime.datetime(1970, 1, 1)})
b'{"created_at":"1970-01-01T00:00:00"}'
>>> orjson.dumps({"created_at": datetime.datetime(1970, 1, 1)}, option=orjson.OPT_PASSTHROUGH_DATETIME)
TypeError: Type is not JSON serializable: datetime.datetime
>>> orjson.dumps(
        {"created_at": datetime.datetime(1970, 1, 1)},
        option=orjson.OPT_PASSTHROUGH_DATETIME,
        default=default,
    )
b'{"created_at":"Thu, 01 Jan 1970 00:00:00 GMT"}'

This does not affect datetimes in dict keys if using OPT_NON_STR_KEYS.

OPT_PASSTHROUGH_SUBCLASS

Passthrough subclasses of builtin types to default.

>>> import orjson
>>>
class Secret(str):
    pass

def default(obj):
    if isinstance(obj, Secret):
        return "******"
    raise TypeError

>>> orjson.dumps(Secret("zxc"))
b'"zxc"'
>>> orjson.dumps(Secret("zxc"), option=orjson.OPT_PASSTHROUGH_SUBCLASS)
TypeError: Type is not JSON serializable: Secret
>>> orjson.dumps(Secret("zxc"), option=orjson.OPT_PASSTHROUGH_SUBCLASS, default=default)
b'"******"'

This does not affect serializing subclasses as dict keys if using OPT_NON_STR_KEYS.

OPT_SERIALIZE_DATACLASS

This is deprecated and has no effect in version 3. In version 2 this was required to serialize dataclasses.dataclass instances. For more, see dataclass.

OPT_SERIALIZE_NUMPY

Serialize numpy.ndarray instances. For more, see numpy.

OPT_SERIALIZE_UUID

This is deprecated and has no effect in version 3. In version 2 this was required to serialize uuid.UUID instances. For more, see UUID.

OPT_SORT_KEYS

Serialize dict keys in sorted order. The default is to serialize in an unspecified order. This is equivalent to sort_keys=True in the standard library.

This can be used to ensure the order is deterministic for hashing or tests. It has a substantial performance penalty and is not recommended in general.

>>> import orjson
>>> orjson.dumps({"b": 1, "c": 2, "a": 3})
b'{"b":1,"c":2,"a":3}'
>>> orjson.dumps({"b": 1, "c": 2, "a": 3}, option=orjson.OPT_SORT_KEYS)
b'{"a":3,"b":1,"c":2}'

This measures serializing the twitter.json fixture unsorted and sorted:

Library unsorted (ms) sorted (ms) vs. orjson
orjson 0.32 0.54 1
ujson 1.6 2.07 3.8
rapidjson 1.12 1.65 3.1
simplejson 2.25 3.13 5.8
json 1.78 2.32 4.3

The benchmark can be reproduced using the pysort script.

The sorting is not collation/locale-aware:

>>> import orjson
>>> orjson.dumps({"a": 1, "ä": 2, "A": 3}, option=orjson.OPT_SORT_KEYS)
b'{"A":3,"a":1,"\xc3\xa4":2}'

This is the same sorting behavior as the standard library, rapidjson, simplejson, and ujson.

dataclass also serialize as maps but this has no effect on them.

OPT_STRICT_INTEGER

Enforce 53-bit limit on integers. The limit is otherwise 64 bits, the same as the Python standard library. For more, see int.

OPT_UTC_Z

Serialize a UTC timezone on datetime.datetime instances as Z instead of +00:00.

>>> import orjson, datetime, zoneinfo
>>> orjson.dumps(
        datetime.datetime(1970, 1, 1, 0, 0, 0, tzinfo=zoneinfo.ZoneInfo("UTC")),
    )
b'"1970-01-01T00:00:00+00:00"'
>>> orjson.dumps(
        datetime.datetime(1970, 1, 1, 0, 0, 0, tzinfo=zoneinfo.ZoneInfo("UTC")),
        option=orjson.OPT_UTC_Z
    )
b'"1970-01-01T00:00:00Z"'

Fragment

orjson.Fragment includes already-serialized JSON in a document. This is an efficient way to include JSON blobs from a cache, JSONB field, or separately serialized object without first deserializing to Python objects via loads().

>>> import orjson
>>> orjson.dumps({"key": "zxc", "data": orjson.Fragment(b'{"a": "b", "c": 1}')})
b'{"key":"zxc","data":{"a": "b", "c": 1}}'

It does no reformatting: orjson.OPT_INDENT_2 will not affect a compact blob nor will a pretty-printed JSON blob be rewritten as compact.

The input must be bytes or str and given as a positional argument.

This raises orjson.JSONEncodeError if a str is given and the input is not valid UTF-8. It otherwise does no validation and it is possible to write invalid JSON. This does not escape characters. The implementation is tested to not crash if given invalid strings or invalid JSON.

This is similar to RawJSON in rapidjson.

Deserialize

def loads(__obj: Union[bytes, bytearray, memoryview, str]) -> Any: ...

loads() deserializes JSON to Python objects. It deserializes to dict, list, int, float, str, bool, and None objects.

bytes, bytearray, memoryview, and str input are accepted. If the input exists as a memoryview, bytearray, or bytes object, it is recommended to pass these directly rather than creating an unnecessary str object. That is, orjson.loads(b"{}") instead of orjson.loads(b"{}".decode("utf-8")). This has lower memory usage and lower latency.

The input must be valid UTF-8.

orjson maintains a cache of map keys for the duration of the process. This causes a net reduction in memory usage by avoiding duplicate strings. The keys must be at most 64 bytes to be cached and 1024 entries are stored.

The global interpreter lock (GIL) is held for the duration of the call.

It raises JSONDecodeError if given an invalid type or invalid JSON. This includes if the input contains NaN, Infinity, or -Infinity, which the standard library allows, but is not valid JSON.

JSONDecodeError is a subclass of json.JSONDecodeError and ValueError. This is for compatibility with the standard library.

Types

dataclass

orjson serializes instances of dataclasses.dataclass natively. It serializes instances 40-50x as fast as other libraries and avoids a severe slowdown seen in other libraries compared to serializing dict.

It is supported to pass all variants of dataclasses, including dataclasses using __slots__, frozen dataclasses, those with optional or default attributes, and subclasses. There is a performance benefit to not using __slots__.

Library dict (ms) dataclass (ms) vs. orjson
orjson 1.40 1.60 1
ujson
rapidjson 3.64 68.48 42
simplejson 14.21 92.18 57
json 13.28 94.90 59

This measures serializing 555KiB of JSON, orjson natively and other libraries using default to serialize the output of dataclasses.asdict(). This can be reproduced using the pydataclass script.

Dataclasses are serialized as maps, with every attribute serialized and in the order given on class definition:

>>> import dataclasses, orjson, typing

@dataclasses.dataclass
class Member:
    id: int
    active: bool = dataclasses.field(default=False)

@dataclasses.dataclass
class Object:
    id: int
    name: str
    members: typing.List[Member]

>>> orjson.dumps(Object(1, "a", [Member(1, True), Member(2)]))
b'{"id":1,"name":"a","members":[{"id":1,"active":true},{"id":2,"active":false}]}'

datetime

orjson serializes datetime.datetime objects to RFC 3339 format, e.g., "1970-01-01T00:00:00+00:00". This is a subset of ISO 8601 and is compatible with isoformat() in the standard library.

>>> import orjson, datetime, zoneinfo
>>> orjson.dumps(
    datetime.datetime(2018, 12, 1, 2, 3, 4, 9, tzinfo=zoneinfo.ZoneInfo("Australia/Adelaide"))
)
b'"2018-12-01T02:03:04.000009+10:30"'
>>> orjson.dumps(
    datetime.datetime(2100, 9, 1, 21, 55, 2).replace(tzinfo=zoneinfo.ZoneInfo("UTC"))
)
b'"2100-09-01T21:55:02+00:00"'
>>> orjson.dumps(
    datetime.datetime(2100, 9, 1, 21, 55, 2)
)
b'"2100-09-01T21:55:02"'

datetime.datetime supports instances with a tzinfo that is None, datetime.timezone.utc, a timezone instance from the python3.9+ zoneinfo module, or a timezone instance from the third-party pendulum, pytz, or dateutil/arrow libraries.

It is fastest to use the standard library's zoneinfo.ZoneInfo for timezones.

datetime.time objects must not have a tzinfo.

>>> import orjson, datetime
>>> orjson.dumps(datetime.time(12, 0, 15, 290))
b'"12:00:15.000290"'

datetime.date objects will always serialize.

>>> import orjson, datetime
>>> orjson.dumps(datetime.date(1900, 1, 2))
b'"1900-01-02"'

Errors with tzinfo result in JSONEncodeError being raised.

To disable serialization of datetime objects specify the option orjson.OPT_PASSTHROUGH_DATETIME.

To use "Z" suffix instead of "+00:00" to indicate UTC ("Zulu") time, use the option orjson.OPT_UTC_Z.

To assume datetimes without timezone are UTC, use the option orjson.OPT_NAIVE_UTC.

enum

orjson serializes enums natively. Options apply to their values.

>>> import enum, datetime, orjson
>>>
class DatetimeEnum(enum.Enum):
    EPOCH = datetime.datetime(1970, 1, 1, 0, 0, 0)
>>> orjson.dumps(DatetimeEnum.EPOCH)
b'"1970-01-01T00:00:00"'
>>> orjson.dumps(DatetimeEnum.EPOCH, option=orjson.OPT_NAIVE_UTC)
b'"1970-01-01T00:00:00+00:00"'

Enums with members that are not supported types can be serialized using default:

>>> import enum, orjson
>>>
class Custom:
    def __init__(self, val):
        self.val = val

def default(obj):
    if isinstance(obj, Custom):
        return obj.val
    raise TypeError

class CustomEnum(enum.Enum):
    ONE = Custom(1)

>>> orjson.dumps(CustomEnum.ONE, default=default)
b'1'

float

orjson serializes and deserializes double precision floats with no loss of precision and consistent rounding.

orjson.dumps() serializes Nan, Infinity, and -Infinity, which are not compliant JSON, as null:

>>> import orjson, ujson, rapidjson, json
>>> orjson.dumps([float("NaN"), float("Infinity"), float("-Infinity")])
b'[null,null,null]'
>>> ujson.dumps([float("NaN"), float("Infinity"), float("-Infinity")])
OverflowError: Invalid Inf value when encoding double
>>> rapidjson.dumps([float("NaN"), float("Infinity"), float("-Infinity")])
'[NaN,Infinity,-Infinity]'
>>> json.dumps([float("NaN"), float("Infinity"), float("-Infinity")])
'[NaN, Infinity, -Infinity]'

int

orjson serializes and deserializes 64-bit integers by default. The range supported is a signed 64-bit integer's minimum (-9223372036854775807) to an unsigned 64-bit integer's maximum (18446744073709551615). This is widely compatible, but there are implementations that only support 53-bits for integers, e.g., web browsers. For those implementations, dumps() can be configured to raise a JSONEncodeError on values exceeding the 53-bit range.

>>> import orjson
>>> orjson.dumps(9007199254740992)
b'9007199254740992'
>>> orjson.dumps(9007199254740992, option=orjson.OPT_STRICT_INTEGER)
JSONEncodeError: Integer exceeds 53-bit range
>>> orjson.dumps(-9007199254740992, option=orjson.OPT_STRICT_INTEGER)
JSONEncodeError: Integer exceeds 53-bit range

numpy

orjson natively serializes numpy.ndarray and individual numpy.float64, numpy.float32, numpy.int64, numpy.int32, numpy.int16, numpy.int8, numpy.uint64, numpy.uint32, numpy.uint16, numpy.uint8, numpy.uintp, numpy.intp, numpy.datetime64, and numpy.bool instances.

orjson is faster than all compared libraries at serializing numpy instances. Serializing numpy data requires specifying option=orjson.OPT_SERIALIZE_NUMPY.

>>> import orjson, numpy
>>> orjson.dumps(
        numpy.array([[1, 2, 3], [4, 5, 6]]),
        option=orjson.OPT_SERIALIZE_NUMPY,
)
b'[[1,2,3],[4,5,6]]'

The array must be a contiguous C array (C_CONTIGUOUS) and one of the supported datatypes.

Note a difference between serializing numpy.float32 using ndarray.tolist() or orjson.dumps(..., option=orjson.OPT_SERIALIZE_NUMPY): tolist() converts to a double before serializing and orjson's native path does not. This can result in different rounding.

numpy.datetime64 instances are serialized as RFC 3339 strings and datetime options affect them.

>>> import orjson, numpy
>>> orjson.dumps(
        numpy.datetime64("2021-01-01T00:00:00.172"),
        option=orjson.OPT_SERIALIZE_NUMPY,
)
b'"2021-01-01T00:00:00.172000"'
>>> orjson.dumps(
        numpy.datetime64("2021-01-01T00:00:00.172"),
        option=(
            orjson.OPT_SERIALIZE_NUMPY |
            orjson.OPT_NAIVE_UTC |
            orjson.OPT_OMIT_MICROSECONDS
        ),
)
b'"2021-01-01T00:00:00+00:00"'

If an array is not a contiguous C array, contains an unsupported datatype, or contains a numpy.datetime64 using an unsupported representation (e.g., picoseconds), orjson falls through to default. In default, obj.tolist() can be specified. If an array is malformed, which is not expected, orjson.JSONEncodeError is raised.

This measures serializing 92MiB of JSON from an numpy.ndarray with dimensions of (50000, 100) and numpy.float64 values:

Library Latency (ms) RSS diff (MiB) vs. orjson
orjson 194 99 1.0
ujson
rapidjson 3,048 309 15.7
simplejson 3,023 297 15.6
json 3,133 297 16.1

This measures serializing 100MiB of JSON from an numpy.ndarray with dimensions of (100000, 100) and numpy.int32 values:

Library Latency (ms) RSS diff (MiB) vs. orjson
orjson 178 115 1.0
ujson
rapidjson 1,512 551 8.5
simplejson 1,606 504 9.0
json 1,506 503 8.4

This measures serializing 105MiB of JSON from an numpy.ndarray with dimensions of (100000, 200) and numpy.bool values:

Library Latency (ms) RSS diff (MiB) vs. orjson
orjson 157 120 1.0
ujson
rapidjson 710 327 4.5
simplejson 931 398 5.9
json 996 400 6.3

In these benchmarks, orjson serializes natively, ujson is blank because it does not support a default parameter, and the other libraries serialize ndarray.tolist() via default. The RSS column measures peak memory usage during serialization. This can be reproduced using the pynumpy script.

orjson does not have an installation or compilation dependency on numpy. The implementation is independent, reading numpy.ndarray using PyArrayInterface.

str

orjson is strict about UTF-8 conformance. This is stricter than the standard library's json module, which will serialize and deserialize UTF-16 surrogates, e.g., "\ud800", that are invalid UTF-8.

If orjson.dumps() is given a str that does not contain valid UTF-8, orjson.JSONEncodeError is raised. If loads() receives invalid UTF-8, orjson.JSONDecodeError is raised.

orjson and rapidjson are the only compared JSON libraries to consistently error on bad input.

>>> import orjson, ujson, rapidjson, json
>>> orjson.dumps('\ud800')
JSONEncodeError: str is not valid UTF-8: surrogates not allowed
>>> ujson.dumps('\ud800')
UnicodeEncodeError: 'utf-8' codec ...
>>> rapidjson.dumps('\ud800')
UnicodeEncodeError: 'utf-8' codec ...
>>> json.dumps('\ud800')
'"\\ud800"'
>>> orjson.loads('"\\ud800"')
JSONDecodeError: unexpected end of hex escape at line 1 column 8: line 1 column 1 (char 0)
>>> ujson.loads('"\\ud800"')
''
>>> rapidjson.loads('"\\ud800"')
ValueError: Parse error at offset 1: The surrogate pair in string is invalid.
>>> json.loads('"\\ud800"')
'\ud800'

To make a best effort at deserializing bad input, first decode bytes using the replace or lossy argument for errors:

>>> import orjson
>>> orjson.loads(b'"\xed\xa0\x80"')
JSONDecodeError: str is not valid UTF-8: surrogates not allowed
>>> orjson.loads(b'"\xed\xa0\x80"'.decode("utf-8", "replace"))
'���'

uuid

orjson serializes uuid.UUID instances to RFC 4122 format, e.g., "f81d4fae-7dec-11d0-a765-00a0c91e6bf6".

>>> import orjson, uuid
>>> orjson.dumps(uuid.UUID('f81d4fae-7dec-11d0-a765-00a0c91e6bf6'))
b'"f81d4fae-7dec-11d0-a765-00a0c91e6bf6"'
>>> orjson.dumps(uuid.uuid5(uuid.NAMESPACE_DNS, "python.org"))
b'"886313e1-3b8a-5372-9b90-0c9aee199e5d"'

Testing

The library has comprehensive tests. There are tests against fixtures in the JSONTestSuite and nativejson-benchmark repositories. It is tested to not crash against the Big List of Naughty Strings. It is tested to not leak memory. It is tested to not crash against and not accept invalid UTF-8. There are integration tests exercising the library's use in web servers (gunicorn using multiprocess/forked workers) and when multithreaded. It also uses some tests from the ultrajson library.

orjson is the most correct of the compared libraries. This graph shows how each library handles a combined 342 JSON fixtures from the JSONTestSuite and nativejson-benchmark tests:

Library Invalid JSON documents not rejected Valid JSON documents not deserialized
orjson 0 0
ujson 31 0
rapidjson 6 0
simplejson 10 0
json 17 0

This shows that all libraries deserialize valid JSON but only orjson correctly rejects the given invalid JSON fixtures. Errors are largely due to accepting invalid strings and numbers.

The graph above can be reproduced using the pycorrectness script.

Performance

Serialization and deserialization performance of orjson is better than ultrajson, rapidjson, simplejson, or json. The benchmarks are done on fixtures of real data:

  • twitter.json, 631.5KiB, results of a search on Twitter for "一", containing CJK strings, dictionaries of strings and arrays of dictionaries, indented.

  • github.json, 55.8KiB, a GitHub activity feed, containing dictionaries of strings and arrays of dictionaries, not indented.

  • citm_catalog.json, 1.7MiB, concert data, containing nested dictionaries of strings and arrays of integers, indented.

  • canada.json, 2.2MiB, coordinates of the Canadian border in GeoJSON format, containing floats and arrays, indented.

Latency

Serialization

Deserialization

twitter.json serialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0.3 3560 1
ujson 2.1 473 7.5
rapidjson 1.7 596 5.9
simplejson 3.1 324 10.8
json 2.5 397 8.9

twitter.json deserialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 1.2 811 1
ujson 2.9 347 2.3
rapidjson 5.1 197 4.1
simplejson 2.8 352 2.3
json 3.3 299 2.7

github.json serialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0 39916 1
ujson 0.2 4969 8
rapidjson 0.2 5754 6.9
simplejson 0.3 2916 13.7
json 0.3 3916 10.3

github.json deserialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0.1 9879 1
ujson 0.2 4059 2.3
rapidjson 0.3 3772 2.6
simplejson 0.2 5092 1.9
json 0.2 4944 2

citm_catalog.json serialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0.6 1601 1
ujson 2.9 340 4.8
rapidjson 2.3 429 3.8
simplejson 12.5 79 20.3
json 5.7 176 9.2

citm_catalog.json deserialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 2.9 341 1
ujson 5 202 1.7
rapidjson 8.3 119 2.8
simplejson 6.6 151 2.2
json 7 141 2.4

canada.json serialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 5.3 186 1
ujson 17.2 57 3.2
rapidjson 45.3 22 8.5
simplejson 70.9 14 13.3
json 49.7 20 9.3

canada.json deserialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 6.7 149 1
ujson 15.2 66 2.3
rapidjson 30.1 33 4.5
simplejson 29.9 32 4.5
json 30.4 32 4.5

Memory

orjson as of 3.7.0 has higher baseline memory usage than other libraries due to a persistent buffer used for parsing. Incremental memory usage when deserializing is similar to the standard library and other third-party libraries.

This measures, in the first column, RSS after importing a library and reading the fixture, and in the second column, increases in RSS after repeatedly calling loads() on the fixture.

twitter.json

Library import, read() RSS (MiB) loads() increase in RSS (MiB)
orjson 15.7 3.4
ujson 16.4 3.4
rapidjson 16.6 4.4
simplejson 14.5 1.8
json 13.9 1.8

github.json

Library import, read() RSS (MiB) loads() increase in RSS (MiB)
orjson 15.2 0.4
ujson 15.4 0.4
rapidjson 15.7 0.5
simplejson 13.7 0.2
json 13.3 0.1

citm_catalog.json

Library import, read() RSS (MiB) loads() increase in RSS (MiB)
orjson 16.8 10.1
ujson 17.3 10.2
rapidjson 17.6 28.7
simplejson 15.8 30.1
json 14.8 20.5

canada.json

Library import, read() RSS (MiB) loads() increase in RSS (MiB)
orjson 17.2 22.1
ujson 17.4 18.3
rapidjson 18 23.5
simplejson 15.7 21.4
json 15.4 20.4

Reproducing

The above was measured using Python 3.11.6 on Linux (amd64) with orjson 3.9.11, ujson 5.9.0, python-rapidson 1.14, and simplejson 3.19.2.

The latency results can be reproduced using the pybench and graph scripts. The memory results can be reproduced using the pymem script.

Questions

Why can't I install it from PyPI?

Probably pip needs to be upgraded to version 20.3 or later to support the latest manylinux_x_y or universal2 wheel formats.

"Cargo, the Rust package manager, is not installed or is not on PATH."

This happens when there are no binary wheels (like manylinux) for your platform on PyPI. You can install Rust through rustup or a package manager and then it will compile.

Will it deserialize to dataclasses, UUIDs, decimals, etc or support object_hook?

No. This requires a schema specifying what types are expected and how to handle errors etc. This is addressed by data validation libraries a level above this.

Will it serialize to str?

No. bytes is the correct type for a serialized blob.

Packaging

To package orjson requires at least Rust 1.72 and the maturin build tool. The recommended build command is:

maturin build --release --strip

It benefits from also having a C build environment to compile a faster deserialization backend. See this project's manylinux_2_28 builds for an example using clang and LTO.

The project's own CI tests against nightly-2024-02-13 and stable 1.65. It is prudent to pin the nightly version because that channel can introduce breaking changes.

orjson is tested for amd64, aarch64, arm7, ppc64le, and s390x on Linux. It is tested for amd64 on macOS and cross-compiles for aarch64. For Windows it is tested on amd64 and i686.

There are no runtime dependencies other than libc.

The source distribution on PyPI contains all dependencies' source and can be built without network access. The file can be downloaded from https://files.pythonhosted.org/packages/source/o/orjson/orjson-${version}.tar.gz.

orjson's tests are included in the source distribution on PyPI. The requirements to run the tests are specified in test/requirements.txt. The tests should be run as part of the build. It can be run with pytest -q test.

License

orjson was written by ijl <ijl@mailbox.org>, copyright 2018 - 2024, available to you under either the Apache 2 license or MIT license at your choice.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

orjson-3.9.14.tar.gz (12.4 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

orjson-3.9.14-cp312-none-win_amd64.whl (140.1 kB view details)

Uploaded CPython 3.12Windows x86-64

orjson-3.9.14-cp312-cp312-musllinux_1_2_x86_64.whl (311.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

orjson-3.9.14-cp312-cp312-musllinux_1_2_aarch64.whl (317.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

orjson-3.9.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (139.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

orjson-3.9.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (155.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

orjson-3.9.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (160.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

orjson-3.9.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (130.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

orjson-3.9.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (143.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

orjson-3.9.14-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (253.3 kB view details)

Uploaded CPython 3.12macOS 10.15+ universal2 (ARM64, x86-64)macOS 10.15+ x86-64macOS 11.0+ ARM64

orjson-3.9.14-cp311-none-win_amd64.whl (139.9 kB view details)

Uploaded CPython 3.11Windows x86-64

orjson-3.9.14-cp311-none-win32.whl (143.6 kB view details)

Uploaded CPython 3.11Windows x86

orjson-3.9.14-cp311-cp311-musllinux_1_2_x86_64.whl (310.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

orjson-3.9.14-cp311-cp311-musllinux_1_2_aarch64.whl (317.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

orjson-3.9.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (139.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

orjson-3.9.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (155.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

orjson-3.9.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (160.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

orjson-3.9.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (130.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

orjson-3.9.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (143.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

orjson-3.9.14-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (253.2 kB view details)

Uploaded CPython 3.11macOS 10.15+ universal2 (ARM64, x86-64)macOS 10.15+ x86-64macOS 11.0+ ARM64

orjson-3.9.14-cp310-none-win_amd64.whl (139.9 kB view details)

Uploaded CPython 3.10Windows x86-64

orjson-3.9.14-cp310-none-win32.whl (143.6 kB view details)

Uploaded CPython 3.10Windows x86

orjson-3.9.14-cp310-cp310-musllinux_1_2_x86_64.whl (310.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

orjson-3.9.14-cp310-cp310-musllinux_1_2_aarch64.whl (317.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

orjson-3.9.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (139.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

orjson-3.9.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (155.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

orjson-3.9.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (160.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

orjson-3.9.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (130.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

orjson-3.9.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (143.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

orjson-3.9.14-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (253.2 kB view details)

Uploaded CPython 3.10macOS 10.15+ universal2 (ARM64, x86-64)macOS 10.15+ x86-64macOS 11.0+ ARM64

orjson-3.9.14-cp39-none-win_amd64.whl (139.8 kB view details)

Uploaded CPython 3.9Windows x86-64

orjson-3.9.14-cp39-none-win32.whl (143.5 kB view details)

Uploaded CPython 3.9Windows x86

orjson-3.9.14-cp39-cp39-musllinux_1_2_x86_64.whl (310.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

orjson-3.9.14-cp39-cp39-musllinux_1_2_aarch64.whl (317.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

orjson-3.9.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

orjson-3.9.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (154.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

orjson-3.9.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (160.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

orjson-3.9.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (130.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

orjson-3.9.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (142.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

orjson-3.9.14-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (252.8 kB view details)

Uploaded CPython 3.9macOS 10.15+ universal2 (ARM64, x86-64)macOS 10.15+ x86-64macOS 11.0+ ARM64

orjson-3.9.14-cp38-none-win_amd64.whl (139.7 kB view details)

Uploaded CPython 3.8Windows x86-64

orjson-3.9.14-cp38-none-win32.whl (143.4 kB view details)

Uploaded CPython 3.8Windows x86

orjson-3.9.14-cp38-cp38-musllinux_1_2_x86_64.whl (310.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

orjson-3.9.14-cp38-cp38-musllinux_1_2_aarch64.whl (317.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

orjson-3.9.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

orjson-3.9.14-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (154.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

orjson-3.9.14-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (159.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

orjson-3.9.14-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (130.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

orjson-3.9.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (142.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

orjson-3.9.14-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (252.5 kB view details)

Uploaded CPython 3.8macOS 10.15+ universal2 (ARM64, x86-64)macOS 10.15+ x86-64macOS 11.0+ ARM64

File details

Details for the file orjson-3.9.14.tar.gz.

File metadata

  • Download URL: orjson-3.9.14.tar.gz
  • Upload date:
  • Size: 12.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14.tar.gz
Algorithm Hash digest
SHA256 06fb40f8e49088ecaa02f1162581d39e2cf3fd9dbbfe411eb2284147c99bad79
MD5 f9f42f45d596b027772d3360ceece383
BLAKE2b-256 bb924280f93e3e1826b57a34a12de1b4a9d68bd850a34f528954c1cea0f49b14

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-none-win_amd64.whl.

File metadata

  • Download URL: orjson-3.9.14-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 140.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a603161318ff699784943e71f53899983b7dee571b4dd07c336437c9c5a272b0
MD5 8adc912f8fb862e8103cea54d65dbe95
BLAKE2b-256 360848fa4171f7c5fbad1bfb73952f27267336f94550d9b8fcb32ab328492422

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 449bf090b2aa4e019371d7511a6ea8a5a248139205c27d1834bb4b1e3c44d936
MD5 fa13e6fa7867fde777b902cc2defb4a8
BLAKE2b-256 0810d7de27482572846dbf4e950335119df1baf3fbd3be8103eb1a320f894678

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a1af21160a38ee8be3f4fcf24ee4b99e6184cadc7f915d599f073f478a94d2c
MD5 4ae90e280009a71bef987493ea5fd0fa
BLAKE2b-256 9b549f41bfe2ed9b0e7cf0da074e3b5961d282616a065128a51c7417f863c0de

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 751250a31fef2bac05a2da2449aae7142075ea26139271f169af60456d8ad27a
MD5 ff2d0fca589f3ab678d6993aa38a740a
BLAKE2b-256 832ddf4059c380ce2cbe16a3c1c973f48fa8fd38857deb157be1fc2ad184e0c0

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce6f095eef0026eae76fc212f20f786011ecf482fc7df2f4c272a8ae6dd7b1ef
MD5 9c49cfd7046a1e9ff202de76b5086392
BLAKE2b-256 8b638c34c6041e6431824bb13beb7d6132f7081c2278db18c79152bb96ad4c6c

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90903d2908158a2c9077a06f11e27545de610af690fb178fd3ba6b32492d4d1c
MD5 90563d1a597d5b4071643f422c246a3b
BLAKE2b-256 7e5cc291b8680572fd3c07e41418de284ca26aadf0779a9549f084548c8b5e26

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2450d87dd7b4f277f4c5598faa8b49a0c197b91186c47a2c0b88e15531e4e3e
MD5 55a9c5bdd7117bbb058218364bd78132
BLAKE2b-256 05b82581cad18e8f4198fb976a2ca0ce851163bcd9fb6e5233f0cbb939208332

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2591faa0c031cf3f57e5bce1461cfbd6160f3f66b5a72609a130924917cb07d
MD5 80b4a6c3923431f1b0873494029b5cf5
BLAKE2b-256 411347a63c30c6b903e77e5ee56187264598a09bead16c7269555d88a3536494

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 08e722a8d06b13b67a51f247a24938d1a94b4b3862e40e0eef3b2e98c99cd04c
MD5 5e5bd36f611d7e8c54a0a5d4e0ebbedf
BLAKE2b-256 edafbaa0770a917dfd2456c933fc318f4f0bece1948995e1b2adb5637a7618e0

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-none-win_amd64.whl.

File metadata

  • Download URL: orjson-3.9.14-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 139.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 26280a7fcb62d8257f634c16acebc3bec626454f9ab13558bbf7883b9140760e
MD5 6a7f48b1f427a7f02d102535469441ed
BLAKE2b-256 16628f285592aa51c3bb18c7ee572c661756d8f6aa7c005cf1ab4a534f27dc6c

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-none-win32.whl.

File metadata

  • Download URL: orjson-3.9.14-cp311-none-win32.whl
  • Upload date:
  • Size: 143.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp311-none-win32.whl
Algorithm Hash digest
SHA256 6f39a10408478f4c05736a74da63727a1ae0e83e3533d07b19443400fe8591ca
MD5 efa152ee12da46349a95798ec1ca7c9e
BLAKE2b-256 365ebf62a281803629f8200d99b4d9e38ef4e1ba5651779d74b3c809d9ff5ba1

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dc1c132259b38d12c6587d190cd09cd76e3b5273ce71fe1372437b4cbc65f6f
MD5 089873596fe820b4da60c4f45b70af48
BLAKE2b-256 a539568013094500f43787c0d7af566adc7d841079b32b170623b960ae0a1164

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 917311d6a64d1c327c0dfda1e41f3966a7fb72b11ca7aa2e7a68fcccc7db35d9
MD5 3b0b6c7ee68f6aab5865aa8c4be48cc2
BLAKE2b-256 3b434c1ca6dd07b5176787bb8e549bbc94627e6e1655656034dc11eada7bd433

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2eefc41ba42e75ed88bc396d8fe997beb20477f3e7efa000cd7a47eda452fbb2
MD5 1dc67232d147baca346a6e85d5303fe2
BLAKE2b-256 986c6043c22dc6f9fb64d3d46285fe31e2cab55dd4278fa5d92b5f8970f1067c

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7c11667421df2d8b18b021223505dcc3ee51be518d54e4dc49161ac88ac2b87
MD5 3079fa787043852f0599f2734f4bfb8c
BLAKE2b-256 55ebd82504a0d81730852e9715d7f28a31ac307d58ceceefbbbf96a06b0bd8a5

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2cf1d0557c61c75e18cf7d69fb689b77896e95553e212c0cc64cf2087944b84
MD5 b1ceb69424158a98cd2cb5ef0063e3d6
BLAKE2b-256 f2947e198e393337fa2719faa79eecfa8030cd5a058e58834aeb61d2d213ef46

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 135d518f73787ce323b1a5e21fb854fe22258d7a8ae562b81a49d6c7f826f2a3
MD5 fb31c606fa7553b3dbe9da0fc0961c13
BLAKE2b-256 36969bc3b57e93ddf51ec8b6c1161aac0eb487d722014cd0b0a252d6dc3c4439

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19cdea0664aec0b7f385be84986d4defd3334e9c3c799407686ee1c26f7b8251
MD5 e26329c55ba2141c7e0e4e7a06747207
BLAKE2b-256 162d6c4a423b688b83fc789aedb929cb5e43b5aba24cf653863767ce57e1df00

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c19009ff37f033c70acd04b636380379499dac2cba27ae7dfc24f304deabbc81
MD5 2b56f20bcdf298412f0b49db3e9901fe
BLAKE2b-256 ebba120212f8f4a93f58b6d8291030dff3ec3c122218be9bd219eb0f45084531

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-none-win_amd64.whl.

File metadata

  • Download URL: orjson-3.9.14-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 139.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ea890e6dc1711aeec0a33b8520e395c2f3d59ead5b4351a788e06bf95fc7ba81
MD5 bf86f59830d24a0007ef593d4c727b5f
BLAKE2b-256 7ef8921ae3ed9fd06f6f143dc4e57af7b6159df01054ea52da511b200f5214e0

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-none-win32.whl.

File metadata

  • Download URL: orjson-3.9.14-cp310-none-win32.whl
  • Upload date:
  • Size: 143.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1f7b6f3ef10ae8e3558abb729873d033dbb5843507c66b1c0767e32502ba96bb
MD5 e23d17ed60e1f8d49919a949dec21e46
BLAKE2b-256 5962b5f69bf50b5d8adc4d482af8fc8bee162682fa45196146dfc8f483aee8ca

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20837e10835c98973673406d6798e10f821e7744520633811a5a3d809762d8cc
MD5 352be4b7ba93c5d2f3d8509f518b0fa3
BLAKE2b-256 07ba574e2897572161d53cd2ef7a2f3f2f24dd38f743f69f3eb39603af507424

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95c03137b0cf66517c8baa65770507a756d3a89489d8ecf864ea92348e1beabe
MD5 766a02517c3365eb9437110da5287d15
BLAKE2b-256 3cf08d6ebd7f6a0ebb1140f74ba4228c191c174cd18f8d3f33ca38abe31db4c7

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d450a8e0656efb5d0fcb062157b918ab02dcca73278975b4ee9ea49e2fcf5bd5
MD5 4df22f70a291faeb582fdd01fbc2fb3b
BLAKE2b-256 4141302b51345b61afb68ce166e4be2ebeef0b86d7aa9f28ca4fcf7c3d612d45

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df76ecd17b1b3627bddfd689faaf206380a1a38cc9f6c4075bd884eaedcf46c2
MD5 e23cdb96545ec75a74a181e98b026fa9
BLAKE2b-256 4feb1ec22de8af9c8b97c4b08e29962d2b86b5031a12b9d6e63a7e607c92c787

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 abcda41ecdc950399c05eff761c3de91485d9a70d8227cb599ad3a66afe93bcc
MD5 c9f897ea4b6c2a9f95b150ee6945b7d1
BLAKE2b-256 f6ffb4b18657cef9483ff4879ef4992a878be55f63a1c3c2347192a09efe8915

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58b36f54da759602d8e2f7dad958752d453dfe2c7122767bc7f765e17dc59959
MD5 a1dec8cbabb10c2f25d24774312ab703
BLAKE2b-256 b30478cb58f68f9ec8c36b077e97937d79a0094817aede8052915e7b68bf6df8

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6bc7928d161840096adc956703494b5c0193ede887346f028216cac0af87500
MD5 a668b96b7a2f2a34e7b4ef446740a920
BLAKE2b-256 f0c09ebb0834951ebd3c5484c158a9c98569c43ba78ef1d45fcbf8fd89b8fdad

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 793f6c9448ab6eb7d4974b4dde3f230345c08ca6c7995330fbceeb43a5c8aa5e
MD5 8e01322c1acdb75615162fb01a37eb4e
BLAKE2b-256 3460f0feb339679294b43e6b73c3994b20cb03c1458e3c1250ddf13f43a1a8e8

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-none-win_amd64.whl.

File metadata

  • Download URL: orjson-3.9.14-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 139.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ab90c02cb264250b8a58cedcc72ed78a4a257d956c8d3c8bebe9751b818dfad8
MD5 b2cc8c43865405919ad280b4584cd7a6
BLAKE2b-256 fd20565aba06fe6db5af97ef18e212611792e84ab5ccc92599de42918cdd0690

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-none-win32.whl.

File metadata

  • Download URL: orjson-3.9.14-cp39-none-win32.whl
  • Upload date:
  • Size: 143.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0572f174f50b673b7df78680fb52cd0087a8585a6d06d295a5f790568e1064c6
MD5 c24ac67d1f81e379495b293182ee0519
BLAKE2b-256 b609654bddb00ffafa7c26ae99c478302bcf80f6fa0cfdd95931f29449b9c826

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f52ac2eb49e99e7373f62e2a68428c6946cda52ce89aa8fe9f890c7278e2d3a
MD5 fd9d237ffbd05c04129ec37e0bc1bde6
BLAKE2b-256 3fcda3bd40d2db4da9e56ecfcf7a0a70db93f5f0d7629b84e4f7ebf9f10ae02b

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f75823cc1674a840a151e999a7dfa0d86c911150dd6f951d0736ee9d383bf415
MD5 0659adcd050e01bebdda5c280f473089
BLAKE2b-256 4a7f6db5bf9206d5a9e156f7071213e177221cf927f59af6f4297404da77851c

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fca33fdd0b38839b01912c57546d4f412ba7bfa0faf9bf7453432219aec2df07
MD5 64a6cef00ac3e7c502951179ce2fc08b
BLAKE2b-256 b191c69c35f36b5eea58305b944b1ebddbc7e21390da57c62980db34e089886a

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac0c7eae7ad3a223bde690565442f8a3d620056bd01196f191af8be58a5248e1
MD5 dd0e9bf32534edc0276d67c869f1f618
BLAKE2b-256 e0ba6a8496ade6dbd6940ef50f1a80ab2b24d606b3136b9435de1f409e8e033e

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3014ccbda9be0b1b5f8ea895121df7e6524496b3908f4397ff02e923bcd8f6dd
MD5 ff0e10e0f57d8375a4359ab65215a249
BLAKE2b-256 1a03e93ecf2634676ec345a0bdbeb3acab8ceb80b32eb27ed06200acdd1a38fc

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 236230433a9a4968ab895140514c308fdf9f607cb8bee178a04372b771123860
MD5 65173da12a557e07d585238e490c511f
BLAKE2b-256 d05ba76631401cd4c9d7815aa5d5154c9bfaa90babb39e1a3bc9a31ff9aaeced

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac650d49366fa41fe702e054cb560171a8634e2865537e91f09a8d05ea5b1d37
MD5 d002a2b8fbf60af77fe166288ba90a17
BLAKE2b-256 94f1fe022db74151381e234b945417eb0029457011289735bc51603740835377

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5bf597530544db27a8d76aced49cfc817ee9503e0a4ebf0109cd70331e7bbe0c
MD5 80336e4ca57ebf7554d9cad418a70ac1
BLAKE2b-256 3fb7473b8ba97204c49def78ecf7b802f864f78414ebd1797d8cc9f355dea197

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-none-win_amd64.whl.

File metadata

  • Download URL: orjson-3.9.14-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 139.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 29512eb925b620e5da2fd7585814485c67cc6ba4fe739a0a700c50467a8a8065
MD5 d1e296a6c8bd3da5cf314910b6850a18
BLAKE2b-256 f9d59593f2abb4f32c797d322ebc883e8b3df9303bf5c39e34242339fa5dff21

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-none-win32.whl.

File metadata

  • Download URL: orjson-3.9.14-cp38-none-win32.whl
  • Upload date:
  • Size: 143.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for orjson-3.9.14-cp38-none-win32.whl
Algorithm Hash digest
SHA256 7913079b029e1b3501854c9a78ad938ed40d61fe09bebab3c93e60ff1301b189
MD5 2a847aebd6e54412c0d2592ab0c21c42
BLAKE2b-256 15748c77e7f2543b81d8a8a22f2d9c9cd5e0bf3ce1aa3ce9dee1196e0fac8392

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df3266d54246cb56b8bb17fa908660d2a0f2e3f63fbc32451ffc1b1505051d07
MD5 b99a5193b0ed75374543167e6551630e
BLAKE2b-256 1a2fd1959e2d9d9943ccaf73b41201cad5c4dfaaf952bbd64fd705f8a907f0cf

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7183cc68ee2113b19b0b8714221e5e3b07b3ba10ca2bb108d78fd49cefaae101
MD5 1c68b106eeb6610f5a07d3c3e668ea45
BLAKE2b-256 c57ffd73ea3c9d619df74efbfedeff87fa6f15198deb196ad8d8915cb029d214

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23d1528db3c7554f9d6eeb09df23cb80dd5177ec56eeb55cc5318826928de506
MD5 b7bf931193f848631875d2f71bd79077
BLAKE2b-256 273804022b06144bc4896be146133be24ffa38c710f336bcff3509126caec501

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75fc593cf836f631153d0e21beaeb8d26e144445c73645889335c2247fcd71a0
MD5 7ea421a3e13231dd9a9c5dacf17db42c
BLAKE2b-256 d53f7f81a31a201242996102f6643098d41b981b06ca0b9324c451abb6058587

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 978f416bbff9da8d2091e3cf011c92da68b13f2c453dcc2e8109099b2a19d234
MD5 44048c9087146f04fe746235e13303e7
BLAKE2b-256 d6424161277eedcbfb7eb4719de0e9f0ca225edd590a0bc5906b53c56fbd4de9

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba3518b999f88882ade6686f1b71e207b52e23546e180499be5bbb63a2f9c6e6
MD5 c41143b1b9f1b96fe30804d5366d2674
BLAKE2b-256 46c905a8f30e339b985e15e5c9264e161ecdef0a275fe59f0be0c69ecf38b8ac

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a88cafb100af68af3b9b29b5ccd09fdf7a48c63327916c8c923a94c336d38dd3
MD5 9f59b67eb25252d1df0096e4d162c39e
BLAKE2b-256 6d5356fc416cbf8aa6e6ae6a90adf464ac2425d90d9dd4c40cee878f1c0c4db5

See more details on using hashes here.

File details

Details for the file orjson-3.9.14-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for orjson-3.9.14-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 814f288c011efdf8f115c5ebcc1ab94b11da64b207722917e0ceb42f52ef30a3
MD5 f365e371ea89167144eadca8bfc88fe2
BLAKE2b-256 291653b5035b544752b2e4f5222f53eed2b1951c5dc3f50ab2ce3862b08b344b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page