Skip to main content

Python sorted dictionary: a Python dictionary in which the keys are always in ascending order

Project description

pysorteddict

Provides SortedDict, which is a Python sorted dictionary: a Python dictionary in which the keys are always in ascending order.

Hatch project ci

Documentation

View the documentation on GitHub Pages.

Installation

View the project on PyPI.

pip install pysorteddict

pysorteddict requires Python 3.10 or newer. Built distributions (binary wheels) are provided for most 64-bit Linux, macOS and Windows hosts. If you are on any other platform, install the Python development headers and libraries before running the above command.

Usage

All keys in a sorted dictionary must be of the same type, which is determined when the first key-value pair is inserted into it. The values, though, can be of any type.

import json

from pysorteddict import SortedDict

sorted_dict = SortedDict()
sorted_dict["honestly"] = "weight"
sorted_dict["gain is"] = 31.692
sorted_dict["times"] = "easier than"
sorted_dict["losing"] = ["weight"]
assert sorted_dict.key_type is str
print(json.dumps(sorted_dict, indent=2, sort_keys=False))

The above Python script will output the keys in ascending order.

{
  "gain is": 31.692,
  "honestly": "weight",
  "losing": [
    "weight"
  ],
  "times": "easier than"
}

The following key types are supported.

  • bytes
  • float
  • int
  • str

Implementation Details

pysorteddict is implemented entirely in C++. SortedDict provides a Python interface to std::map<PyObject*, PyObject*, _>.

Project details


Download files

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

Source Distribution

pysorteddict-0.4.5.tar.gz (22.0 kB view details)

Uploaded Source

Built Distributions

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

pysorteddict-0.4.5-pp311-pypy311_pp73-win_amd64.whl (32.8 kB view details)

Uploaded PyPyWindows x86-64

