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

Uploaded PyPyWindows x86-64

pysorteddict-0.0.6-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.6-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.6-cp313-cp313-win_amd64.whl (30.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pysorteddict-0.0.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (27.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pysorteddict-0.0.6-cp313-cp313-macosx_10_13_x86_64.whl (26.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pysorteddict-0.0.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (27.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pysorteddict-0.0.6-cp312-cp312-macosx_10_13_x86_64.whl (26.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pysorteddict-0.0.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (27.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pysorteddict-0.0.6-cp311-cp311-macosx_10_9_x86_64.whl (26.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pysorteddict-0.0.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (27.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pysorteddict-0.0.6-cp310-cp310-macosx_10_9_x86_64.whl (26.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pysorteddict-0.0.6.tar.gz
  • Upload date:
  • Size: 18.5 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.6.tar.gz
Algorithm Hash digest
SHA256 fffce76754d8126f157e51b8ee7b4c968e6bd0e5e5c31b0566690f9613aeeffd
MD5 25b15292faacb0edc567233491bda76e
BLAKE2b-256 07c14af3771506e15d0271e636f5c4e2b249fac9e6f2ed668b4496215d31d476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 feef3c128bf7e60ce69263df83b01b1c8d59175f009c3ce3dbdf4931a9310729
MD5 028f6e4bf895db20e16d73806ed0a5b5
BLAKE2b-256 5fbd53933c90815cb8a67ec708fe2d7414b41f4323166b71b9c2d57cb5e3dcc8

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.6-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.6-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47a04ed80e78ca6788227193ac1465f43501d9abf4511387b3ba3ace2592dea6
MD5 7d652d6e0f8b7ac5af556ecbc7d8ca2a
BLAKE2b-256 9b85e673c754ce01620b5ce00a6392ec2f93ea030a811ae3b8650a43cdb45c1d

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.6-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.6-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23fedb9488a0b5606b36d7a34678599a9d2c74d20e2f8b690790366f82f1b250
MD5 711d40915bd24ad91cde239854b2edc3
BLAKE2b-256 c085b44a4e4dd9e390d4c373fd12343a256b893119a34e8f6a3d6d40fa1df96e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 49374a48043790e61cb097bd7a2ba25b40b49cbc7d82bb8caf3ccc3fa6b8803c
MD5 d6b96b08e535243f0e568f542c49b926
BLAKE2b-256 4f989d23c1d99868bd5dfba35afa8a285a44a2a54af7acf698fe96348c6c38f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.6-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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 23f7945123ddc9d7613e87495f82d81bcc746c81e867497ab1597420190bdbda
MD5 79689bff74e5f650d801d1b8101362ad
BLAKE2b-256 81cfa39f090454908eedfe9d41ec4967a0ba4d5c11810ca4065601bea8343329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fdb535fd30340a6868cd0e37a83f17772eb1b74dd50f2dd52dbe0fa887a49a8
MD5 ddc78d72df33c2c5cc6f82bcf32d52e3
BLAKE2b-256 8718d15fbd56a3b683cbc521e3cf5bd8521f7f9083427dd07ed46dae61567b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b79d2527a2391b8ce7032c9e498720ebc85e487dcaf36b52f7cea7f30136b262
MD5 82094bc2c1fac0a192a706a6142d7fba
BLAKE2b-256 cac45f99b5e53e66b68dd44ea238a6298385e6923e699fc635db7b16ef002190

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.6-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.6-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44a9337a91e56d8d5e2e08fb9f36da3d41f66a2df00778b85fad0c1a6f35b0d5
MD5 78cbf258299147afa4d6af68fdf29c83
BLAKE2b-256 42a793b4cd115423cb027bdf1758ffb1c028ebb1cbaa74ba590a44e5cc8833f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c79d0309ac119b408c05af27d8f48b8b58aed1b6d513e1018dd0839872e87523
MD5 3662d4616543a6398b8eacc9abeb062d
BLAKE2b-256 260aa0348ddbfe726f41ff2a145dc232474447ec3e8e97bcf7a62760ac0c35ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55485360313697ca264eebdcb063ca37d49913a9aaf55344c71077dc02bdf92d
MD5 81de6ed766933c5dc6eec000c01a9742
BLAKE2b-256 54b56bc1fa54a2747854001e99fa607b92e4bc78912aa61e4c1dad59820529e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 70fbe37b4ce831a0963919c36fdb5c835e0148c405cac1d7415421161783d681
MD5 245cba295d08d14b8821726d3618e223
BLAKE2b-256 d328b0088d17a0cdf3ca421a1af30cdd78bf97e230da0ab0adef9a3a97ce8b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f1f1183a00017b73290ef68cf7ed3d0148d841232cb3bb09498471914c48c9c
MD5 090bc2b61cc524aeaf4d33a9115c9962
BLAKE2b-256 a9a81194c7a07c210f11c6b3bad306f7cadd205eb8db56cceb8cf161ceebad44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.6-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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 15dafc53d8c7e247c8a4d35c861de62419066c389f74140f951afec15d3c61df
MD5 21902aca12ffdf2782558de5a656780f
BLAKE2b-256 0f8adcf2d1012ab916d1112ad594f59689d108838921143d493c7c06ec212e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27f6db83832d611edc8f04642f2bcacee263d27f183f9ac0acb12763ff99bcae
MD5 7ba73067892dbf96a4a67ec02ccd0767
BLAKE2b-256 268f5a7e0063fe5d120d01100a896b5735859665009cc530e52c5e83651680f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28bc39dfc0ff818201e71ab3a34e45108c767edad61d7572b4e802aab61cbcd3
MD5 43207eb41bba87d80bb0998498bd36de
BLAKE2b-256 fc0196e41d851c09408dd2419c6f7558e91b87892f3a55f9556c1f2ef7255d6d

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.6-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.6-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65d4bec24ed96dcaf2f8dcf4c4a5ed723628d7b33642d652017b4d7adc45fa5f
MD5 3ea593ca6d3b2fc6aa0e7330536bb777
BLAKE2b-256 e58f7bc1af31f010722b026ed7448cfa8eecac81ad3c1ccac3f3c69ec116388d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fcb172bc528a6a4f589550875e600a8ea11657fe393d140d9b6ac3af7a81d43e
MD5 738836735777b28044ab99bd09a30a1a
BLAKE2b-256 77b255cb692f41deffb296bd431d21837662b8be4ad453cf8e47f98f48d6c03b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fc873ef5a3b4e4cacd6319644ad794877c91ad91beb95d2078bd75a01d9888f
MD5 d3afaf6954985871a103ac8b7ffe2c9c
BLAKE2b-256 f2b4deb0fe56727dd2e7156629dcc0006937079c96d93cb44ae7e4bcdc237216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 330eaf7ac0820bfa72a4fe2cd3d306ce9b2eb9c498eb3b94f3629a92d9c4701e
MD5 80cfe3251c7c5871631f7dfed8fb5d33
BLAKE2b-256 8182a8700dd3fee4278ae2377d625a6a196273bec504ded62f667743ff1ef30c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a62ba147b986970557f92142b490a145c8d2e1ee6cd383607fda8d0650f9cea8
MD5 0aabe10bc5b6ee7571c90ba942d66313
BLAKE2b-256 932d7899d3a426e80d2a3da08707b3b8daa99fef7b492a9ee3d9d46c86fc7a27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.6-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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 455329d86a0a6ffc9047026caa037ac53ad6e9f8326f2827cdef197c6f70d29b
MD5 37b2b2b9c1b9d185f9c828177fab2947
BLAKE2b-256 3e52dbdbd5fda32815ac5f7e1722f915550201b78278909ffd490d5f58b5c474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 325ae937920862403867fee00807df10a4d3c02de633f7e03a12c0b17bcdd3cd
MD5 03c5b6714f0fedee5cc379daf0916bc6
BLAKE2b-256 6300f6c879028a29741cccbb49d43aad3f4b0c69353e00cbe8078753e1a34c18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d6140fb00d3ceca9d75021d4b750d2fa891f5489e718d6fdf7d7122a4627e86
MD5 16d1eaadd47a760e4d3deeb9ea131b33
BLAKE2b-256 584cad93ed0cbbd7f884cf34a07cd08e6848bff13c8b4b53603cb7a449cb5b89

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.6-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.6-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8429c5dd69cd15e97f7faee8eb67748108bf97caf6329131f3af5d416ec00954
MD5 1192ab0e2ce82ba6274ae4952e0d44e4
BLAKE2b-256 e1103dd263257dbd537fc456aa071587a4e1b7abfbe02a1f42cd9b80b3bfcc78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c7435c4eaaa8728ff9a01806f00a126b81bc4247d7ce6d190a0b03ae206caa2
MD5 60c1bf4fc7c33ea65da230a93d066ccb
BLAKE2b-256 10ce61e3d86d94040d053b3a3cfed22efcc995cb236e2c434a8616c6eef5c75f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ef33ae14c742706b74625b73db3b8f8f08cbc4d23a16af506f2d2206fba3457
MD5 3cc86504feed8f510a67da929f7fa9eb
BLAKE2b-256 d62b2619e3007faf7a2ce84ac040a5ca2fe5dde485d719bd53b951b9b8110c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e49c15c3d1ee5b68742aab2bdbf2ebcc7f22eb3b0aee5de1dab6a2eac89f959
MD5 b46dcd5342e03aacb6ee073c75067283
BLAKE2b-256 4783db7d6a95a6b0358749a78ed092ce46b9662d78e8eb1fcb698c15012093e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 98f53740d4085082ac9c8b81c5a78e3254fb9400d63eec648ef2c172b5cbd643
MD5 6c530b208c64aeeeca14124349dfa067
BLAKE2b-256 50a98d8398500ef616d240675c349913d4a9a9221823870b8e3e5d6f5f6690f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.6-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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1f9098e8c751c9dbe1e9ac739a73aa4eda6afdb5ad00c46ee56c80bd18b29a29
MD5 090a8eb6ec3428a2cdd66a577fc437cc
BLAKE2b-256 6ede8b588ea375527d25be7d875950c2b95b44578e04c27b3c01620d709555df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d0e96f1a218164010c6ff4edc10b082791b9eabc8b9f64b86ebdf7d3bca52bb
MD5 dffdf7081d0f3a2b3d373578d9e218a7
BLAKE2b-256 a97fe41ae3416d8da656e480f4bf71f792a2093f5d0b4e829989637309696f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ee85b1270d6dcd1518ce32191e3a557027c5d3851bca0d8e2e29a6b221411f0
MD5 be5eed01f1eb32be6f3150374a3e2899
BLAKE2b-256 fe664cf4542afff4130e1e5486d7ab370a82c8e7f4140e086c5df1562c257a82

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.6-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.6-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c224e32631bbe176cd64269fb07a121ee238163e99a21e4fd24fc47447d61e58
MD5 687c3a5227058b01a6b1cfeeb7facd34
BLAKE2b-256 6b58bec81994de856461b8efcf4a56d852e4eb013c2d2065f185108288532826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94f192d2a4e2f6def3913b631207af7db24698415bdac224be2cd65002acc3b6
MD5 b3476ebc91501263dd90a6c3830cb0da
BLAKE2b-256 4895569c6707730fc78e778d1f8917dda6ee0c739b2d2f51c18c819abad7148b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f267acfc1a45f97e088ebf380b0f985306c6cd8e5068409b188384e78896d65d
MD5 db71ec82a0668396760b5fe25e4e43f6
BLAKE2b-256 f55054e2575e2b785ef13bd34166cc2f3f274a6bd7ddfce86c088722e4df40c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51b63d58ccc1b7e349846bc541c9e37a48866904c99a4fc11d12842ed8b2d77b
MD5 ee2f415b803aa7c4b7190485855500d2
BLAKE2b-256 55a5c65d4fcddc480678a38f4fd87004ff68dda1c7df0afdddcdd15ef16cfddd

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