Skip to main content

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

Project description

pysorteddict

Provides SortedDict, which is a Python sorted dictionary: a Python dictionary in which the keys are always in ascending order.

Hatch project

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

Constructor

SortedDict(key_type: type) -> SortedDict

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.

Magic Methods

key in d

Return whether key is present in the sorted dictionary d.

len(d)

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

d[key]

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

  • If type(key) is not the same as 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 the sorted dictionary d, replacing the previously-mapped value (if any).

  • If type(key) is not the same as key_type passed to the constructor, raise TypeError.

del d[key]

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

  • If type(key) is not the same as key_type passed to the constructor, raise TypeError.
  • If key is not present in d, raise KeyError.

str(d)

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

Other Methods

d.clear()

Remove all key-value pairs in the sorted dictionary d.

d.items() -> list[tuple[object, object]]

Create and return a new list containing the key-value pairs in the sorted dictionary d. This list will be sorted.

d.keys() -> list[object]

Create and return a new list containing the keys in the sorted dictionary d. This list will be sorted.

d.values() -> list[object]

Create and return a new list containing the values in the sorted dictionary d. This list will be sorted by the keys which the values are mapped to.

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.2.0.tar.gz (22.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.2.0-pp310-pypy310_pp73-win_amd64.whl (30.8 kB view details)

Uploaded PyPyWindows x86-64

pysorteddict-0.2.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.3 kB view details)

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

pysorteddict-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.7 kB view details)

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

