Skip to main content

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.

orjson.dumps() is something like 10x as fast as json, serializes common types and subtypes, has a default parameter for the caller to specify how to serialize arbitrary types, and has a number of flags controlling output.

orjson.loads() is something like 2x as fast as json, and is strictly compliant with UTF-8 and RFC 8259 ("The JavaScript Object Notation (JSON) Data Interchange Format").

Reading from and writing to files, line-delimited JSON files, and so on is not provided by the library.

orjson supports CPython 3.9, 3.10, 3.11, 3.12, 3.13, 3.14, and 3.15.

It distributes amd64/x86_64/x64, i686/x86, aarch64/arm64/armv8, arm7, ppc64le/POWER8, and s390x wheels for Linux, amd64 and aarch64 wheels for macOS, and amd64, i686, and aarch64 wheels for Windows.

Wheels published to PyPI for amd64 run on x86-64-v1 (2003) or later, but will at runtime use AVX-512 if available for a significant performance benefit; aarch64 wheels run on ARMv8-A (2011) or later.

orjson does not and will not support PyPy, embedded Python builds for Android/iOS, or PEP 554 subinterpreters.

orjson may support PEP 703 free-threading when it is stable.

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. Reproducing
  5. Questions
  6. Packaging
  7. License

Usage

Install

To install a wheel from PyPI, install the orjson package.

In requirements.in or requirements.txt format, specify:

orjson >= 3.10,<4

In pyproject.toml format, specify:

orjson = "^3.10"

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.

ensure_ascii is probably not relevant today and UTF-8 characters cannot be escaped to ASCII.

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
>>>
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}'

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.01 0.02 1
json 0.13 0.54 34

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.25 0.45 1
json 3.01 24.42 54.4

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 0.5 0.93 2.08
json 2.72 3.59

json is blank because it raises TypeError on attempting to sort before converting all keys to str. 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.11 0.3 1
json 1.36 1.93 6.4

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.

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.

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 2048 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.

It raises JSONDecodeError if a combination of array or object recurses 1024 levels deep.

It raises JSONDecodeError if unable to allocate a buffer large enough to parse the document.

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 0.43 0.95 1
json 5.81 38.32 40

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, json
>>> orjson.dumps([float("NaN"), float("Infinity"), float("-Infinity")])
b'[null,null,null]'
>>> 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.float16 (numpy.half), 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 compatible with both numpy v1 and v2.

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 not in the native endianness, e.g., an array of big-endian values on a little-endian system, orjson.JSONEncodeError is raised.

If an array is malformed, 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 105 105 1
json 1,481 295 14.2

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 68 119 1
json 684 501 10.1

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 50 125 1
json 573 398 11.5

In these benchmarks, orjson serializes natively and json serializes 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.

>>> import orjson, json
>>> orjson.dumps('\ud800')
JSONEncodeError: str is not valid UTF-8: surrogates not allowed
>>> json.dumps('\ud800')
'"\\ud800"'
>>> orjson.loads('"\\ud800"')
JSONDecodeError: unexpected end of hex escape at line 1 column 8: line 1 column 1 (char 0)
>>> 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.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
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 consistently better than the standard library's json. The graphs below illustrate a few commonly used documents.

Latency

Serialization

Deserialization

twitter.json serialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0.1 8453 1
json 1.3 765 11.1

twitter.json deserialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0.5 1889 1
json 2.2 453 4.2

github.json serialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0.01 103693 1
json 0.13 7648 13.6

github.json deserialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0.04 23264 1
json 0.1 10430 2.2

citm_catalog.json serialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 0.3 3975 1
json 3 338 11.8

citm_catalog.json deserialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 1.3 781 1
json 4 250 3.1

canada.json serialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 2.5 399 1
json 29.8 33 11.9

canada.json deserialization

Library Median latency (milliseconds) Operations per second Relative (latency)
orjson 3 333 1
json 18 55 6

Reproducing

The above was measured using Python 3.11.10 in a Fedora 42 container on an x86-64-v4 machine using the orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl artifact on PyPI. The latency results can be reproduced using the pybench script.

Questions

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.

Will it support NDJSON or JSONL?

No. orjsonl may be appropriate.

Will it support JSON5 or RJSON?

No, it supports RFC 8259.

How do I depend on orjson in a Rust project?

orjson is only shipped as a Python module. The project should depend on orjson in its own Python requirements and should obtain pointers to functions and objects using the normal PyImport_* APIs.

Packaging

To package orjson requires at least Rust 1.85, a C compiler, and the maturin build tool. The recommended build command is:

maturin build --release --strip

The project's own CI tests against nightly-2025-10-21 and stable 1.85. It is prudent to pin the nightly version because that channel can introduce breaking changes. There is a significant performance benefit to using nightly.

orjson is tested on native hardware for amd64, aarch64, and i686 on Linux and for arm7, ppc64le, and s390x is cross-compiled and may be tested via emulation. It is tested for aarch64 on macOS and cross-compiles for amd64. For Windows it is tested on amd64, i686, and aarch64.

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 tests require only pytest. There are optional packages such as pytz and numpy listed in test/requirements.txt and used in ~10% of tests. Not having these dependencies causes the tests needing them to skip. Tests can be run with pytest -q test.

