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 for macOS and Linux. It requires Python 3.10 or newer.

pip install pysorteddict

You might be able to install it on Windows by running the above command if you have the Python development headers and libraries installed.

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.4.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.4-pp310-pypy310_pp73-win_amd64.whl (30.1 kB view details)

Uploaded PyPyWindows x86-64

pysorteddict-0.0.4-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.4-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.4 kB view details)

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

pysorteddict-0.0.4-cp313-cp313-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pysorteddict-0.0.4-cp313-cp313-win32.whl (29.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pysorteddict-0.0.4-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.4-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.4-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.4-cp312-cp312-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pysorteddict-0.0.4-cp312-cp312-win32.whl (29.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pysorteddict-0.0.4-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.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.5 kB view details)

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

pysorteddict-0.0.4-cp312-cp312-macosx_10_13_universal2.whl (36.7 kB view details)

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pysorteddict-0.0.4-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (87.7 kB view details)

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

pysorteddict-0.0.4-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.4-cp311-cp311-macosx_10_9_universal2.whl (36.5 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pysorteddict-0.0.4-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (87.1 kB view details)

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

pysorteddict-0.0.4-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.4-cp310-cp310-macosx_10_9_universal2.whl (36.5 kB view details)

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

File details

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

File metadata

  • Download URL: pysorteddict-0.0.4.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.4.tar.gz
Algorithm Hash digest
SHA256 b010faf68597a820f016d5e69344480023f7fe91b0c2bcd4c7f73008988702da
MD5 88bf79dcafb92b08387b20b6b0f922a7
BLAKE2b-256 39a1f8c67323722e004bcf1f27920351c679a70e846e67d00b68aeb1148af197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 617e3429eaea0e447b00c8d20f970c88d20899df92c3e27c1b9b9ee6589d556b
MD5 5f29c93702b96a3d633f10c6747e0f2c
BLAKE2b-256 d7d47397c48bb1029624e89019b58abcfc568d324103d98910e517b3f56bb842

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.4-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.4-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f491ca0aad1c204ff1c6c269f9edb020c071cad762b6ec0b96c6460053bb3c9b
MD5 eb7320ab6c73de314c5ff8c65949dd24
BLAKE2b-256 25448a9e34dd4bc79c36e56142e5a28a48a11a4cbbb2e97c4210027610c78de1

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.4-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.4-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea03cb64bc1dab7842b14801e6beb9dd33edddcdcd0b20a5a66ff99ab40232a6
MD5 623ed2f5de59cf91451e1ccf4fc1b49a
BLAKE2b-256 2c1c3a4997a64713969e657a348769c777963574d291614623d3496c943885a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f27af927e032212b460a1bdf596d03ca064dd3e14d8c32f2b3de6bedf703664d
MD5 dd1c3c424c08874058a077579c4aaedd
BLAKE2b-256 a34f227060f3d4e2de3bef8f31074169742b50a82e98593211e476260ecf4364

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 29.2 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d7ce2d62ffa2900a4a55f85d3c913828f8dddf17c62f19260239457be6cb62bf
MD5 9d3f55fd0b3a5c43c814e763b325a7f5
BLAKE2b-256 6595864e2e830b72eea3098eaaed0aab759d043a6c9f1b61d4d08eec3adb74fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60a0ac73da220d1118c3c098bfc481cd2f38115be272318dae8103748f106760
MD5 233bf53969b460541f977bda160f8051
BLAKE2b-256 10d3714a6dc89523bcd4fee3851527b6fb575045a96da6be08b7824bfe170eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28685ed2ec6ee04a8926aa4496fe1aba14a762e670dfa34a18d1b4855856f400
MD5 9be6fccdaa0c09e41b4b5a2973e837ea
BLAKE2b-256 fd7e0543135f07105e54dc4b86a7ae2ed8365cbe84cf3d4b668e54e28e5390bf

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.4-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.4-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b0357dc5689deac5123faaf1df328fe6c3852af82ddaf04e07c099365050634
MD5 bef7edb9fb9221ee49e225b91430749a
BLAKE2b-256 d96ba251f509779972d5a40038a6b7c40c94d497579fbe410f0ba7677db9b932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1cb1a0a0091b7e84eb06c31df732a25487467f1141ff7f0332a34ef6ef4f9c8
MD5 77a98c40d45df275fbba6fa4d517fc21
BLAKE2b-256 b6826a2f080dbe7a9b338caf4453c8c11276e2356e62b983b8d5d757d2c3329b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 336f8d92222015d9f099e4f518d1bcc2b1d70229d8cdb952b6d4f2525e54ee0f
MD5 4297474bd8ed938ab2c260e6dab0019e
BLAKE2b-256 ce1a03260598950b8450f88126bba63f6c5f0d044be797753492bb2027b6c469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8dd18fee7af07c4b09a98fbd5ad99ea509646df40a058b0e4098b05302a29a2a
MD5 15e17098d8d1323978583b4efd7bcad6
BLAKE2b-256 511959a08ec7b943840bc0832ef3cd9f0e8a6a632eccfe342500ed1d550a6267

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 29.2 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 32939194f3960b2fb78c501b7e569eac0e6410a13107885007421fa68624b69c
MD5 6de109777554637c674c59ebdb10b7c4
BLAKE2b-256 1fbf606e4e2fde221c8e42bbe839086d8fb754b464c54c7e0ec8026637ee58b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68e04b82dbe0bf5846e2b466cea6f3613eea88e9051585e2dd6825a40508f0b0
MD5 4581ef0779cd3d76c3d2b44d063e306c
BLAKE2b-256 9950e79ee7a8ec28a47da2703db3cb06039ad3322fc2b1728c35ac3a950a8c45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a2167f0e4fc5330e75f33da1d166d3b6c067e7068a652d9be519908f1076868
MD5 d7f1150e03b9fad1af232e683b65ce75
BLAKE2b-256 98e152529e01088bb511ae3f0765eed440f92f6938a4bf3e8b0b37e1750898c8

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.4-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.4-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d5ed4c97b05af24328c09acae1347782449d076a06232efff65b660649304ec
MD5 a0d11b785c6b04497eb9323fe235f8a0
BLAKE2b-256 9e9d701343743abb1d38c59f79832ca7467c80a7d10e7073209b8ed69aac0f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07465156143c7cf2244a4878acca6c921bea921bd4bc5667e27f9ae924e8aa27
MD5 3121a60ee817066f0f318035f98cdfc0
BLAKE2b-256 193fc2459896c548840d8042fe5fd21d88b2688a6f2a97df72f8d7a75b33ff48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0d56834a0d41101572d7a51d6e61aa77903f148a1de2d0efb65fe1f48b03ba28
MD5 72c15760cf6387677b2353e56c39018b
BLAKE2b-256 f5961c091beffc77927f327339139a17489d22348abbfc4a965737861aa25488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 74008958712d42d121601c53f708364e0333372b032e307d24ada620d9dc7505
MD5 af439fabafa9de6a7630bdc82e964064
BLAKE2b-256 538fed5a336b4b0948decb33a640dd6cb33f51153dacb7eb020b94d270a188f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.4-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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 27019f747e0da44d5e5755712101bcd679584ac3175cb252e956fba8fa491ad4
MD5 108d55f6ab35d8788b9f2542b43677d9
BLAKE2b-256 705694ecf88f4714ebef4d15cc95413b1f24bc74449885ff1188f0373036122f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fca82d48c7a7d015d88355d4b9f56d1daea2ef39f13e9fe0f5059db5a9d042f
MD5 ad7be9ab01e18a00c3d52d50ec522219
BLAKE2b-256 c928e8a00789a78d84e70b4c0e37f799abaeca4a331eeed45216ee7ff097875b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a56279cc4723e65770ba410a3402977049ecb790c8b71d84fd377aacb28ad3d
MD5 ccfa9c2eacdc642bed304728a9130231
BLAKE2b-256 70d12d2267d948ec9c697e574649d149d50d13064e058e0a9fa50b286e067ad0

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.4-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.4-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e290e3d6375b12166956b78b14a52b36d5988d2285f84514181da3349307143f
MD5 e9790f15a8f04647bd39e0ea2ef99a5f
BLAKE2b-256 6378b19bfa7108fe510003c3425c863e87da9765c559a7fae9d0e4927cc965f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bccf63f76ed15bb570982fe22eb7f3eb9c762761cfce49f9bf08f0fa58ee836b
MD5 a31b24c1eb182a7c8825189b00331c22
BLAKE2b-256 5ce00bc0ddf8ee052f9bdb82073324987e195236fb09af22d46274f9ffd48979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a25e39a6e89d7f3b28eaa095e80e41a586dd2020a3f79ad89a2c74ad018f5159
MD5 1fb0ce4241eafb9a394c3f2b2b0d8f6c
BLAKE2b-256 a4beffe1c03b535cbf86f9222466e3249fb4fba9d816d9da412787eb6d1fbfd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 307123255bd9412ee13ce74b64628668779d2b2a79e8348265fcfa73c0d48437
MD5 3ca160e44a2e6d1574db05aa7d3ba46c
BLAKE2b-256 7ec0101d56296cdab0037e474a04a3e524c40e2b74c2cb177f7531490638c002

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.4-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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0fb0be21b0c28d255eccab197ad3fe3e68c41ad59228de39d12cc13d33fa5bad
MD5 a2676eca0c2c99d27bd509b4d0dd5e7d
BLAKE2b-256 a2be5be52bcac5881fe1335351929d8d4c0b83412c837e2fb2c9627b4325f5e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc5875a3273bb692120efd2f958b95447df3a34cd03d45d4aacfdc9fda3ff4e2
MD5 8fa3a2e66af5c9f98305267bd857ee1c
BLAKE2b-256 9bbebf69022ed7ec61ddf640a2ab6c115b454667f99ed2e4b77a264b003adee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64e9519dd96ae053355c4b6eced6471ca56a2a5bd03f220240b8f480afef6498
MD5 236973b5adb22d6f975610edb79c1bc1
BLAKE2b-256 5480471ceedc6d9acbd69f77b3b1bbdfc44fc8447fee4e69e0efbf5a41e240f1

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.4-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.4-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec0de70e7ae980c5dbeeab5748ae4bf9dbe148fb374beabd409bb51c66cfa610
MD5 5013b1924a67a526dfee112fdd9545fc
BLAKE2b-256 df05b0deb238a60de0cc88f5d3224d0612aaf49a90b11393d225a098b4b5ffe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7595b68a51c88565a080d6a9d2d35d80e71adea39ff63a2e1411dba71768eb5e
MD5 d853eeb86dda4d89a024a37d043da7a0
BLAKE2b-256 e2141b92e3ec3aba19a58e37985ddeaf4d4865a362deb1983d71f6c16eef071c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9aed1c9f1d6551406dbc41c99720155fc81b1130ad2aae0eb822c702272509ef
MD5 a6f23d17ea6ddae252d02cc360cdb876
BLAKE2b-256 fad04d3b1bf44ab6b2233f1c41d16b4aa4ad160c77c040001135c661449b0e54

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