pysorteddict-0.4.5-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pysorteddict-0.4.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (27.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pysorteddict-0.4.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (27.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pysorteddict-0.4.5-pp310-pypy310_pp73-win_amd64.whl (32.8 kB view details)

Uploaded PyPyWindows x86-64

pysorteddict-0.4.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pysorteddict-0.4.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (27.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pysorteddict-0.4.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (27.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pysorteddict-0.4.5-cp313-cp313-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pysorteddict-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pysorteddict-0.4.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pysorteddict-0.4.5-cp313-cp313-macosx_11_0_arm64.whl (28.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pysorteddict-0.4.5-cp313-cp313-macosx_10_13_x86_64.whl (28.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pysorteddict-0.4.5-cp312-cp312-win_amd64.whl (32.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pysorteddict-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pysorteddict-0.4.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pysorteddict-0.4.5-cp312-cp312-macosx_11_0_arm64.whl (28.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pysorteddict-0.4.5-cp312-cp312-macosx_10_13_x86_64.whl (28.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pysorteddict-0.4.5-cp311-cp311-win_amd64.whl (32.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pysorteddict-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pysorteddict-0.4.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (106.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pysorteddict-0.4.5-cp311-cp311-macosx_11_0_arm64.whl (28.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pysorteddict-0.4.5-cp311-cp311-macosx_10_9_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pysorteddict-0.4.5-cp310-cp310-win_amd64.whl (32.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pysorteddict-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pysorteddict-0.4.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pysorteddict-0.4.5-cp310-cp310-macosx_11_0_arm64.whl (28.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pysorteddict-0.4.5-cp310-cp310-macosx_10_9_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pysorteddict-0.4.5.tar.gz.

File metadata

  • Download URL: pysorteddict-0.4.5.tar.gz
  • Upload date:
  • Size: 22.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for pysorteddict-0.4.5.tar.gz
Algorithm Hash digest
SHA256 5935b519b567b86b65fa2c2a4fe0fd409014a882485bb6fbccfc3e91395e7fcc
MD5 31a4b59b76b014464c9f50c318b993b8
BLAKE2b-256 29d7b7118c3ede43103a6b96659f54d898272a7a73a9a455a4590bde74b59f6c

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8ff863c59cf2d3a867d6323052b781ee436f5efa2bb0cf71592d22cd6ece6ebe
MD5 549950c81e6ee852f8994a60d78d22a3
BLAKE2b-256 6689635e23aa73f77b40dcfbc4f32b13e4a9582f9d901eb37a817f7efd17be00

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75c53a00f1caf4e43072bf54e2293bc66ac56c8db9ed756090adc81c548677e3
MD5 e84df402c52c41f28a95087b4a3cdbe9
BLAKE2b-256 7a9ec9307b431823d1cf069c4eab273f22afc58ce8a671bd04eb0d5f6223f9e7

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2c425b7ab882422434c4b73f4b253fb05ac231d88bd3b2b4e115edb883e7cb7
MD5 d44a203fcc0fac716286eca576ee31f7
BLAKE2b-256 f26ca6038b851bbe079832fb727b07f4a5db4ad3e72111101b4dbfdc5b4e3542

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c8c92facb3c5355829f4246bfa7c6526c586ba504a23af6d7edd78518c626056
MD5 91a243a6e03e09963b1a77e926355558
BLAKE2b-256 d84792c95b008c19fd7df4e4e69bc27973a29e2f10e6e0157bba4de9686a090f

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 509dc07bff3ef38082099395a8a00d03ce6f7dce0f6b837f26c48ddda9e8a0bb
MD5 4b3197343ab59cf4789777e98636277a
BLAKE2b-256 c4b624bc210bfa393cc43e12525bcdcfa6ad41471cd1f4657b6da48fe454865a

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d565da19727bafd36d89d76331e5a49b63d6c722a73d5564250162b14a2db640
MD5 a05f3bf498a1f3bfb024ff5dcf364806
BLAKE2b-256 ac2451d6b61c4025cb91c091a4bbb908e2d16710ddc93fbf53caf020e74971de

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d68d21972a146b4da43abc0425921965ff67fbcf508f131640c34f2aa950f3d
MD5 898f20cfa79cfe885368087faf8b70d3
BLAKE2b-256 4abd3e9dfe9a0dd591835448a39ce0c7214b8cd1e710d2bbbb5c2f89b7bf3cc8

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 019bd47c7f3e52001cd4ea98b747b0cb979e3f0b879595aaa271c200cbb21843
MD5 c9a077128781345a494d33784a0f8a03
BLAKE2b-256 30070217fb7336317b58ba1faa028fe6c99586969b768152fde32d66ea8d917d

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef48b0123a7413ce0093f0562e90faad926731893d0203640c78293f937580d2
MD5 97b87746596d513dd3b4bbc9cfd14282
BLAKE2b-256 fae786018b8388685015ce2ee951be5535dfd656a2db11b3aac5d2d816fff7ab

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acb861bea8f6b71d8103f61a6834d86f2788837745d980237024377be3ecb458
MD5 ee367b6bdec4339e636d96c07f8aacca
BLAKE2b-256 4345d2475de8dabfaf6bb1f9a0feec30f79164d67c8604368025dfdcb0fd3df6

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8490a778704ab2346da31e5a21de855a0cd56cbfe27311e18d7a93c64a4023e
MD5 6b2b9a5cd73f6a640fa23b20f0066722
BLAKE2b-256 e95ed861cabce83b24d57b873d1bd795316da2b12baefa4136e734ac9b5d0353

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fd5656a58a038444384b5de1a0059b43483350e3e142b237b0bdcaf5382a8e6
MD5 669a2b98deee193e70b2c64de8c209bb
BLAKE2b-256 26ea1d27e024ffb7b91d62ef1b1ce4709a01cefa065931807373d9c36d711a7d

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4b93187b6f0b8ad8ea6ea77d03d2ab8c5ff62a58e42282f3b53974eab543dbc9
MD5 42397d9e1b8438183f05db13e6608843
BLAKE2b-256 a8d347b9675428e3add6ea14abe76c308c5595fa2f937337ce52a7dd659dc06c

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d95c479b54b404c98436ed8b0afc8162b6fceefe510fe1e4b74ec8720bb36a8a
MD5 e4977572348f85bd936aea08ffa3e70c
BLAKE2b-256 7ffe708b8995f6e9d29c4a6cb7bf74163ebf095ecde0e7e0c968609023754b38

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43991fcbc54fc84e9c4adcbc35c88efccbdceb18a4af92b75ebef260e98642f9
MD5 f978934333f8f5edceadd106e384747f
BLAKE2b-256 cf02aa78485e33100eb1c381371881356bb25ce0a290d6dcf222678ff38bba8d

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 823dafa10c10a2def6f225b51d035b9080539ca68d661451116307a300fb8b75
MD5 17a78644306fc41456bf8b083cfdc128
BLAKE2b-256 8773a3e7c54e977c0d329e96041940d8c70ae9b80cc28d76c908d48131b7cb90

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f237cd47ea779f06adac1fc282673a96ca7320809c8bf9aa736a833a83990f5b
MD5 fa102348fd5aef7b7d6c0f28634350f8
BLAKE2b-256 de2260a36be0ddb9f75faa8aed09a945202fe28a7d55125fd90da9190d2d5020

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b721e81a16b8bf221881fbce081316b1d1ccaec49d66ee208eeec952e14fde6d
MD5 2e27ab30ce8280be6e407a34e71d4af2
BLAKE2b-256 8ef2984583c131dc9665b28fe78503f06af66097f871c73ed51d57904ad3de3c

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 420bf830a0cb217171ccc038250ae1563e595765307bed505bc907fcae9d2184
MD5 22b22f18bab72cdaf330ee38f39a69ef
BLAKE2b-256 ec233bd5c1523f4ca542f67ea16aa7ec4c743b8c79f4ddba995dd862a3b8e7fa

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e40e00efc4852abc52a24f2c7caf53897c102d5571a84f739b53a7e19d35a652
MD5 8f363607df1969bf7d0ec4fe09ec0051
BLAKE2b-256 64da4c286b5b77e76c6f42c31052e9fe9f00edacb4279a51a2080c2ef5b320f5

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df93f96904d3a867fb66e2029848baf83385c8396cb7dd55f2b19a53f5d320d5
MD5 702d5acfb2380db25936bd165eff91e2
BLAKE2b-256 4d15047013721936d746278fcc763a2f568978caee3a72129d051585eb555f70

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60d5fadd0468c45d9113116380c0f26a445173263a7aeac7533edbd7b5bf3984
MD5 acbe4b2e2e21c9ea6b9796b15944f992
BLAKE2b-256 d0b963169d1b517d599d2af556e56d5d4cf6abe54d4503b153d61b72f46086f0

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26af95803e8a4db86b555104c680e2e14a674ef597b679a926a29308c6da6b6b
MD5 59589a071f177a40f4e91d6f8a27c8ef
BLAKE2b-256 a3b9be780e675ebd30ee6ee26448fdb6cb6e4afd55878c6561e62c467a79ca45

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a016a960cf758b712c4355c598c3f7e34851effd26c7d07bba4fe54bb29707be
MD5 4f96909c6568fc849207fc4f6f2209b4
BLAKE2b-256 1fb58800196bf4bf94e25d992ad4131fd6ab4c69a4a34566aa11632fbbc59d0a

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e4a19c903bb0530e1a0e984c7dfaadbf0d0f4538167e5fc01a919687c961b71
MD5 6d84b1d55530f833d717f8f398425d9a
BLAKE2b-256 de657e9d6ca646154ae5bf1bfd4c13f6ef62a32f87d7ddf3d86df0f794d4e659

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba3855d251b2ad2f330f53f0024796b95782a8779b75a5a715fa6d8f653a39d7
MD5 172d40d3a381666ea0df35dd48389208
BLAKE2b-256 6ec049a82df7ffe04fcd2af2d518dd6bc1c6e5084e4057ab7cfd36227c42a5ba

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c379ccb3b36c4f5ec493e9b5931e4502f232bfb9d339e15436a6168b4075ebf
MD5 8f5a840eb810a453fe78e852c04ea76a
BLAKE2b-256 7558906bc6e7136ac14dadaec48402f55b547767e53ffcbae06cf43c55031b75

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.4.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9180259e5e04849a7924543fcb8d275a2c12095a2af22abf2e29b8ac7a5593e9
MD5 acc7f7533e95b0a3c540d71e01ee700e
BLAKE2b-256 e9d36b605b847696e4194c599d419564a554dd049bec9af2c23dbe7301d9a2f0

See more details on using hashes here.

Supported by

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