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

pysorteddict is available on PyPI. It requires Python 3.10 or newer. Built distributions (binary wheels) are provided for 64-bit Linux, macOS and Windows, so installing is straightforward.

pip install pysorteddict

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.4.tar.gz (22.1 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.4-pp311-pypy311_pp73-win_amd64.whl (32.8 kB view details)

Uploaded PyPyWindows x86-64

pysorteddict-0.4.4-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.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (27.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

pysorteddict-0.4.4-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.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (27.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pysorteddict-0.4.4-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.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.6 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

pysorteddict-0.4.4-cp312-cp312-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pysorteddict-0.4.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (28.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pysorteddict-0.4.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (28.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pysorteddict-0.4.4-cp311-cp311-macosx_10_9_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pysorteddict-0.4.4-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.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.6 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pysorteddict-0.4.4-cp310-cp310-macosx_10_9_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pysorteddict-0.4.4.tar.gz
  • Upload date:
  • Size: 22.1 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.4.tar.gz
Algorithm Hash digest
SHA256 d74430bf6ea250b1f85d16d65e3e9ac0ec9f41e6be32b48e18165a81bae01337
MD5 435018a3ae84b354bc16ca6480b2d36f
BLAKE2b-256 9e9552f8698ddcd7c47223d84db9285ed1f1cc9db123bc3f27e869c8910edd1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 12f7ac5a163c0fa65f65e78cdd099d67efb316d83915265d9b6a2cd80bbe0a47
MD5 51cd06f448d716ebf2ef32578c7e84fc
BLAKE2b-256 07403ecfe1f41877400d2eb3842b97b5d8feb31322a2c0d4787733a062817676

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.4-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.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27b353d6b68b9f40a2f03c0f0e141f32561d3ee192c3215f08c43cc18f8d880d
MD5 25ef8f7be02a68fb0da55e71db904940
BLAKE2b-256 563dae91efffad8ddb4c2941795c23614fb247c0dc43d1b1a9b214e749a55c29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2abde8f980627044fa3e42f9d7d52ad429f9fcec117c450e68d294c49b29ca41
MD5 d233dfc4d89354259e13839c6c08948c
BLAKE2b-256 c63178ded6f05e87c0c392239683b0007bcc149060d9cd0426f68faa2ef3d3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 43e5d9548f25408d90792315528d15bd4049f5a7822c05c498cbeed820e99a71
MD5 f4ac0e22ad62a537f7b44283653a4972
BLAKE2b-256 428dc884104a594a5cb7f518b07d5f4d02ed36391515aa5e59e13f26a2c27b01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 06842ce11452453724f1b39c70d551feff2e16b35a5957e7b9031608b98f2dcb
MD5 c4c5c19a9d161b987a96a7c5da0342a7
BLAKE2b-256 b6c1a355ffa2a052220bdd9424551a69f754cd88cf77dfac706a93e6d571733b

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.4-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.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 080f34a05eba27923f9540e35c6b3f721dd5752c631f5d2fb9c90d11e4332c07
MD5 83266c03f14872df5d499056a958974f
BLAKE2b-256 07f6df39cf89270384199e65209f19097df5421b1df3d4b6cfae40b34699d76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ec32d191dc804799fef9d0002635707959d9dec45a1bdcc640efb113393aa95
MD5 819cf532243d532daf356e79bf4e1859
BLAKE2b-256 d1f83f8c126940f3dba2291076fb85de501b7f72db691205ffb48f8784e0f0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a3e8d59e7711a418bf54e2e9ebed0991ba21aef55baee6d807cd83b0becb3763
MD5 4325545500b28ee469592530a6eb9b56
BLAKE2b-256 cdafb7b3325df4daf019e4f817e82da8383dc7cb83562349989eb28e2740875c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 73f2a494ff13f8d43f2e0e98d246597caab6400c1bd12be7249d84d06b7992aa
MD5 b3b50b4d05c205c89d914833ece90fd3
BLAKE2b-256 c09bc69c1953b5a27dd33109f4c8a6878764a46d3f5620d6ea12d6637814e93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e078a9698fcc1ad3b0eae56f59c49a6700eed805fa41387ca7a953cabafa9b89
MD5 cc8c66e04b80bf7c7759d8b9ab93e82f
BLAKE2b-256 8488183d7fa22d6e4255fbded5d3c3633c8b87e5d9654238f7c62a5ff76a4e83

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.4-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.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0edb48ce80b4e774027126ba97f4fbd99ccc04f2c1821970418d446769dc1e70
MD5 229ae3d693197dbe8cf5d19b2092a547
BLAKE2b-256 9c1300a2b8a84b2a7386c52ab36ec92fe1983d99e7e9ad571a912ea334b31004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97315efa282362b1e60b7256768bc4dac08db8d8778f4efc5146076197507140
MD5 6710982c3dd98ab39bd252c2ef90eea6
BLAKE2b-256 8c8ce960080045b19c48f28ba2fe97ae8332b3d1a85d2d31a2277875675b9017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ffa121f7f6544a738e14723fd8d1022eb453515cd094dcebab6a6cf65e12e2c8
MD5 b6175b00979a806dc691cf3553b0ff91
BLAKE2b-256 ba71a5cc0cea3d4393ca35b29a39c4a63dddcc907c4b8f46f88ed8d4a159e086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d117a05be391128b7b7526ee286a8c966df3e21f66b7866da3a761c69cda5248
MD5 9f52df91419f6253af945c694736a465
BLAKE2b-256 aef820c0fc618d0df9f08d947fa068b44afc6f8962c628dac1102f5e183977f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f7d1a0c086e813cb5efc91ccc5f7ad79485d218f3a66a21d2944a76fe89d2a5
MD5 6c92c638d389bff4cbe4a72c23c0cad3
BLAKE2b-256 3976859f0a61805b0e893751b02757665cebd05f630c33602376501637c7c4e9

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.4-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.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad3ffc78039e1369a4b7b29fbb3014d50f0b4a999c453073a5d9a3b0dda01894
MD5 18a464e9a8d9348eddf9a7c957d03a73
BLAKE2b-256 79ae3200509a2f004ea9547a25409fc9a3dfc1a897151b4c9b6d7a162fc781ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd3ce98a8e9bec6c72db797b97dfb28d4789ef940f295f36cfebf5938c26274a
MD5 6065cce90fa9d5df395f882f83793cc3
BLAKE2b-256 72767104f8ae4f9ca875caaa0d0b143c7c10adcc3f8d188b0193b38529befa2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 01e43b754c9e62dbf9c2e08130d2a13093e993be1ee42158c33110743840e134
MD5 4f74db398d46a645f06ad6f1e5decd06
BLAKE2b-256 172946e3a81d401140ac1e28b0e84645297d510b20852e1618c46238eb4e722e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 abef6494d04a6d259c540f1c40e3e0a9f31e0b3a887686f3ba025b7f0ba71a52
MD5 4b7bd466a07a999a13f7f1c74d6cf8f6
BLAKE2b-256 45da2e9dd8122e611eaf690cc85198e97c941d6c1eb4b0649abcd5432ecfc8b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 016088d12706764a3229ceaa18e98d6ffdde82dc38385cfe56ce6df81a4c3c1e
MD5 2166f947f376d6d7e626f5557937a3c0
BLAKE2b-256 332f610b6d8b7524f39310868b3aca4bba80411fbbac822d2843bcef610d7474

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.4-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.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3874177f16f4e94400759a577e25c5288d0869bdc482fb7316f154edc15f27ca
MD5 749c0ba20ca595db0c23763802878343
BLAKE2b-256 fa108fc5c20967131e66a4bafc8205be5c44474b4cb4ba51736561ee56283e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40f75f4af41a74ac21106b9c39b1296d46aa673ba7e4346419291a8fbe8118a8
MD5 fadc3ded4a0b48a6705a3d6186fb5595
BLAKE2b-256 d5170d419be03ae4730ea561056539ed36b9917aa30ff807d32dd45131918c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c988434cb4aa9e75bfae15b9cf108713438d5fa5c41177b0ef09d18ecd666f6d
MD5 5205bf63a964b9a36e9330a297a11f79
BLAKE2b-256 d29fd1aecd6e9b5e2b3828c988f5326b8b9dc0ae6105c6acaa8e30abad5a8942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0d67bd019bc99cb253d32f7fd8cc0a3e942f84bff0b8dca79ec77f1c81008be
MD5 36c5764131a5bb5f366fcd86871b269a
BLAKE2b-256 cbb4e9c1d707860553ccfcc136a42bec6c62ef2910e94a6a1d091d831f0a5832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15d0b1b7ee02afe7d9828332c71876468533e0ddffb13e0c37c60f7a23e30fb8
MD5 2a9527c38e47ff82c927f0a8fa9a5474
BLAKE2b-256 9505da06865637521354faa810870cf44c9ccfc8da7208fe9bcb369584a6af1a

See more details on using hashes here.

File details

Details for the file pysorteddict-0.4.4-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.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f89705614dc74fa847ece8ffe701900315722eb54409cd526c39d7f12671dfb6
MD5 5b3d311a6bb3565a646e908f47aed025
BLAKE2b-256 971e58c0346550d76ec9768211fbfddc0d7beb2a8c1d0285fac86fbf6299957a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ee6ae915322ee5bfcf3d0b54d387cd544da0a7cc11bed9985966fb7fd53c461
MD5 61580f7a6165ba08e64fbc94950297ff
BLAKE2b-256 94afcb9a4e22fb56166a632db8665ba23288afeaa84a8f59627c4ebe840a339d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.4.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76aa507b3aa54c99c9ab705c51e7dbd7b4bdd941c4cfbd419418226db55e62ed
MD5 83f77a2276a6703247722d20635e4762
BLAKE2b-256 f9a7434eafbad2996d7b44f245c63259951e930deb9bd4bd5ad7b1eb3c4b46fa

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