Skip to main content

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

Project description

pysorteddict

Provides SortedDict. It's like Python's dict, but the keys are always in ascending order.

Hatch project

style test package

Installation

pysorteddict is available on PyPI. It requires Python 3.10 or newer. Built distributions (binary wheels) are provided for 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 must be passed to the constructor. The values, though, can be of any type.

from pysorteddict import SortedDict

sorted_dict = SortedDict(int)
sorted_dict[5659] = "gaining weight is"
sorted_dict[1992] = 31.692
sorted_dict[24274] = "times easier than"
sorted_dict[9765] = ["losing", "weight"]
print(sorted_dict)

This program should output {1992: 31.692, 5659: 'gaining weight is', 9765: ['losing', 'weight'], 24274: 'times easier than'}. Note that the keys are in ascending order.

Implementation Details

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

Documentation

class pysorteddict.SortedDict(key_type)

Constructor. Create a new sorted dictionary in which the keys are of type key_type. As of the current version, key_type must be int. Support for some more types will be added in due course.

len(d)

Return the number of key-value pairs in a sorted dictionary d.

d[key]

Return the value mapped to key in a sorted dictionary d.

  • If key is not an instance of key_type passed to the constructor, raise TypeError.
  • If key is not present in d, raise KeyError.

d[key] = value

Map value to key in a sorted dictionary d, overwriting the previously-mapped value (if any).

  • If key is not an instance of key_type passed to the constructor, raise TypeError.

del d[key]

Remove key and the value mapped to it from a sorted dictionary d.

  • If key is not present in d, raise KeyError.

str(d)

Return a human-readable representation of a sorted dictionary d.

d.items()

Return the list of key-value pairs in a sorted dictionary d. This list will be sorted.

d.keys()

Return the list of keys in a sorted dictionary d. This list will be sorted.

d.values()

Return the list of values in a sorted dictionary d. The order of the values will be such that the keys they are mapped to will be in ascending order.

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.0.5.tar.gz (18.3 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.0.5-pp310-pypy310_pp73-win_amd64.whl (30.1 kB view details)

Uploaded PyPyWindows x86-64

pysorteddict-0.0.5-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.0 kB view details)

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

pysorteddict-0.0.5-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

pysorteddict-0.0.5-cp313-cp313-win_amd64.whl (30.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pysorteddict-0.0.5-cp313-cp313-win32.whl (29.3 kB view details)

Uploaded CPython 3.13Windows x86

pysorteddict-0.0.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.0.5-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pysorteddict-0.0.5-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.0 kB view details)

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

pysorteddict-0.0.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

pysorteddict-0.0.5-cp313-cp313-macosx_10_13_universal2.whl (36.7 kB view details)

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

pysorteddict-0.0.5-cp312-cp312-win_amd64.whl (30.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pysorteddict-0.0.5-cp312-cp312-win32.whl (29.3 kB view details)

Uploaded CPython 3.12Windows x86

pysorteddict-0.0.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.0.5-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pysorteddict-0.0.5-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.2 kB view details)

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

pysorteddict-0.0.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

pysorteddict-0.0.5-cp312-cp312-macosx_10_13_universal2.whl (36.8 kB view details)

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

pysorteddict-0.0.5-cp311-cp311-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pysorteddict-0.0.5-cp311-cp311-win32.whl (29.2 kB view details)

Uploaded CPython 3.11Windows x86

pysorteddict-0.0.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.0.5-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pysorteddict-0.0.5-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (87.8 kB view details)

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