License

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

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.11.4.tar.gz (5.9 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.11.4-cp314-cp314-win_arm64.whl (126.2 kB view details)

Uploaded CPython 3.14Windows ARM64

orjson-3.11.4-cp314-cp314-win_amd64.whl (131.3 kB view details)

Uploaded CPython 3.14Windows x86-64

orjson-3.11.4-cp314-cp314-win32.whl (136.1 kB view details)

Uploaded CPython 3.14Windows x86

orjson-3.11.4-cp314-cp314-musllinux_1_2_x86_64.whl (139.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

orjson-3.11.4-cp314-cp314-musllinux_1_2_i686.whl (149.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

orjson-3.11.4-cp314-cp314-musllinux_1_2_armv7l.whl (406.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

orjson-3.11.4-cp314-cp314-musllinux_1_2_aarch64.whl (140.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

orjson-3.11.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

orjson-3.11.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (136.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

orjson-3.11.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (137.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

orjson-3.11.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (136.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

orjson-3.11.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (129.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

orjson-3.11.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

orjson-3.11.4-cp314-cp314-macosx_15_0_arm64.whl (128.9 kB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

orjson-3.11.4-cp314-cp314-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (243.5 kB view details)

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

orjson-3.11.4-cp313-cp313-win_arm64.whl (126.2 kB view details)

Uploaded CPython 3.13Windows ARM64

orjson-3.11.4-cp313-cp313-win_amd64.whl (131.3 kB view details)

Uploaded CPython 3.13Windows x86-64

orjson-3.11.4-cp313-cp313-win32.whl (136.0 kB view details)

Uploaded CPython 3.13Windows x86

orjson-3.11.4-cp313-cp313-musllinux_1_2_x86_64.whl (139.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

orjson-3.11.4-cp313-cp313-musllinux_1_2_i686.whl (149.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

orjson-3.11.4-cp313-cp313-musllinux_1_2_armv7l.whl (406.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

orjson-3.11.4-cp313-cp313-musllinux_1_2_aarch64.whl (140.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

orjson-3.11.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

orjson-3.11.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (136.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

orjson-3.11.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (137.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

orjson-3.11.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (136.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

orjson-3.11.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (129.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

orjson-3.11.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

orjson-3.11.4-cp313-cp313-macosx_15_0_arm64.whl (128.9 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

orjson-3.11.4-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (243.5 kB view details)

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

orjson-3.11.4-cp312-cp312-win_arm64.whl (126.2 kB view details)

Uploaded CPython 3.12Windows ARM64

orjson-3.11.4-cp312-cp312-win_amd64.whl (131.5 kB view details)

Uploaded CPython 3.12Windows x86-64

orjson-3.11.4-cp312-cp312-win32.whl (136.0 kB view details)

Uploaded CPython 3.12Windows x86

orjson-3.11.4-cp312-cp312-musllinux_1_2_x86_64.whl (140.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

orjson-3.11.4-cp312-cp312-musllinux_1_2_i686.whl (150.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

orjson-3.11.4-cp312-cp312-musllinux_1_2_armv7l.whl (406.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

orjson-3.11.4-cp312-cp312-musllinux_1_2_aarch64.whl (140.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

orjson-3.11.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

orjson-3.11.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (136.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

orjson-3.11.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (137.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

orjson-3.11.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (136.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

orjson-3.11.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (129.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

orjson-3.11.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

orjson-3.11.4-cp312-cp312-macosx_15_0_arm64.whl (128.9 kB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

orjson-3.11.4-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (243.6 kB view details)

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

orjson-3.11.4-cp311-cp311-win_arm64.whl (126.3 kB view details)

Uploaded CPython 3.11Windows ARM64

orjson-3.11.4-cp311-cp311-win_amd64.whl (131.4 kB view details)

Uploaded CPython 3.11Windows x86-64

orjson-3.11.4-cp311-cp311-win32.whl (135.8 kB view details)

Uploaded CPython 3.11Windows x86

orjson-3.11.4-cp311-cp311-musllinux_1_2_x86_64.whl (139.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

orjson-3.11.4-cp311-cp311-musllinux_1_2_i686.whl (149.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

orjson-3.11.4-cp311-cp311-musllinux_1_2_armv7l.whl (406.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

orjson-3.11.4-cp311-cp311-musllinux_1_2_aarch64.whl (140.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

orjson-3.11.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

orjson-3.11.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (136.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

orjson-3.11.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (137.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

orjson-3.11.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (136.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

orjson-3.11.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (129.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

orjson-3.11.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

orjson-3.11.4-cp311-cp311-macosx_15_0_arm64.whl (129.0 kB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

orjson-3.11.4-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (243.5 kB view details)

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

orjson-3.11.4-cp310-cp310-win_amd64.whl (131.6 kB view details)

Uploaded CPython 3.10Windows x86-64

orjson-3.11.4-cp310-cp310-win32.whl (136.0 kB view details)

Uploaded CPython 3.10Windows x86

orjson-3.11.4-cp310-cp310-musllinux_1_2_x86_64.whl (140.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

orjson-3.11.4-cp310-cp310-musllinux_1_2_i686.whl (149.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

orjson-3.11.4-cp310-cp310-musllinux_1_2_armv7l.whl (406.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

orjson-3.11.4-cp310-cp310-musllinux_1_2_aarch64.whl (140.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

orjson-3.11.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

orjson-3.11.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (136.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

orjson-3.11.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (137.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

orjson-3.11.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (136.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

orjson-3.11.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (129.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

orjson-3.11.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

orjson-3.11.4-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (243.9 kB view details)

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

orjson-3.11.4-cp39-cp39-win_amd64.whl (131.4 kB view details)

Uploaded CPython 3.9Windows x86-64

orjson-3.11.4-cp39-cp39-win32.whl (135.8 kB view details)

Uploaded CPython 3.9Windows x86

orjson-3.11.4-cp39-cp39-musllinux_1_2_x86_64.whl (139.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

orjson-3.11.4-cp39-cp39-musllinux_1_2_i686.whl (149.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

orjson-3.11.4-cp39-cp39-musllinux_1_2_armv7l.whl (406.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

orjson-3.11.4-cp39-cp39-musllinux_1_2_aarch64.whl (140.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

orjson-3.11.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

orjson-3.11.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (136.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

orjson-3.11.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (137.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

orjson-3.11.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (136.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

orjson-3.11.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (129.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

orjson-3.11.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

orjson-3.11.4-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (243.5 kB view details)

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

File details

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

File metadata

  • Download URL: orjson-3.11.4.tar.gz
  • Upload date:
  • Size: 5.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4.tar.gz
Algorithm Hash digest
SHA256 39485f4ab4c9b30a3943cfe99e1a213c4776fb69e8abd68f66b83d5a0b0fdc6d
MD5 679eab5cdb68a93e17aab631adb5ed9d
BLAKE2b-256 c6feed708782d6709cc60eb4c2d8a361a440661f74134675c72990f2c48c785f

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4.tar.gz:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 126.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 78b999999039db3cf58f6d230f524f04f75f129ba3d1ca2ed121f8657e575d3d
MD5 331e4f1165e2dee2bf1bdc710384a0f9
BLAKE2b-256 1abfdef5e25d4d8bfce296a9a7c8248109bf58622c21618b590678f945a2c59c

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-win_arm64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 131.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0a54d6635fa3aaa438ae32e8570b9f0de36f3f6562c308d2a2a452e8b0592db1
MD5 3598eed897168d7cf62adb904b3f6b40
BLAKE2b-256 63b8718eecf0bb7e9d64e4956afaafd23db9f04c776d445f59fe94f54bdae8f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-win_amd64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: orjson-3.11.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 136.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d63076d625babab9db5e7836118bdfa086e60f37d8a174194ae720161eb12394
MD5 e883cd7c50186874bf8ca361bf00c0da
BLAKE2b-256 779225b886252c50ed64be68c937b562b2f2333b45afe72d53d719e46a565a50

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-win32.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e539e382cf46edec157ad66b0b0872a90d829a6b71f17cb633d6c160a223155
MD5 b905669395dfa78fbe08ca16636f5e47
BLAKE2b-256 cc1d7ff81ea23310e086c17b41d78a72270d9de04481e6113dbe2ac19118f7fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 977c393f2e44845ce1b540e19a786e9643221b3323dae190668a98672d43fb23
MD5 c10672ce1fead0c98b947d1f228b2bc0
BLAKE2b-256 8d550789d6de386c8366059db098a628e2ad8798069e94409b0d8935934cbcb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 724ca721ecc8a831b319dcd72cfa370cc380db0bf94537f08f7edd0a7d4e1780
MD5 08e0c5693b6d4a14d96bc56435ca0869
BLAKE2b-256 c1ae21d208f58bdb847dd4d0d9407e2929862561841baa22bdab7aea10ca088e

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b13c478fa413d4b4ee606ec8e11c3b2e52683a640b006bb586b3041c2ca5f606
MD5 7c60925278fb199cf169337af2bf7693
BLAKE2b-256 e052847fcd1a98407154e944feeb12e3b4d487a0e264c40191fb44d1269cbaa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e34dbd508cb91c54f9c9788923daca129fe5b55c5b4eebe713bf5ed3791280cf
MD5 f8593d2a9c8a9e2cc4ab708a49548c05
BLAKE2b-256 dfac2de7188705b4cdfaf0b6c97d2f7849c17d2003232f6e70df98602173f788

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfc2a484cad3585e4ba61985a6062a4c2ed5c7925db6d39f1fa267c9d166487f
MD5 df009175482f685c49fb78d688b13499
BLAKE2b-256 c19d0c102e26e7fde40c4c98470796d050a2ec1953897e2c8ab0cb95b0759fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f28485bdca8617b79d44627f5fb04336897041dfd9fa66d383a49d09d86798bc
MD5 dbe8fe238b3894991e4af8d1e7eab051
BLAKE2b-256 32784fa0aeca65ee82bbabb49e055bd03fa4edea33f7c080c5c7b9601661ef72

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5c54a6d76e3d741dcc3f2707f8eeb9ba2a791d3adbf18f900219b62942803b1
MD5 55009b781405b93b33e40a823cbda1d9
BLAKE2b-256 e83ff84d966ec2a6fd5f73b1a707e7cd876813422ae4bf9f0145c55c9c6a0f57

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aac364c758dc87a52e68e349924d7e4ded348dedff553889e4d9f22f74785316
MD5 78b827885f56f0d8812e14800bbd3be7
BLAKE2b-256 c7621021ed35a1f2bad9040f05fa4cc4f9893410df0ba3eaa323ccf899b1c90a

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e3f20be9048941c7ffa8fc523ccbd17f82e24df1549d1d1fe9317712d19938e
MD5 cddde290fdfcce215f8bafca590c8eaf
BLAKE2b-256 9f37ca2eb40b90621faddfa9517dfe96e25f5ae4d8057a7c0cdd613c17e07b2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 26a20f3fbc6c7ff2cb8e89c4c5897762c9d88cf37330c6a117312365d6781d54
MD5 17bc0cbe44da70ebaa8b054563153cdd
BLAKE2b-256 ac7de2d1076ed2e8e0ae9badca65bf7ef22710f93887b29eaa37f09850604e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp314-cp314-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp314-cp314-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 42d43a1f552be1a112af0b21c10a5f553983c2a0938d2bbb8ecd8bc9fb572803
MD5 e2345011cafdd2da19ac789e5f99e728
BLAKE2b-256 25e354ff63c093cc1697e758e4fceb53164dd2661a7d1bcd522260ba09f54533

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp314-cp314-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 126.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a85f0adf63319d6c1ba06fb0dbf997fced64a01179cf17939a6caca662bf92de
MD5 e376c42105cb8ec2acb7ff02a65ea3e5
BLAKE2b-256 cbdb399abd6950fbd94ce125cb8cd1a968def95174792e127b0642781e040ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-win_arm64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 131.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 09bf242a4af98732db9f9a1ec57ca2604848e16f132e3f72edfd3c5c96de009a
MD5 d3bdbae525020afa151feb8e5a175e61
BLAKE2b-256 c0a9967be009ddf0a1fffd7a67de9c36656b28c763659ef91352acc02cbe364c

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-win_amd64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: orjson-3.11.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c13879c0d2964335491463302a6ca5ad98105fc5db3565499dcb80b1b4bd839
MD5 254f2788250f5bee93659162bf9b2e46
BLAKE2b-256 9f37acd14b12dc62db9a0e1d12386271b8661faae270b22492580d5258808975

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-win32.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 639c3735b8ae7f970066930e58cf0ed39a852d417c24acd4a25fc0b3da3c39a6
MD5 3b9da1cd9dac7eece352f999458b720c
BLAKE2b-256 b6d27f847761d0c26818395b3d6b21fb6bc2305d94612a35b0a30eae65a22728

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04b69c14615fb4434ab867bf6f38b2d649f6f300af30a6705397e895f7aec67a
MD5 22c584c5989869a327927387d5fa24fd
BLAKE2b-256 8ef9f68ad68f4af7c7bde57cd514eaa2c785e500477a8bc8f834838eb696a685

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e7805fda9672c12be2f22ae124dcd7b03928d6c197544fe12174b86553f3196
MD5 f1d76578f6d7915d0b47f8c9fb599704
BLAKE2b-256 9cddba9d32a53207babf65bd510ac4d0faaa818bd0df9a9c6f472fe7c254f2e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68e44722541983614e37117209a194e8c3ad07838ccb3127d96863c95ec7f1e0
MD5 015ad7a58b925ea6869b880e0b718ee0
BLAKE2b-256 c2d73c5514e806837c210492d72ae30ccf050ce3f940f45bf085bab272699ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1469d254b9884f984026bd9b0fa5bbab477a4bfe558bba6848086f6d43eb5e73
MD5 3f78b2eb81b5017ffac8a7d1c02366af
BLAKE2b-256 aafdd0733fcb9086b8be4ebcfcda2d0312865d17d0d9884378b7cffb29d0763f

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c8b2769dc31883c44a9cd126560327767f848eb95f99c36c9932f51090bfce9
MD5 9d021523d792f7e5910fa11c03fe7886
BLAKE2b-256 439204b8cc5c2b729f3437ee013ce14a60ab3d3001465d95c184758f19362f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9daa26ca8e97fae0ce8aa5d80606ef8f7914e9b129b6b5df9104266f764ce436
MD5 06dccf89d8aa00051b831b20f2218cb2
BLAKE2b-256 9a47cb8c654fa9adcc60e99580e17c32b9e633290e6239a99efa6b885aba9dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89216ff3dfdde0e4070932e126320a1752c9d9a758d6a32ec54b3b9334991a6a
MD5 75774de5ac75c3e034cec796b671e3cc
BLAKE2b-256 39e48eea51598f66a6c853c380979912d17ec510e8e66b280d968602e680b942

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2cf4dfaf9163b0728d061bebc1e08631875c51cd30bf47cb9e3293bfbd7dcd5
MD5 7c7eb52dbdf8138fe2c09ecda9b1f539
BLAKE2b-256 33aa6346dd5073730451bee3681d901e3c337e7ec17342fb79659ec9794fc023

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38aa9e65c591febb1b0aed8da4d469eba239d434c218562df179885c94e1a3ad
MD5 6c458358486cd6414ff690992b16e7c3
BLAKE2b-256 55b9ae8d34899ff0c012039b5a7cb96a389b2476e917733294e498586b45472d

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 afb14052690aa328cc118a8e09f07c651d301a72e44920b887c519b313d892ff
MD5 2e8c87a3cdf5283f66a97f1a5599ae6c
BLAKE2b-256 ec3805340734c33b933fd114f161f25a04e651b0c7c33ab95e9416ade5cb44b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2d6737d0e616a6e053c8b4acc9eccea6b6cce078533666f32d140e4f85002534
MD5 24a20bb18d0a1d667c38a0dc284b46c7
BLAKE2b-256 2315c52aa7112006b0f3d6180386c3a46ae057f932ab3425bc6f6ac50431cca1

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 126.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d38d2bc06d6415852224fcc9c0bfa834c25431e466dc319f0edd56cca81aa96e
MD5 960e45aed82d1a1fe1e28d7332371590
BLAKE2b-256 c63be2425f61e5825dc5b08c2a5a2b3af387eaaca22a12b9c8c01504f8614c36

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-win_arm64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 131.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c6dbf422894e1e3c80a177133c0dda260f81428f9de16d61041949f6a2e5c140
MD5 3c2895fa14f7882d3277523bfec3b026
BLAKE2b-256 b93c9cf47c3ff5f39b8350fb21ba65d789b6a1129d4cbb3033ba36c8a9023520

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-win_amd64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: orjson-3.11.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b58430396687ce0f7d9eeb3dd47761ca7d8fda8e9eb92b3077a7a353a75efefa
MD5 06a4c5763d1f039a53d4ba5ddb932427
BLAKE2b-256 4a7bad613fdcdaa812f075ec0875143c3d37f8654457d2af17703905425981bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-win32.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 525021896afef44a68148f6ed8a8bf8375553d6066c7f48537657f64823565b9
MD5 3778039b6824b3380b4c74a916bcb6ed
BLAKE2b-256 1b4878302d98423ed8780479a1e682b9aecb869e8404545d999d34fa486e573e

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03bfa548cf35e3f8b3a96c4e8e41f753c686ff3d8e182ce275b1751deddab58c
MD5 941132da245c6e2745e11b158c54dfec
BLAKE2b-256 e14396436041f0a0c8c8deca6a05ebeaf529bf1de04839f93ac5e7c479807aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 624f3951181eb46fc47dea3d221554e98784c823e7069edb5dbd0dc826ac909b
MD5 e198680ac7483ff344af8577a1839c45
BLAKE2b-256 8218ff5734365623a8916e3a4037fcef1cd1782bfc14cf0992afe7940c5320bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 149d95d5e018bdd822e3f38c103b1a7c91f88d38a88aada5c4e9b3a73a244241
MD5 c97eaa239f128004506e4816e48b3d25
BLAKE2b-256 18ae40516739f99ab4c7ec3aaa5cc242d341fcb03a45d89edeeaabc5f69cb2cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97eb5942c7395a171cbfecc4ef6701fc3c403e762194683772df4c54cfbb2210
MD5 e77d3e550075c0998c13dca102a60973
BLAKE2b-256 017e62517dddcfce6d53a39543cd74d0dccfcbdf53967017c58af68822100272

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8a7517482667fb9f0ff1b2f16fe5829296ed7a655d04d68cd9711a4d8a4e708
MD5 6fbcc03d9b8260c0f1ca42ec6dc7e0ad
BLAKE2b-256 dbea67bfdb5465d5679e8ae8d68c11753aaf4f47e3e7264bad66dc2f2249e643

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad355e8308493f527d41154e9053b86a5be892b3b359a5c6d5d95cda23601cb2
MD5 43d76717c4c0c01f3839606fef8da9f6
BLAKE2b-256 00d49aee9e54f1809cec8ed5abd9bc31e8a9631d19460e3b8470145d25140106

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4806363144bb6e7297b8e95870e78d30a649fdc4e23fc84daa80c8ebd366ce44
MD5 a87d30fd9d90bc2f88fdcfe8128f40d5
BLAKE2b-256 f7ef2811def7ce3d8576b19e3929fff8f8f0d44bc5eb2e0fdecb2e6e6cc6c720

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bbf9b333f1568ef5da42bc96e18bf30fd7f8d54e9ae066d711056add508e415
MD5 af1c63883fa912ca51b58b7947ce82c4
BLAKE2b-256 b44da0cb31007f3ab6f1fd2a1b17057c7c349bc2baf8921a85c0180cc7be8011

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 600e0e9ca042878c7fdf189cf1b028fe2c1418cc9195f6cb9824eb6ed99cb938
MD5 f7daf241dfcec3cb12029056f95cfe18
BLAKE2b-256 4e47bf85dcf95f7a3a12bf223394a4f849430acd82633848d52def09fa3f46ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e41fd3b3cac850eaae78232f37325ed7d7436e11c471246b87b2cd294ec94853
MD5 36955b3275cbdb98a6b686fd6f977b22
BLAKE2b-256 1c2c2602392ddf2601d538ff11848b98621cd465d1a1ceb9db9e8043181f2f7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d4371de39319d05d3f482f372720b841c841b52f5385bd99c61ed69d55d9ab50
MD5 803a09a9fcef630ec4af4f710868cef9
BLAKE2b-256 63516b556192a04595b93e277a9ff71cd0cc06c21a7df98bcce5963fa0f5e36f

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 126.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6bb6bb41b14c95d4f2702bce9975fda4516f1db48e500102fc4d8119032ff045
MD5 3aa3f82d06d0b2dd6b34b0885842d9d2
BLAKE2b-256 0fdc9484127cc1aa213be398ed735f5f270eedcb0c0977303a6f6ddc46b60204

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-win_arm64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 131.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e2d5d5d798aba9a0e1fede8d853fa899ce2cb930ec0857365f700dffc2c7af6a
MD5 cc60e470f3c5c2de8ad9772ef6ce7d21
BLAKE2b-256 79b75e5e8d77bd4ea02a6ac54c42c818afb01dd31961be8a574eb79f1d2cfb1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-win_amd64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: orjson-3.11.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 135.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 87255b88756eab4a68ec61837ca754e5d10fa8bc47dc57f75cedfeaec358d54c
MD5 c10e0cabfb82fd38b4fee7bbf7a97020
BLAKE2b-256 5406dc3491489efd651fef99c5908e13951abd1aead1257c67f16135f95ce209

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-win32.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c36e524af1d29982e9b190573677ea02781456b2e537d5840e4538a5ec41907
MD5 919da154f1275f05465b63803b23b778
BLAKE2b-256 ade4c132fa0c67afbb3eb88274fa98df9ac1f631a675e7877037c611805a4413

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b2427ed5791619851c52a1261b45c233930977e7de8cf36de05636c708fa905
MD5 d521f62f8357605f3e42f47acc945248
BLAKE2b-256 8055a8f682f64833e3a649f620eafefee175cbfeb9854fc5b710b90c3bca45df

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 842289889de515421f3f224ef9c1f1efb199a32d76d8d2ca2706fa8afe749549
MD5 35b0b07447bb4eea481886876dc8fae8
BLAKE2b-256 76b35a4801803ab2e2e2d703bce1a56540d9f99a9143fbec7bf63d225044fef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad73ede24f9083614d6c4ca9a85fe70e33be7bf047ec586ee2363bc7418fe4d7
MD5 9fcfccb85901359e4d5d9ec481e12039
BLAKE2b-256 c435a6d582766d351f87fc0a22ad740a641b0a8e6fc47515e8614d2e4790ae10

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95713e5fc8af84d8edc75b785d2386f653b63d62b16d681687746734b4dfc0be
MD5 50831577e8761672f0c439f7a7978e1e
BLAKE2b-256 b518bf8581eaae0b941b44efe14fee7b7862c3382fbc9a0842132cfc7cf5ecf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d40d46f348c0321df01507f92b95a377240c4ec31985225a6668f10e2676f9a
MD5 dce8bf1828e3db0709a3b8099607ccee
BLAKE2b-256 1eef75519d039e5ae6b0f34d0336854d55544ba903e21bf56c83adc51cd8bf82

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01ee5487fefee21e6910da4c2ee9eef005bee568a0879834df86f888d2ffbdd9
MD5 bd5e450425195236c6e99e5366aba818
BLAKE2b-256 bf0493303776c8890e422a5847dd012b4853cdd88206b8bbd3edc292c90102d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d7feb0741ebb15204e748f26c9638e6665a5fa93c37a2c73d64f1669b0ddc63
MD5 d2d8e0a6ff878d56d5a0e23af1b1cfea
BLAKE2b-256 2843d1e94837543321c119dff277ae8e348562fe8c0fafbb648ef7cb0c67e521

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8873812c164a90a79f65368f8f96817e59e35d0cc02786a5356f0e2abed78040
MD5 f506c08ba621c2c14a76e427247b6363
BLAKE2b-256 eb1f465f66e93f434f968dd74d5b623eb62c657bdba2332f5a8be9f118bb74c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da9e5301f1c2caa2a9a4a303480d79c9ad73560b2e7761de742ab39fe59d9175
MD5 28b89ce9c99969bf6db0717a53ab334b
BLAKE2b-256 a2963e4d10a18866d1368f73c8c44b7fe37cc8a15c32f2a7620be3877d4c55a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5c3aedecfc1beb988c27c79d52ebefab93b6c3921dbec361167e6559aba2d36d
MD5 4a82fc6dd15b6c6ada2e24452c086550
BLAKE2b-256 37d7ffed10c7da677f2a9da307d491b9eb1d0125b0307019c4ad3d665fd31f4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5e59d23cd93ada23ec59a96f215139753fbfe3a4d989549bcb390f8c00370b39
MD5 32ada7d40219466f5be6508fa62a57c4
BLAKE2b-256 631d1ea6005fffb56715fd48f632611e163d1604e8316a5bad2288bee9a1c9eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 131.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 23ef7abc7fca96632d8174ac115e668c1e931b8fe4dde586e92a500bf1914dcc
MD5 dfd15526e8b29a3a83af4a3bee36a9ed
BLAKE2b-256 e66918a778c9de3702b19880e73c9866b91cc85f904b885d816ba1ab318b223c

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-win_amd64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: orjson-3.11.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fa9627eba4e82f99ca6d29bc967f09aba446ee2b5a1ea728949ede73d313f5d3
MD5 bd8eba984382045af0decd0d86a9d64b
BLAKE2b-256 ef0e526db1395ccb74c3d59ac1660b9a325017096dc5643086b38f27662b4add

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-win32.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41bf25fb39a34cf8edb4398818523277ee7096689db352036a9e8437f2f3ee6b
MD5 37e9fac94deb7cac6eff37f5228a7541
BLAKE2b-256 ea96209d52db0cf1e10ed48d8c194841e383e23c2ced5a2ee766649fe0e32d02

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94f206766bf1ea30e1382e4890f763bd1eefddc580e08fec1ccdc20ddd95c827
MD5 8919b7a9b4116c161bae01cc8366b228
BLAKE2b-256 8511e8af3161a288f5c6a00c188fc729c7ba193b0cbc07309a1a29c004347c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d58c166a18f44cc9e2bad03a327dc2d1a3d2e85b847133cfbafd6bfc6719bd79
MD5 f8a1f54dc241c07bf7364cc3245547b4
BLAKE2b-256 d6ce36eb0f15978bb88e33a3480e1a3fb891caa0f189ba61ce7713e0ccdadabf

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c82e4f0b1c712477317434761fbc28b044c838b6b1240d895607441412371ac
MD5 38c49fd46a2ad5ee9b0611741e71d78b
BLAKE2b-256 29d0fd9ab96841b090d281c46df566b7f97bc6c8cd9aff3f3ebe99755895c406

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb6a03a678085f64b97f9d4a9ae69376ce91a3a9e9b56a82b1580d8e1d501aff
MD5 7225d91fd7a0dce2712a23eee9fc1811
BLAKE2b-256 c63ab31c8f0182a3e27f48e703f46e61bb769666cd0dac4700a73912d07a1417

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e10b4d65901da88845516ce9f7f9736f9638d19a1d483b3883dc0182e6e5edba
MD5 e87ef434fe4e0576328c581260f6e652
BLAKE2b-256 d2c2c7302afcbdfe8a891baae0e2cee091583a30e6fa613e8bdf33b0e9c8a8c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fdc3ae730541086158d549c97852e2eea6820665d4faf0f41bf99df41bc11ea
MD5 68edef07db0cf24791607cb103a4afe2
BLAKE2b-256 95f29f04f2874c625a9fb60f6918c33542320661255323c272e66f7dcce14df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65fd2f5730b1bf7f350c6dc896173d3460d235c4be007af73986d7cd9a2acd23
MD5 dd29ef9755d7628144d2cfce508eb127
BLAKE2b-256 876c9ddd5e609f443b2548c5e7df3c44d0e86df2c68587a0e20c50018cdec535

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3740bffd9816fc0326ddc406098a3a8f387e42223f5f455f2a02a9f834ead80c
MD5 7c1db11fb6e6e609be4d2cd7e0c092cb
BLAKE2b-256 02bdb551a05d0090eab0bf8008a13a14edc0f3c3e0236aa6f5b697760dd2817b

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a69ab657a4e6733133a3dca82768f2f8b884043714e8d2b9ba9f52b6efef5c44
MD5 bcec6923a2dd4ff21ad5bb4e43add873
BLAKE2b-256 441fda46563c08bef33c41fd63c660abcd2184b4d2b950c8686317d03b9f5f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e3aa2118a3ece0d25489cbe48498de8a5d580e42e8d9979f65bf47900a15aba1
MD5 ef72a03dccb3eee99f39d2d36003c849
BLAKE2b-256 e0305aed63d5af1c8b02fbd2a8d83e2a6c8455e30504c50dbf08c8b51403d873

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: orjson-3.11.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 131.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e2985ce8b8c42d00492d0ed79f2bd2b6460d00f2fa671dfde4bf2e02f49bf5c6
MD5 79652145f89f4a63f69c63a39bfd247c
BLAKE2b-256 84c713bed8834936ddb38a2f366aea9458ebb4fe80c459054e6a0cfbcae68e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-win_amd64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: orjson-3.11.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 135.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orjson-3.11.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb1c37c71cad991ef4d89c7a634b5ffb4447dbd7ae3ae13e8f5ee7f1775e7ab1
MD5 13b6aabcfce3b4c6bd912c23f5befa51
BLAKE2b-256 4de33a50e2401809db6800a2da31624a663768c67a76f227c4016e61d07d2f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-win32.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e18a5c15e764e5f3fc569b47872450b4bcea24f2a6354c0a0e95ad21045d5a9
MD5 62ccb1cbafd5377541d980f5ab66c372
BLAKE2b-256 d999d350e07175e92bf114f9e955722f3aa932c3fd3e94841199bb6fc4a87e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e0a700c4b82144b72946b6629968df9762552ee1344bfdb767fecdd634fbd5a
MD5 18ef8de716bb6a9e29f783d5d503a3f9
BLAKE2b-256 8e760c78bb6a30adce7f363054ef260d7236500070ce30739b1d2417a46c59f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 622463ab81d19ef3e06868b576551587de8e4d518892d1afab71e0fbc1f9cffc
MD5 81fdaa3f0af83bc43e4025f4c32c7e55
BLAKE2b-256 ab917d9e9c72a502810eff2f5ed59b9fcbf86aa066052f5a166aa68ced1a1e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bba5118143373a86f91dadb8df41d9457498226698ebdf8e11cbb54d5b0e802d
MD5 6346f1c0396f263cbaa875624396b85d
BLAKE2b-256 bf739424c616173c3e6fef7b739cbb3158f0d16b15d79f482ddf422c3edb96cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caa447f2b5356779d914658519c874cf3b7629e99e63391ed519c28c8aea4919
MD5 3a3a348d2a9efa0b1d0d675856ca9366
BLAKE2b-256 d17a76b8111154457ee5e95016039f9c5e44c180752f966080607a74f8965c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e3704d35e47d5bee811fb1cbd8599f0b4009b14d451c4c57be5a7e25eb89a13
MD5 f67904707eb39121a85afabdf806f0d4
BLAKE2b-256 83635b092e5cfa00c0a361704fff46778637007d73dae5ccffcb462e90f0f452

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80fd082f5dcc0e94657c144f1b2a3a6479c44ad50be216cf0c244e567f5eae19
MD5 6cb4b82f23b2afe258c194d8f93096f2
BLAKE2b-256 383b14bf796bb07b69c4fb690e72b8734fe71172de325101b52b57a827eadc09

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orjson-3.11.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0baa0ea43cfa5b008a28d3c07705cf3ada40e5d347f0f44994a64b1b7b4b5350
MD5 3e0fbae00567aa24049fc96e069a51fd
BLAKE2b-256 c4326cc2a8ccaa003c9fd1e1851e01ad6a90909cafce0949b5fda678173e552d

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b2eba969ea4203c177c7b38b36c69519e6067ee68c34dc37081fac74c796e10
MD5 2fbbd595cae07bb74a6337ac782c4323
BLAKE2b-256 01ca458c11205db897a66fa00b13360b4f62c2e837b8c14f2ed96b7d59f3f5bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af02ff34059ee9199a3546f123a6ab4c86caf1708c79042caf0820dc290a6d4f
MD5 df29405d56c045161001c97210227955
BLAKE2b-256 9013a49832a439ad8f7737fbde30fadf6ca6b5e3f6b74b0efa2c53b386525a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for orjson-3.11.4-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 405261b0a8c62bcbd8e2931c26fdc08714faf7025f45531541e2b29e544b545b
MD5 9de1ebfd5365db9bbee28f0786ad0ba8
BLAKE2b-256 1db308601f14923f4bacb92e920155873e69109c6b3354b27e9960a7a8c5600a

See more details on using hashes here.

Provenance

The following attestation bundles were made for orjson-3.11.4-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl:

Publisher: artifact.yaml on ijl/orjson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

3.12.0

65 files

3.11.9

74 files

3.11.8

74 files

3.11.7

74 files

3.11.6

74 files

3.11.5

87 files

This release

3.11.4 This release

87 files

3.11.3

83 files

3.11.2

83 files

3.11.1

83 files

3.11.0

72 files

3.10.18

72 files

3.10.17

72 files

3.10.16

68 files

3.10.15

79 files

3.10.14

75 files

3.10.13

75 files

3.10.12

75 files

3.10.11

58 files

3.10.10

58 files

3.10.9

57 files

3.10.8

57 files

3.10.7

57 files

3.10.6

53 files

3.10.5

46 files

3.10.4

46 files

3.10.3

46 files

3.10.2

46 files

3.10.1

51 files

3.10.0

51 files

3.9.15

50 files

3.9.14

50 files

3.9.13

50 files

3.9.12

50 files

3.9.11

50 files

3.9.10

50 files

3.9.9

50 files

3.9.8

50 files

3.9.7

60 files

3.9.6

60 files

3.9.5

60 files

3.9.4

56 files

3.9.3

56 files

3.9.2

51 files

3.9.1

46 files

3.9.0

46 files

3.8.14

46 files

3.8.13

46 files

3.8.12

46 files

3.8.11

51 files

3.8.10

59 files

3.8.9

49 files

3.8.8

49 files

3.8.7

44 files

3.8.6

44 files

3.8.5

44 files

3.8.4

44 files

3.8.3

44 files

3.8.2

49 files

3.8.1

49 files

3.8.0

45 files

3.7.12

42 files

3.7.11

42 files

3.7.10

38 files

3.7.9

38 files

3.7.8

38 files

3.7.7

38 files

3.7.6

37 files

3.7.5

37 files

3.7.4

37 files

3.7.3

37 files

3.7.2

33 files

3.7.1

33 files

3.7.0

33 files

3.6.9

32 files

3.6.8

32 files

3.6.7

32 files

3.6.6

24 files

3.6.5

24 files

3.6.4

24 files

3.6.3

21 files

3.6.2

21 files

3.6.1

27 files

3.6.0

24 files

3.5.4

24 files

3.5.3

23 files

3.5.2

23 files

3.5.1

23 files

3.5.0

19 files

3.4.8

19 files

3.4.7

19 files

3.4.6

17 files

3.4.5

17 files

3.4.4

17 files

3.4.3

17 files

3.4.2

17 files

3.4.1

16 files

3.4.0

15 files

3.3.1

18 files

3.3.0

15 files

3.2.2

15 files

3.2.1

15 files

3.2.0

15 files

3.1.2

15 files

3.1.1

15 files

3.1.0

15 files

3.0.2

15 files

3.0.1

15 files

3.0.0

15 files

2.6.8

15 files

2.6.7

15 files

2.6.6

15 files

2.6.5

15 files

2.6.4

15 files

2.6.3

15 files

2.6.2

15 files

2.6.1

15 files

2.6.0

14 files

2.5.2

14 files

2.5.1

11 files

2.5.0

11 files

2.4.0

11 files

2.3.0

11 files

2.2.2

11 files

2.2.1

11 files

2.2.0

11 files

2.1.4

10 files

2.1.3

10 files

2.1.2

8 files

2.1.1

8 files

2.1.0

11 files

2.0.11

11 files

2.0.10

10 files

2.0.9

10 files

2.0.8

10 files

2.0.7

10 files

2.0.6

9 files

2.0.5

9 files

2.0.4

9 files

2.0.3

9 files

2.0.2

9 files

2.0.1

9 files

2.0.0

4 files

1.3.1

3 files

1.3.0

3 files

1.2.1

3 files

1.2.0

3 files

1.1.0

3 files

1.0.1

1 file

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page