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.
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
keyis not an instance ofkey_typepassed to the constructor, raiseTypeError. - If
keyis not present ind, raiseKeyError.
d[key] = value
Map value to key in a sorted dictionary d, overwriting the previously-mapped value (if any).
- If
keyis not an instance ofkey_typepassed to the constructor, raiseTypeError.
del d[key]
Remove key and the value mapped to it from a sorted dictionary d.
- If
keyis not present ind, raiseKeyError.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pysorteddict-0.0.7.tar.gz.
File metadata
- Download URL: pysorteddict-0.0.7.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39c8082c30f04238779ba0c53814cb12e56385f1c47f80370e0859d631ad17cb
|
|
| MD5 |
e25db04def4e69f2270a92171185b5da
|
|
| BLAKE2b-256 |
bdaee5cd751b7690aa9155cf83c99fdf92cb4ccf8ffa62665031aa79a91bef30
|
File details
Details for the file pysorteddict-0.0.7-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 30.1 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96fd16ca4a61d2e35a5b3c6bf0d994500abdb34ef078bc1355c1d079dc0feb4d
|
|
| MD5 |
00f670d44aa809741146bb2b1c144fae
|
|
| BLAKE2b-256 |
abdd61acccdfabe613c7ec4589e4b900add8ab8edeef83e30071940d29cc4ed3
|
File details
Details for the file pysorteddict-0.0.7-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 25.1 kB
- Tags: PyPy, manylinux: glibc 2.12+ x86-64, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b91f6ef43e998f675235e7b00e12c7a9331d2f64709952602d079fc0be659a2
|
|
| MD5 |
0142f8b70c65d487fae04eb68bfee4ea
|
|
| BLAKE2b-256 |
e00ac6ac5f722adc058d8f594985b224a78090976b485698bd43ed7b9779cc12
|
File details
Details for the file pysorteddict-0.0.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 25.5 kB
- Tags: PyPy, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a49d1a76be19309e6b105a3036189f0143b0c9d4915414f50ad94cfa14d8e0ad
|
|
| MD5 |
f13e56f35ecfeb284e36615695651777
|
|
| BLAKE2b-256 |
eb64ac27272f9cbb9a8946cbc79927cee5e9021faadd17df19ee2aff15d1a7f2
|
File details
Details for the file pysorteddict-0.0.7-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 30.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6934a622368c6d3beff2d1095fa5765901d41da286a384be14ac6513f871f9a
|
|
| MD5 |
60c623739fb021c8af9681b3375799a3
|
|
| BLAKE2b-256 |
7bd37f69176d2c153292b025a67c88ab9c8a748160c05549a2d44fd8b684069d
|
File details
Details for the file pysorteddict-0.0.7-cp313-cp313-win32.whl.
File metadata
- Download URL: pysorteddict-0.0.7-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c30c4d860ae4040a80ea1718e91beec86b894044f4ffcbf0a2243fdc86b0be2
|
|
| MD5 |
1ce945e38844aefde59c9fbd13a7c240
|
|
| BLAKE2b-256 |
a4c9cfb50afc0f495dbcb17acbd0ebf446c65ad7c4a410add2644a779cf2a986
|
File details
Details for the file pysorteddict-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1fa02e0e5c9b269d53c63f7f40648ac0ccb503bf7f186068bf1ff7bde48fadf
|
|
| MD5 |
404f6b392121ba989335ce9154387904
|
|
| BLAKE2b-256 |
55d4cdbf5997e16f4b59fdded90679afff33ac620ccdd0f95ebe74fc03c21220
|
File details
Details for the file pysorteddict-0.0.7-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eebf743aa49992e23cff13127ceb43be68f5102b9dee09fb663927c3ce835367
|
|
| MD5 |
74dceffebd6d5e7cb64033b11c6b139b
|
|
| BLAKE2b-256 |
98245ecc43d5ad2a4990d5bd96ed64ffc9c0a062fc7316d24a20c364e2ca2d81
|
File details
Details for the file pysorteddict-0.0.7-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 89.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.12+ x86-64, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16f228a0fa547acecbf83e07eb7868f673387aa85e52acce26a8bca552a10a8d
|
|
| MD5 |
4132913ff8487728f2b7ad51e469342a
|
|
| BLAKE2b-256 |
c725b6a6539acdde678424726de543797c3b67b7a379817f1006e662e20a5377
|
File details
Details for the file pysorteddict-0.0.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 87.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70105eedd81a2876cb3c4c2b805328c989bf7fe11cacee7e0a82ef6866315f9b
|
|
| MD5 |
c798ba3e8c23255ddbe3a63d6e4973e6
|
|
| BLAKE2b-256 |
c466047d0ec30a8d3829eaa5b98d28c600138b8e4524ed5374c94dc12f59bd33
|
File details
Details for the file pysorteddict-0.0.7-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 27.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeeb6e13091e1a8ce3de6be77ea8c9edf9299256a054e684e88e990335b6a545
|
|
| MD5 |
a1d554822e053968879382bad88a22ee
|
|
| BLAKE2b-256 |
767d431ccc6afa31a68709f92ac3a88bd6fdaa0aea9849ec5ee5de34e639412e
|
File details
Details for the file pysorteddict-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 26.9 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98a51ef50c43ac20b6932a39348cd44802fb8c131ab6e4ba92abf5bccca948d9
|
|
| MD5 |
60ffea0c8b22658b05331a7bedccc2be
|
|
| BLAKE2b-256 |
59a22a482a5ac59f1afe3c45f4eef4aaaab082a1ac44a924d54331f69ab86af9
|
File details
Details for the file pysorteddict-0.0.7-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 30.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
950874900fab8c47f67c0fcd27e08da3dd6c8418be599aa709005a8b636e9240
|
|
| MD5 |
bcd277b8a754c19b7578b729e9b4617b
|
|
| BLAKE2b-256 |
85db85ba6b0b5b9d481d49168617c0247e009ac5834fa14865a21c99b38fa06d
|
File details
Details for the file pysorteddict-0.0.7-cp312-cp312-win32.whl.
File metadata
- Download URL: pysorteddict-0.0.7-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10e08f406ec74dd05bc003f8404d40fffdbeac8d2d6d557d82aa85efc1e93a87
|
|
| MD5 |
9b31b0ae1c68c0726b13df8fbc7c00e7
|
|
| BLAKE2b-256 |
b1f8ca5f37c6e786244b80008b4c79fa3683c3d0ab2b2b4c24b0fd773906acbe
|
File details
Details for the file pysorteddict-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85c4138bd1c40120fdbc6b1e1a8bfb1e1abcbdcc7bcb70dbf5e83c72954e1f05
|
|
| MD5 |
46d48e1f05d16557800368b941c0db74
|
|
| BLAKE2b-256 |
142779081128e04536f256b57d7fe890893bf6c0419dbef095aea849cdffe214
|
File details
Details for the file pysorteddict-0.0.7-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12c9fecd79d5f689240a2abadc663394699ec0ffda434e179c7dd3641538bb23
|
|
| MD5 |
a305edb7a75641d858c5c7b7fb868bb9
|
|
| BLAKE2b-256 |
6257503afff7aff6609a8b5a6ab53d1c0130c504e19e5c1d97f1dd5ad726f270
|
File details
Details for the file pysorteddict-0.0.7-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 89.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.12+ x86-64, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6766f94cab7af52869c63da934743437dd67c4273a06a354d2d8e70be0511d68
|
|
| MD5 |
0dd270c720918c47c221b7c576b7bd96
|
|
| BLAKE2b-256 |
50b3fe85e735fa7360bf2e790b139e28af4dd613a5a2a56c8112a9ad4457f5c0
|
File details
Details for the file pysorteddict-0.0.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 87.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
751ec055b971aabf23497f14523ecf7ffa5a086dc342f333908bd999a15c3451
|
|
| MD5 |
173ea0a2bfff12741118630a4d009739
|
|
| BLAKE2b-256 |
b524ad38a16f130f6ab24e394dd7fe4a1a75e869c6978024a5e913be2b22cd76
|
File details
Details for the file pysorteddict-0.0.7-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 27.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d3f18ed404d16518b8c0620eab8892e67737fc063162b768e5b7d948ce6a202
|
|
| MD5 |
4ef1e6df736710c3cce213fba262ac46
|
|
| BLAKE2b-256 |
e069a30a187d3b70653c49bfb699d91d6e63d630664cd1532a3398867bd603c3
|
File details
Details for the file pysorteddict-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 26.8 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c3f2b58045880c968d715d9bd9df59f9d858d0bc02f1c1f443bf0516af6e2d2
|
|
| MD5 |
e319973f9425c2444aa33a80a70d9e7e
|
|
| BLAKE2b-256 |
c52cd8b667345778e21052b8d13868e0b8b258b0b962bda2277a5c964549b43b
|
File details
Details for the file pysorteddict-0.0.7-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 30.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a46a07b2b1280c0239abfbc27d99a031006719aba81823c69ced1c2716b756ba
|
|
| MD5 |
3e76340613804b8c2257f880f03e437c
|
|
| BLAKE2b-256 |
421bfa4e8622d51e0205302f67904b6cf396c2c20a9f52155228524f83d6225e
|
File details
Details for the file pysorteddict-0.0.7-cp311-cp311-win32.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp311-cp311-win32.whl
- Upload date:
- Size: 29.3 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6aed18d1ed5a5a13f1cb08f921ce5422b2a91f7d05296b5dd3118fa66cba5963
|
|
| MD5 |
aafac1ad20ac28e01801270f18a1c34c
|
|
| BLAKE2b-256 |
e06536db6b450c8f66c91bec804eab8f0ad6934446858af4920f1828ffb8ad14
|
File details
Details for the file pysorteddict-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
926e02583ed7c6f0dd6a5d08a21b5ad9e0c1148fab80c16513de172802113df4
|
|
| MD5 |
387cc9c7c6e23c70763d63832bc5440e
|
|
| BLAKE2b-256 |
0ced258537f5b328efb99e108aced5b6aafe3d1a16ef871b1d0cda4d83ba2542
|
File details
Details for the file pysorteddict-0.0.7-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1179477d80beae9b258f6ca8cc54ebd0ea22ba9445f8767c925d6e844433ffaf
|
|
| MD5 |
5b74df4a03adb3686088c07241eee29b
|
|
| BLAKE2b-256 |
e3d5753199c553855ac2ba9f392d61f7c6ceafdc5215af9c10eaf4be50d999cf
|
File details
Details for the file pysorteddict-0.0.7-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 87.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.12+ x86-64, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09da25a12c9251a096d5eae0e0b299bb3f4d74d05a1f0ed3ab2dc1b8db296e7b
|
|
| MD5 |
8988e8290cfa317d87ef3a27ffa74d75
|
|
| BLAKE2b-256 |
0aa70ed58e3a04da52a79f6804258abffb3a7a964715318b7d98154d2de42116
|
File details
Details for the file pysorteddict-0.0.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 86.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe8b8ea2dc45e48f60fd8427f652d48b0f28afc11d3ad3918b5db0b787eb58bc
|
|
| MD5 |
dc3282eee0feb3ba8f52d73654f79ffc
|
|
| BLAKE2b-256 |
723277f6f06dd0b2b610d126dd8400edc3fd8b28d29a92975adb2fb7d62507ad
|
File details
Details for the file pysorteddict-0.0.7-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 27.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60f3bcb8069dd95220e99c1fe3145344adcd678a7833610c445e1f04b214bc43
|
|
| MD5 |
c3056c78bfc6e7ed890b5db210730ba7
|
|
| BLAKE2b-256 |
cc5ac1071b95a24a66ebc4d5023cf0b02a5ca4f05a9d9655743ff32841ab8bc7
|
File details
Details for the file pysorteddict-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 26.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52505d406bead6ddb250b11f92ffaf364205dbcc5b162808a260bf53970c9a2e
|
|
| MD5 |
fd9eb37e9d238288cd0b8ec0e3fb6383
|
|
| BLAKE2b-256 |
4870e422f86cc526b57b69c26e82ce4a150ea24700cca3b72d18c6e2c432fe3c
|
File details
Details for the file pysorteddict-0.0.7-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 30.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
505a2136e05664b03b7702f350b5dfc3e22ed3136c5a04ba14b78a5ae2e8abe1
|
|
| MD5 |
cc7ef2fcfd3ffb05623cd14690b8d873
|
|
| BLAKE2b-256 |
c007000a0bcaade19ea1ac142e45e451e5245c7d38052b8b5f7d14b0e663f747
|
File details
Details for the file pysorteddict-0.0.7-cp310-cp310-win32.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp310-cp310-win32.whl
- Upload date:
- Size: 29.3 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
233ad9d73d91d4b41a42311bd3922877bb6adb4dccd8a6a9f4a0259995e80632
|
|
| MD5 |
59f7ec367ca2a0450472a18b536838bd
|
|
| BLAKE2b-256 |
bb9e62ab4e064eaa91d832fe997d90f775c615f158c71159253847e7d07cdf3b
|
File details
Details for the file pysorteddict-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b78c7e68365a8e9bbcc7a9d5b7070dc7bf484fa4d32688cc4779cbd4759d90d
|
|
| MD5 |
4adf7718bfbd89f9638375e990f059d5
|
|
| BLAKE2b-256 |
5b9246e4505b53cfe9a650bfbebe5bd5476b40086b6f4dd66d5291ac2ab2ed05
|
File details
Details for the file pysorteddict-0.0.7-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e93ab0beca71fe8381ad44ccf636fcdd23e96c1f472c67567cf50a375f92883
|
|
| MD5 |
6b099f11b793fa107ffc7ab12d1457e9
|
|
| BLAKE2b-256 |
e31f634d258f582e9e189783de4ab6551e24e12643c9aa4e610537e311d42aa9
|
File details
Details for the file pysorteddict-0.0.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 87.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.12+ x86-64, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4495ea6cb95c7692b8d0584f02e6cc85e780fb65a5a9db32dfb7dca8b3e0ffaa
|
|
| MD5 |
e7e75f5e7e30449115ac634a6833d749
|
|
| BLAKE2b-256 |
b9f6648aa205f7d470ace7a4b0c061baa9cc1bee3ebf04fed8dc78f504fee4e5
|
File details
Details for the file pysorteddict-0.0.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 85.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c6e016af6e228f92bc7ab33b0ae02e3c6bfb8cdcf9a195ac81938c32246792e
|
|
| MD5 |
08502075bca336cb1829f49824776da8
|
|
| BLAKE2b-256 |
8e0d0523df868120546254881193918770953f11013a0e39dfe92fa0d4dcbe6f
|
File details
Details for the file pysorteddict-0.0.7-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 27.2 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00a3e98214103c26c8e4dd9db9bc34da941b55a2749ffbfbb20b8bc1ce680efb
|
|
| MD5 |
48b44b48133d7cd4f5957309fba43e2b
|
|
| BLAKE2b-256 |
22734e546e5637f15c9473ecac92fa7533724346e337771d96f4abeeb3b2451e
|
File details
Details for the file pysorteddict-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pysorteddict-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 26.8 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc059c1a8b063a7caf486ded11722b2dbac99847b4deb0ec9e28766f073368e8
|
|
| MD5 |
0f9e27de2a51c6c410314a82df2f0638
|
|
| BLAKE2b-256 |
95f90514c56c4de7c53d5bb36144547fabf5f57ef2ccea7d9fc35a61f9ed4358
|