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 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.8.tar.gz (19.0 kB view details)

Uploaded Source

Built Distributions

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

pysorteddict-0.0.8-pp310-pypy310_pp73-win_amd64.whl (30.4 kB view details)

Uploaded PyPyWindows x86-64

pysorteddict-0.0.8-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.3 kB view details)

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

pysorteddict-0.0.8-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.7 kB view details)

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

pysorteddict-0.0.8-cp313-cp313-win_amd64.whl (30.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pysorteddict-0.0.8-cp313-cp313-win32.whl (29.5 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pysorteddict-0.0.8-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.5 kB view details)

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

pysorteddict-0.0.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.7 kB view details)

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

pysorteddict-0.0.8-cp313-cp313-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pysorteddict-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl (27.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pysorteddict-0.0.8-cp312-cp312-win_amd64.whl (30.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pysorteddict-0.0.8-cp312-cp312-win32.whl (29.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pysorteddict-0.0.8-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.5 kB view details)

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

pysorteddict-0.0.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.8 kB view details)

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

pysorteddict-0.0.8-cp312-cp312-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pysorteddict-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl (27.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pysorteddict-0.0.8-cp311-cp311-win_amd64.whl (30.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pysorteddict-0.0.8-cp311-cp311-win32.whl (29.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pysorteddict-0.0.8-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (88.1 kB view details)

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

pysorteddict-0.0.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (86.8 kB view details)

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

pysorteddict-0.0.8-cp311-cp311-macosx_11_0_arm64.whl (27.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pysorteddict-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl (27.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pysorteddict-0.0.8-cp310-cp310-win_amd64.whl (30.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pysorteddict-0.0.8-cp310-cp310-win32.whl (29.5 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pysorteddict-0.0.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (87.4 kB view details)

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

pysorteddict-0.0.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (86.1 kB view details)

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

pysorteddict-0.0.8-cp310-cp310-macosx_11_0_arm64.whl (27.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pysorteddict-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl (27.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pysorteddict-0.0.8.tar.gz
  • Upload date:
  • Size: 19.0 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.8.tar.gz
Algorithm Hash digest
SHA256 d026964bb4c5ab8e4c9d389190adc295f24a680ed0173af06526de561c0f8923
MD5 19552a4ee627103e27487e7b16918812
BLAKE2b-256 a3b59eaf1e64017392a6d1d7596c7e26015ddefa063b15bcf3f5e472ee7265ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6c004bf3360135e2c61c67fc09cdc527a6a27e40fe412cbd1ed789866cd41231
MD5 d2fe914188a136ddfbd8f67b16bb3c01
BLAKE2b-256 4ce020086849f5ea72d8f43ab15a2cc4ea12b5057d0207906d2e84966466cfad

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.8-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.8-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25cc90fa8bd9ca326730d39461d5e2abf9c5116308f3206b6d56c0a65e94361d
MD5 b276cfeadccb9938555e2144e87a18fe
BLAKE2b-256 bc4afe598a8abf57579b9387c7aa273138b2cfc8c917f2bb3ea83f216739761b

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.8-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.8-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8429ac7eb0b0fbd52c684bcc5f95d648df5f8d42b7dd37d40ab6885c30028d69
MD5 45634e431175b6719804ca42b26fae8a
BLAKE2b-256 412828481902f3bd837686eb1cdfaa223b27e4599c093d72bbdd07906ae49339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 21811faf0f4259a6c7c3f4fa281c2f74ccb3d367de39b924ae1f7076667b30bb
MD5 81ed59172eebfc913c561b7917db9cf1
BLAKE2b-256 abf24c187327d627d3523021a2c5df866daec9abe30d2f4049851a36f0fea327

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 29.5 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.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b6bf345694276b44ac7a9388ab7326d2ade8d7c08106874629ba9ee255e1981a
MD5 151bfdf8dd75a8edc4bff46d5acde434
BLAKE2b-256 98e164b6a21ba300a3651f47dbbe4f607c7cb3873f6c257b74690d9c1d16e415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f0adf67752b07bc23d9554852467b35593db864c62052885e695cbc078234b7
MD5 b71d0b0e353f0f3c4d10ac2112cb6f25
BLAKE2b-256 77c71bbc26cdab7985718eb8d91d607900b499a68a95f3dbee581f21dfe33db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f6dfc56853f09c4df8b007f9ed0fb91be05e121ac2d43c213c1ee7f76718306
MD5 8304f3c515f9c50f3a1c1cf86f569728
BLAKE2b-256 0fb629d04dd250a2cdd608002ba25820bc6819be90d20f3c4e6ae84aeea1b688

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.8-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.8-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07f6ad05eb14dd0622247870956e590859bb80e66dac4bb150ce388cea0af626
MD5 d8fc4d6e4cc4bd41c9329c2b96c9a10f
BLAKE2b-256 04ec4647803754a4c60853fd41da04852e8f7f56b4d22eeff480221fc08e5365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ecae34f47b4be59415bfa8d64efc059a5b9f407fd8c531bc24e40c7634760eed
MD5 24d78afe57581852704589bff3c6d3c2
BLAKE2b-256 f47fe867929e9b4fa6353b27e7a7bc50d3c0bf686e3b2aac649514619385f0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a15531745cfbe98d3b4f150b84de91584db5b4a9f1a15e1b561f868b104a3d7
MD5 c42229fdf089b745aa41f5ebae007e0c
BLAKE2b-256 691a8cdcf018ca9a9ac808eb7892a6281e99c3d94cbd8288d3beacb560f22c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b42b6d1f3486d2ee40d47e8fa478a6b1e80d6c7d073e9aeb14d51e8343d08613
MD5 be3aab9ea770b54a80cf244313adaffb
BLAKE2b-256 230ad502e99c2c9c8ef846c1c0793d0cb86fa9ca0d16e962924c228fe2d2c5f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c5456493d923e4f068ac90787d5c79e597dfa29fcbe6d31302d405a72b1516ff
MD5 19f8346ef7a1d44848eaf51faa6cdcfd
BLAKE2b-256 ef9aa4ad7976add51ad9506da201207a61f1ae82c1b1f2b6d4b78911a8b496ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 29.6 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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e9e09339734f60b0b39477ba8efdece039b08be10903ee2e978c088ab9ba1301
MD5 381dcdc9ba2b55d5f480fbbe332132b9
BLAKE2b-256 9cf3e9631ad661c7db7fc8221220090ebf873af19ee7a6802e292e3063f2a74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e33cd6cd1f5a9cff6deef687481fb78886209ea3fec6c0b5533ac1ca2f6c3a3
MD5 744f9de4f88f897a7f38fe7d65ada189
BLAKE2b-256 adecad322f52bfc2039ea8a39063375d5d24f8171ab1d28b6caf4f72e0cd0828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab793f53596acfa3d5527be6ede43a804a6926128ee7362f72afd642f9c03747
MD5 3bd83cafe429e80efec2e299842d9f0d
BLAKE2b-256 d1b030ce1102d89a4be19fb6629f1217ad4fdc06bc1d9764dfdab68638b82c42

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.8-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.8-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8d89e4d8debdbff711b11b68971056015c7ff75111a43e1ae0bee44f6b303d9
MD5 27a3cce74cfbd41f5eabcf572c2dd7d2
BLAKE2b-256 dfde8659436da7d53c50d7e5faef02e68debeacaee7ff6d19c592be6db0cb333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f86cfc86efd445b9c8d88bce31aeade1c40cfde13efdcd15c9353c4bf61dcb48
MD5 abc39ec90b4b60768004f4a16267eddc
BLAKE2b-256 854bd4030a178127aa4596a617bc38236219bb08cb56245fc385683cb8e34b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc57b51932f6acabb178d2fafe0a4e3022c4380c73eb426672e01917daacf046
MD5 bb0b9853b4622eb244230e1dd828dadd
BLAKE2b-256 b8cf96aa092e6251bde47ba3e2d76fe92418c8393eb72d1b7cf9f69d0302276a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d8127c191d012e3bd1f1ca4ab17f1530dae74e5d1bfa32179899004dd5281df8
MD5 108c5b6299ff073bb02d405e04cc285b
BLAKE2b-256 b64ad32fa8b6d621f64fd1593577e9ac274ef38152f89a8e02874dbdf3fe4870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43722c07d9293af68c09945b2387ccae162626fb328e0dba23f47095998d16f6
MD5 d3b13ce0fd144b1a56a5a2c30573b72b
BLAKE2b-256 ebc8e486e6749424fb6cd5448c7a36c976c78ebe137ce1b16925a093ca774920

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 29.5 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.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 45d827b86de61cc35cd9488df727c602ff980bb26e68bdd5393760bd2b48f4c2
MD5 9ff93fcb69ecb8e36dcb4f3ac46a9404
BLAKE2b-256 2cb8f72b84dd53cc5f4e3eedd07fcd065f3437473e5cf1cb2667937d8f7b4731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 903ce22c0692aa7831b48f7f688e30570d5acbe862671b4e17fc66cb46f630bc
MD5 2f34004cbded2b8511d60f238247744f
BLAKE2b-256 f9d8cf6bf8c877237309d04ff851089faa07ada50b53d300257e3cc9430935d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 198fc80e633a0daa2fa81f750d1b0b02c2beb5cbaddd116cd4bfb21f28831dee
MD5 d24319ee885f42c2b033a89abab293fe
BLAKE2b-256 002056d1379ffbfaab379a16d2705bdc4683b689ca74f0d2b81f5de3b33dae1d

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.8-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.8-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcb7dd2419b845f325abe34e821e3115770a36bbdd6c176c97db1482b4fccca7
MD5 3738155b2f469bfc04df359a1c8a608a
BLAKE2b-256 c6bdc867a064819bcf1a687b342a2b21e362f8437126c0b5081e4cba3058858b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 64795346b91a2225a80a05429de7cf4ecff7cab2f0d85a8296781b401d22ecee
MD5 8de78da5fcd410d0732c3eafddb27352
BLAKE2b-256 67f2784758ae916670fc1ffe278f724cbfbe81372bfd0a4aab35def40798acfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57ca12dacf2c09a14666c3b724e17d300abd9e06a994cc73862ee9f807c89a7e
MD5 0821370f87412e8b5b4faa49fcc3dfd4
BLAKE2b-256 2d568cd11dfc2eb8f7032fc7fc0cc37bc967478f5fe72c5661135b09b14e9b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48305a59fc4425cf0db77b8a5cf456715631e5cd75e704e35eec8b72575dad87
MD5 ff3ca8de03225c974816cf3be553224b
BLAKE2b-256 7b913f457060a52dc231bfe45469d090e64e12d2e2369d15a7537a0edf409373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 069dd902b24df82688eee231a7c7a8841f91a4fe8fd57cda90609c12e161a07c
MD5 7004282b4caf93ae281ff15f8585d046
BLAKE2b-256 9c98342bd0cd85a1bbdbd587624532581a514db07d7c7f738836cf2f39e1836d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysorteddict-0.0.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 29.5 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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b7d93922fedb249eadd030162d91b6f4d22d809abcef024ccdcb0ac0b5714578
MD5 da3a49c827b0625737bfb6b987c937ed
BLAKE2b-256 6eb828a01fea5b8cf678bd71b82668398691823223ca010fc8b8be47160e7381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fcd4b326a5368e74393080b88e036efd075c5af32718b5ce3b6c2d940c87176
MD5 ad025f014e69942b85df0c750a0335ef
BLAKE2b-256 84366abb60ef5d56a5cb6736707081da1567a741c30feac92b59c7a3e5b0e55d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f190c2706ec4c1571b4bc54ea935a393a5dfed16788e44d400876a9dfd114c0
MD5 ef52f2cb13296aa8ea5de8c35b1d16c2
BLAKE2b-256 f1d7a481ff363c3a6813b1250eed4889234b49884d459e951d4af0fdfcb63549

See more details on using hashes here.

File details

Details for the file pysorteddict-0.0.8-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.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1e245ef4d93de0df90e033ba6f0017cc27ae98e252165c77b5ec5a02a8543d6
MD5 03eb0e060bcf31b80ac0ea12dc85abd7
BLAKE2b-256 17dcce5ad8bb329d210378f3bbc2a686d94f0287c7567e75b2574fbcc95480ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c474c275c4c7af654c0567d70c0f47c6f79ec8fdbfa62a87e582714c99b170d
MD5 a5a22852288d4171117c13399be2f66e
BLAKE2b-256 14edff591b9cc3192f74b86a44c74bebf1ba48b5b299db51351316e7af9fab3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94490813e92707c7f876e1bbabdb2c804dccb0c1de2a27ea8e596c6a1b9be427
MD5 af197d7fa6b5baf6fcffdb2d6eecd201
BLAKE2b-256 c8e47a1e4539288a396280f095ef1ff9f07360ca52ffade484480df18ff328c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b111f0afa4682162f40b435ea4cf8f9bd12fcc134a667876dcb7c4c82ad17a67
MD5 f95aa280b4d8963616b1c6698bbe3a29
BLAKE2b-256 8ec2c70025650f648cc1b7ebb94e8ed6f7af792a47855c51d07142a8bfaed031

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