pysorteddict-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (25.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pysorteddict-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (25.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pysorteddict-0.2.0-cp313-cp313-win_amd64.whl (30.7 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pysorteddict-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pysorteddict-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pysorteddict-0.2.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (91.9 kB view details)

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

pysorteddict-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (91.1 kB view details)

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

pysorteddict-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (26.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pysorteddict-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (26.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pysorteddict-0.2.0-cp312-cp312-win_amd64.whl (30.7 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pysorteddict-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pysorteddict-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pysorteddict-0.2.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.1 kB view details)

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

pysorteddict-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (91.3 kB view details)

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

pysorteddict-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (26.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pysorteddict-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (26.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pysorteddict-0.2.0-cp311-cp311-win_amd64.whl (30.6 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pysorteddict-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pysorteddict-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pysorteddict-0.2.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.7 kB view details)

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

pysorteddict-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.2 kB view details)

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

pysorteddict-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (26.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pysorteddict-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (25.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pysorteddict-0.2.0-cp310-cp310-win_amd64.whl (30.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pysorteddict-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pysorteddict-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pysorteddict-0.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.0 kB view details)

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

pysorteddict-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (89.5 kB view details)

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

pysorteddict-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (26.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pysorteddict-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (25.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pysorteddict-0.2.0.tar.gz
Algorithm Hash digest
SHA256 475746b9bb7ac5c3d7e7c2e1afc2162299f6ff263f7636d7147e6e54bcdd978c
MD5 42918f873d192cc578c12343b5969122
BLAKE2b-256 4eeb248d7eb31b0e1bf5acd06c3646e8ec56159f23df2bf7e6bbb64234da029b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7dbe7ee9e37053c18b7bbf6564a850ed4423239d18cb59588a48584bc18da0f3
MD5 7611cff015966651d1605b38598da92a
BLAKE2b-256 3a6528ac756a4b9700b31a013e897e4a0c01f58f1c1e7bec9116d06b28d6c999

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3244c764c7f93394a9b40dce80c844b2555ec23e15ec170e03f37efe1c2c4b53
MD5 efec9ff48ae23c66e5431a9d64c44c4a
BLAKE2b-256 7e071112e646a76ff9da84057daa4d33e1a706a9f3d22c3ad7b8968eed7e3ac4

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 106539689a5add0df819f907108f53b6158bb980880603d26674dab650596e8e
MD5 ebf04a78eafe8519a2b93b8bde24aa44
BLAKE2b-256 aec730893d5acc0eaebcc446ab9f8c96ad2c9ec7beec4f20e76585d6fb21a51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d4a9ad29c6eedbdfb9c3fa855e6f3276d07691a4541a088a8bc9354e5ccbb76
MD5 d1edf878dc42049ee0634e40373b80e5
BLAKE2b-256 f9cd980a08191427dd5a8752752ab16fe64da2ac4b220db9377965ddf2dff059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9144a4526fac6c3cf12f9822c4ab7c0bace704e53d60106dbbd1fda0406236aa
MD5 47366c300aae3ee2768fb10a3b5006a7
BLAKE2b-256 4991ceafa4bc807a3174cd7a6f1f7a9af89b2f1f4285a0fde9ebc11cbdeb50fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d70b1f0189e1cb4ec0254c4becfe1742495609a46f461d543a2f13dc30b03f05
MD5 92e5adb96cadee12e44087d110b60e35
BLAKE2b-256 0c8d9c25564af152a2914bbb8adbecff66a68e0795c5501d3d4516bd8554b193

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pysorteddict-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ca2490d79ad84fa92ed84626be0e2cbaa51d95bac7327d6da62fea2a18d50b49
MD5 d145ab848c532bcd0c499a9301828dab
BLAKE2b-256 16e5e86c9258a65aa7a6d6261461b1c7006493b46338a35ea0f07ca3434a20e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28fe7e6fb6941dc095f02f2e2ea8939669d445b8342f6da045a6964f15c42483
MD5 4d9aa575a460006931b9ee71a8de68dc
BLAKE2b-256 bf2cfbbd74927d8c0ecd24812c377d51dd33ec8fa8b2f41209c6fcebcecc903a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b65427c62ce9758934bc7b7483186c7b8d02cfd899dc1f860d8f40025ce87900
MD5 f1fefd2f1c2960fe3baf76f2a08cf8cb
BLAKE2b-256 49de4b5ccb106ba47fe688325ec86f273d48b55286064568027d86f5f1a5dfa9

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a2360e6b442ca2cb95d8bc2a9628388448775c345889527c1c7fea9b84afa0c
MD5 f1d843b8fedad873faeedf6ab3045d44
BLAKE2b-256 16d8b04a51bb4fef834e1bdb07bb460fd0d4e574fbdf48ca1b9671da2d0e6225

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 401f89b64dfa582dffceb205b88ba74a15b13af8b7b6c703820d12f420d59170
MD5 dad0b5b7f15a879c6c244cee96a8aba1
BLAKE2b-256 6dd923125e00384480e48d896a5ab342236841528a8967d15c1f660268b59654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6ef3a7ade9f5becab732a467a0f9579cb600c3c7b5a301b58d028d47a74ba72
MD5 a487fa28860cacc61772a246c55c65b5
BLAKE2b-256 3983f8ab1abb25dadc4f3d87fe12d949787e844885328ca5432d28ab0e0b1946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f6e5f52b0cdc72bd8a8f4068917128b801e392c393b331857c3175b839fd76cc
MD5 5429c5fa60220c30d23048a36d556113
BLAKE2b-256 e68c66f7fcf8a3493bf4c3bb9540283db2fa25669ae6992d362297cee77db5bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0387dd4b41b4ff72938853535526ff470e9bedf099cc2ea176138628ee7e4578
MD5 0090a6ed79cdae7c3364322dbb3f54b3
BLAKE2b-256 3576ebcfe205fb52f7be45948d354ba9c9c7feaca4847c09ec1f5b32274f47d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pysorteddict-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ad9cee8bda50cc33eb38280421670c7eee06a943cb7fef1c93233384d996d11c
MD5 f12f4e6673b817429107f22b603042bf
BLAKE2b-256 1abf573181f0d212bada6d280c323c73930ed1d1a0cef002c49b6adf5439e1ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9895dc7b2a99428b1b7df4fd99a4d37b7d5a734ae647ec1738f6b702134b542c
MD5 cc562e29dc11c2538c14841653eb96b2
BLAKE2b-256 352b66bd6f6fffdc38d7ed2290ad8b2cbb9f95f0735480da447400d646140377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be3d0e2f2e64a64e612e9f1eae7156df04e2d09ad3b5ca886edf30cb8bf020d0
MD5 bb0403e83abbd041ee6d767c0777c8cc
BLAKE2b-256 7ffd6096fa6c78afb0ee447b26f4384d8493fdab088956762f992d76ee3c1bc1

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3a3657a35887e17593f8a750e574339cd9ac7dec2c54eda3104bd5964e7fd8f
MD5 1710644b071e3b3dc01b4d0fc2477aa1
BLAKE2b-256 11df3c2206de9e0e742ce79434f9aaf5b29e539c01b847f74098e017a6284977

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f91a1cc4953a9216c661ec076aefc73b769755f24bdf1f2bfee87bfadbb759de
MD5 801fad3767a34053784f455b5d36a77e
BLAKE2b-256 00524b13bb9ea00ed0e256d438b187f7020f8dbeded241f4abc49574668637c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c271f8691ab2556b6192173c999e894833963cce5323563b085040615250abc
MD5 1d838dfd4798605ec0d42459b0032e10
BLAKE2b-256 be8673950f9a4ace9cc3fa9b349aef3dd2a8f1686286e209fc1639fcecad3ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 923fcc19350f1d735580d6cfc0cc0ef384a328485068def60aa91a06990a68ab
MD5 af3410b493a1f21364bb6c50f2c0859f
BLAKE2b-256 5ac00a7d3099b06576e6166d7f5a7957398e0062e7411a8042615359d3995980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4af6bf1c97d72d3975bf13cc6399b1a4e79b1001352c91349d76b440e884c1a5
MD5 0a5cc703d403d30673637c8d13bbbfaa
BLAKE2b-256 b75a66cabdf60071eba05bdf7287b494abcbb19e77270a7a9a30a1dbb1aa521b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pysorteddict-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ad2ba9b65cdf08f1fd9db93ac357e1681110ec053f0fa717c55bb4ffd78c028a
MD5 0afbc7f4db3e2d594448d61f386a4c41
BLAKE2b-256 23d3e61bf102b28cc171ef31671c7f666dc311cb4712165fc635ac800b05778d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84eb8c6f1cac0ec7af997eb4fba6f0b9ced6492e130c0c76f50fff5a7836ccb4
MD5 4b539eb2e77c941cc82d79797e7f8874
BLAKE2b-256 ad9e907232d172ae1c768e6627969e6ce97368950e098da1ba188f884529e4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28afa5ce3aa35b9a8a0794b02d3a8b56bc4a9de569b5fa2470dd17078c82080e
MD5 692b0be899d66524c3c7ef917742a787
BLAKE2b-256 bffc8fd0677766cf9963ba37ff9bbba272c5292747bdd7a912f9522b6521db6c

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6c7be4eae19a8613b878f03b8bad782bd4fdb41862de7116e35b6b6be5a306c
MD5 5564a92f7145a0fd96e371eb7da5bab4
BLAKE2b-256 f475f0cd3ae1a38d5affb7bf90b8e101170a11a4959210d63c49fb77e2adf057

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e50773e3a51ff7c5cc2cc4202c5a9f1f95443ed68c9d93f7035a9ecf267a6943
MD5 91eb754d69bdc6ebe93dd15dcf504b49
BLAKE2b-256 532ff366e0da3d6f69764fbef73c9e47bf49f7502316ffea999bd0482ba00ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebe4652e7f82293e2e1d123fa0ce68f9c2b65bba62907a394a5567d28e001db4
MD5 7a7497eef6dd512036fa91fdeec3fee4
BLAKE2b-256 bd7b6359988c6a213d713ebde406aeb23932f19402992354bd72c7e0d70a584e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e7030027fff5a33e999e42d959068b1d96531218022f7fa897743d2a09c6354
MD5 79b08b15eea1edfea2b8135858077070
BLAKE2b-256 acedafe027626b5944a1cceac2e3cb81350ad2ff104cfe1a3752857c5bbae58e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44afd9e411b87cfa5ad01fdd56a59aa788f634b13025a8428242792b5cdc8016
MD5 41a46f1d3826e1aba2c46f19fccac48c
BLAKE2b-256 70255d3948897c9a28abe6733ba8b0763173ea69206d0538dbd15fc371fbb9f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pysorteddict-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4b2259a6986d98a2c01e1db45411db7c1aa55714a4277307d224b049ddd211be
MD5 a6fdcfef75f673556d4c44767de6e865
BLAKE2b-256 e302995fd7e87bc2b8ca4c602cf814b3eec2a55844ebaf1488736e70ef2ba3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a3466dc7c2b1d2518c227f79d0080631d4218324da19b385fe4214a10140eec
MD5 d366051cd3b6bfe2a339ed5bce905d7a
BLAKE2b-256 76fe89735ecacafee939bc39d9d79c93687033c05a4d1e2f696d1ba2de75d0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbe4c7feebf4130aa69caf21e67492a85b53f782b1b0ce26a7c9549250a05406
MD5 49e6d8ca6656015dd3ec204b9db77e56
BLAKE2b-256 94076a8eca0d9da52ffacc2c1908fb7d10fefb53eb898850f155cef6c5950d09

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89c873a5e4d49f15b931cbd7b9feeb7eee14c12bf7599d650123704058bc9415
MD5 a1b7b5a92f3f7019f0f0f516679ef3f0
BLAKE2b-256 545e3b4e6146c5e350390b3d578bccadb11c3f771faa10c40533167a2f7fe5ab

See more details on using hashes here.

File details

Details for the file pysorteddict-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80f8adc40a4acce903cf90c25de47191671c02ae6a1f51860e81e2c6fa6a1bbb
MD5 0eda78f5451b7f8409457898ffed316c
BLAKE2b-256 17adf195b3c9c3ad62ac3dc6a34dc33f8a23cf5d2d9e58e85463274fe825eaaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 765cd0a81639ea4e5a1a6096979365cdfd2bbcaa54e7fabdfda2edbe3ea941fa
MD5 fb18c36b23a9b06d3fbadd793a083d4b
BLAKE2b-256 4fe055187b0455f2e0aee8c0e83430dda5683336e5af982925e6a9a4373a4f8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysorteddict-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ff66bf97b1f9caf3ad40c1cb47612cdf887e37f77d8306e803c7c769883e344
MD5 a3e3c9f6ebe691d9325a1a67f93705ce
BLAKE2b-256 43846ebadf9259558b182a0a874dc7dd34cda22aa9e969e9ebed782d576b5029

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