pysorteddict-0.0.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (86.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

pysorteddict-0.0.5-cp311-cp311-macosx_10_9_universal2.whl (36.6 kB view details)

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

pysorteddict-0.0.5-cp310-cp310-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pysorteddict-0.0.5-cp310-cp310-win32.whl (29.2 kB view details)

Uploaded CPython 3.10Windows x86

pysorteddict-0.0.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.0.5-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pysorteddict-0.0.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (87.2 kB view details)

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

pysorteddict-0.0.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (85.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

pysorteddict-0.0.5-cp310-cp310-macosx_10_9_universal2.whl (36.6 kB view details)

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

File details

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

File metadata

  • Download URL: pysorteddict-0.0.5.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pysorteddict-0.0.5.tar.gz
Algorithm Hash digest
SHA256 9cd70cc414d1ce23bc4983567702ef23bfb4d2e48569c2150d3dd95231df1c7d
MD5 cfd0d956835d90d64bb7f556eb409040
BLAKE2b-256 759986192e7a284fbc957644126acd685646376c58757432a971ebde6d079bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e14ae8ea77b6e5dd5022d6161000fdd0b20447c0a1175756107f43b6f13bd2e0
MD5 ea1916d981bb195bed34505df72106c4
BLAKE2b-256 f7bfbe5e39a0150e54ee044e439a12367c137a7a6ae188c5a22c097feabc1f08

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50b14fe002a8f735b86a5baa8058a72739390a40683fcd43f92d294743f1f0a7
MD5 716854e75ab45eb97d71dfca32d7cc91
BLAKE2b-256 72a3f0297d950dd217374f07d9208ae0b47f412589ecc1db7ece3e876fd3045e

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63b3d68c76a7e2b572fe5de6f1aa9914070289c85bccfbb98e7203c4da2f44f0
MD5 20b49e427424cbf62d32db6e398d598c
BLAKE2b-256 303652a50419ec93888664468007b0e93a64e43d11a33133843d03546d77fd71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66d077b84c7730b239b5771a858afed01b9a2c5e16b107d189fec3972296128d
MD5 3484199bfc20f2bbdac0ee857b33d80a
BLAKE2b-256 7e3863dcca1aecc618e17aceaf95dfa34c56bec08ee621feb16d00b3a56cf72e

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: pysorteddict-0.0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 29.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pysorteddict-0.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0f65782894d3d34e9f55734ee0b9aea2000da6adac0ef78ddddb8d33953da31b
MD5 2b27c70f61f39b078e878c5107085530
BLAKE2b-256 71591db106c63964309f1235086a98ef47adbf5c04657ca6af67afcbe790234b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a35fe58cefb8e5075638d9d4cf388062f40c59e2322d824f1f6af6053ceb4e9
MD5 601c7c6f99e8592c44c60f88d5f5503d
BLAKE2b-256 67d9a8a61d52537fd57680546e05b67dae6352b5d1c74995c4df387d7214807f

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 045f0e7639e3f81a48dcee0340fe34fa5ff30c1103ecabebe53369ebc2310202
MD5 7b315dbf171de1037a7c71f93ac4f961
BLAKE2b-256 1f3338968c58ec3322f3678ac2478092ac5393aeb3fc5f6f4a1efb5788fb5dbe

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf4f4d2512e5f7741ebcf9e5309a0693b4f7ab65dafba95b7ef1ef5ac90e0a61
MD5 ad91b8b6ca8157f16626872462a96f72
BLAKE2b-256 cfd1a79f09298cba84f10414e21bc24cc4b4c3e681edc32c6b23176c7b3f2ed8

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9a26770ccdca23c36ceb3a6f2b2671344086835766249143567184221c5ad51
MD5 df55039518ee43762a0d95e4173c83ab
BLAKE2b-256 07060bbbd665691c84f11d2dcf2079e0927286945206721995c3024c55cb5701

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 13adc9eebd78e7faf2685bbe0047aa10a51d4a65943bc604b9b33c65f7ef9a71
MD5 d058ae289d651d2d47dab31df87611d6
BLAKE2b-256 5594dad23de51fa6acffb8dd48cd9f7cfd0e9190c8700eab68444d853b1e5530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 671d2f3d1a2266c9ccca2058e1a863057f20b26b6cb665c7e039c77b21ee78b8
MD5 4aabb416aa401df2adce7e8db9570d12
BLAKE2b-256 526fbb6c2558de4e1cb5aed2bbbdb8a4c3e25b36afd208f791bad96e75cdfaf9

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: pysorteddict-0.0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 29.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pysorteddict-0.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 06914df8726f7952a0ea4b8fe1fea273492049938785cd9e6a79422ebc0e1881
MD5 a19588added77e4385c2f4af50a20ad7
BLAKE2b-256 da4d0458bc0525d1b15504b66b2c98bf102c63345c32cb35793c60fd0bedccb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b73a2ca757ff85a53b018d43c2788019792b65e42dc1716ba9578a4bec7168d3
MD5 d2698728900094185501373f94eb2090
BLAKE2b-256 eac2a653a269d270a0b872fd52fe6ad18f778d3f5012921f19638d6590d4c261

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf49ac3ba40fd4ffda0cb05339d0a10641b9fffd22702585f1cc7ca72cdc5622
MD5 9251b0ff6bcf8edc1607ddc535150ecc
BLAKE2b-256 a7c41a49a089089a718915a2b9cffbde0ba0ed92d3707a5ea2e4232045265710

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0804488dc3a5abce4feae9e47699ec3f4a8dd2e2595531f9d20dd72e7e85b7a
MD5 11d5c976787c510fd61edafd373f0b52
BLAKE2b-256 5f0b825d156efbda0603f84d53ce3e99d7e5e7c27e0ea4504304f59b502079b6

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9247cc6602da5a1cec84e6d74787d316ac8ab522795c0d0c1dad32749c0289ba
MD5 2c0b73c37da12be0d9aea03b47a08784
BLAKE2b-256 63f7bfee5fecff35314cd49db6b0afdeafb31b607e7f9a2ebb1ea2c3e7c5b051

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0929fdb0e926ce722518ae74c31b21143c793fd33f76c2c5ff8a44b5d4da278e
MD5 adfec69016f33e2d58447ddab1666abd
BLAKE2b-256 1a8a4fe0dd3363aa5e7b5b7a7dd26539e01ba5b32c7cdb2e7358938ee27e8642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3a987637d22ecdba977cbd9ea07a6839b85f5015d57ae6c595943a4b6f01a87
MD5 63f9c1bace6526b3a4a64fe9f008f77c
BLAKE2b-256 0a752948d0f27dbce9cbd7f6b67c081176a7e206f38fbbd64da84f39d89fe1f7

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: pysorteddict-0.0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pysorteddict-0.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b9af248e20b2b6941dbfb1290e12306fa18853fdebda55df135d512f9ab92896
MD5 de199db449f1fc003040827c91ecafaf
BLAKE2b-256 8154dee35e104ef9a12e7363fd7f5457b1cbd21d27987b8429d971f1fcaa5e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bdd497ccc926f9051d69147fe20d34c70efbeba91f2200dfe7c7b29e21d5c7a
MD5 6c1bda27df5460b1cffc8a5782abd595
BLAKE2b-256 c337ea57ffc0e0103736b4e9196f001652b3135f52251dde1027fa79b5ce6361

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d30d93c2b9471230e71ac10f418d2bf2eae441d91493e2120a0925742f8df366
MD5 29cb1307b2dc0ba6fb6a732d4c3197b2
BLAKE2b-256 80eacc02157c96b5b9dc31fa48f4ffc9787bcf7d1e0ac543e53c9b02d44d293e

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3a8b27b288e91998c2d83f11b1003fe9a984071fb5f1cb169794d3a3fa9e7ef
MD5 a6ab8c1006577f8562a81c7d85938582
BLAKE2b-256 6ebd39583aa92db8543401bade76d738402a1dbbd035a6d1ac1546ed9d8d340b

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 987a6eb1b826f67d6c2e13c3ecbc601640a494f4853c5cb9a0d21fba9ab77a01
MD5 876095d72895628a95f42b33f43464ab
BLAKE2b-256 ef3b45d3b3e613c26884f8d1f46f93cda36ec16dba78236eb0df5718d1bf363a

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0fb7890928a4e7920bfcae17b4153b82308a1cde802205c1f190a1986ee6cad4
MD5 98d904ab9095b04a1c5f426a55e5c905
BLAKE2b-256 444a90644346fe484e32cb728f64385b5e2f7b69f4871d18eff846981be3affd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 02d5f6fc1a64164956a0d1af5e1601dd233828f295933d325387e65082d889fa
MD5 46f9cd9806fea8a993b31dfb7bdc175a
BLAKE2b-256 42e8c75c7820f1960d96e41ee4063777a5c7d1bc83a7b43f45dd31b296cc3d8a

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: pysorteddict-0.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pysorteddict-0.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ebd60900a2ce9799fe41c5c9f85ba72975fa3d76af91aaa64ddac6d44f125532
MD5 0b2bb942a0037ece9d483fdda12dc5a4
BLAKE2b-256 e7e411ae098664022553d655d4ede45d93bb87bea790585eadc071400b51583a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b424f3446ef3f187d92a6776f65aade87976a77591c1d96aa5e50c8d67fecbdb
MD5 c3bac42038adf594f0b4405b32410905
BLAKE2b-256 b0af7bf94037ab8d1f125a3d858854ccbd06c44319a1afc2b6a15bc7a8558564

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6764a9328e7d51231cf6e6a01263093c99c51413a8cf5815d93fc202e63ae19
MD5 5d867e1008e29983ae14aea09d3867df
BLAKE2b-256 83fe2221ff0b501b370666d3d52a8b9cefc4e9eaaeb8d2c4dff2f832e65003ef

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f30e75edeacbeecb426bd96568a35a6b0cb18518a28e941d3f44adbd48b01c9a
MD5 bae4fa6a3f334ce0b296597057c0aeef
BLAKE2b-256 03d72d19439f0d7440714400932283a31ff469b12b29e00406846fbf734622e5

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1b95392c7fca64a55debfbd88447436b50e0a6648224d582e57af0d400f9df7
MD5 b0eecda5d90f31a9d14be1ff6e01f98d
BLAKE2b-256 7e731c4dfd8cdea4b7c1d9a1b10cc472cb1d371271f556f80a5d7b6617b211b6

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.5-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pysorteddict-0.0.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a6a29509c4c9c38638ac7339be4bf12e6d6d3e89df37ff811c10c87d81c84953
MD5 e2a5bc2d21b299d0731e1be21dc91dfb
BLAKE2b-256 1229f75d9d9f193f94cb2c614585abf9ca14dd4a5fc8963b4bec3a2103b2dd7e

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