A list-like structure which implements collections.abc.MutableSequence
Project description
frozenlist
Introduction
frozenlist.FrozenList is a list-like structure which implements collections.abc.MutableSequence. The list is mutable until FrozenList.freeze is called, after which list modifications raise RuntimeError:
>>> from frozenlist import FrozenList >>> fl = FrozenList([17, 42]) >>> fl.append('spam') >>> fl.append('Vikings') >>> fl <FrozenList(frozen=False, [17, 42, 'spam', 'Vikings'])> >>> fl.freeze() >>> fl <FrozenList(frozen=True, [17, 42, 'spam', 'Vikings'])> >>> fl.frozen True >>> fl.append("Monty") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "frozenlist/_frozenlist.pyx", line 97, in frozenlist._frozenlist.FrozenList.append self._check_frozen() File "frozenlist/_frozenlist.pyx", line 19, in frozenlist._frozenlist.FrozenList._check_frozen raise RuntimeError("Cannot modify frozen list.") RuntimeError: Cannot modify frozen list.
FrozenList is also hashable, but only when frozen. Otherwise it also throws a RuntimeError:
>>> fl = FrozenList([17, 42, 'spam']) >>> hash(fl) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "frozenlist/_frozenlist.pyx", line 111, in frozenlist._frozenlist.FrozenList.__hash__ raise RuntimeError("Cannot hash unfrozen list.") RuntimeError: Cannot hash unfrozen list. >>> fl.freeze() >>> hash(fl) 3713081631934410656 >>> dictionary = {fl: 'Vikings'} # frozen fl can be a dict key >>> dictionary {<FrozenList(frozen=True, [1, 2])>: 'Vikings'}
Installation
$ pip install frozenlist
The library requires Python 3.8 or newer.
Documentation
Communication channels
We have a Matrix Space #aio-libs-space:matrix.org which is also accessible via Gitter.
Requirements
Python >= 3.8
License
frozenlist is offered under the Apache 2 license.
Source code
The project is hosted on GitHub
Please file an issue in the bug tracker if you have found a bug or have some suggestions to improve the library.
Changelog
1.5.0 (2024-10-22)
Bug fixes
An incorrect signature of the __class_getitem__ class method has been fixed, adding a missing class_item argument under Python 3.8 and older.
This change also improves the code coverage of this method that was previously missing – by @webknjaz.
Improved documentation
Packaging updates and notes for downstreams
1.4.1 (2023-12-15)
Packaging updates and notes for downstreams
Declared Python 3.12 and PyPy 3.8-3.10 supported officially in the distribution package metadata.
Related issues and pull requests on GitHub: #553.
Replaced the packaging is replaced from an old-fashioned setup.py to an in-tree PEP 517 build backend – by @webknjaz.
Whenever the end-users or downstream packagers need to build frozenlist from source (a Git checkout or an sdist), they may pass a config_settings flag pure-python. If this flag is not set, a C-extension will be built and included into the distribution.
Here is how this can be done with pip:
$ python3 -m pip install . --config-settings=pure-python=
This will also work with -e | --editable.
The same can be achieved via pypa/build:
$ python3 -m build --config-setting=pure-python=
Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it.
Related issues and pull requests on GitHub: #560.
Contributor-facing changes
It is now possible to request line tracing in Cython builds using the with-cython-tracing PEP 517 config setting – @webknjaz.
This can be used in CI and development environment to measure coverage on Cython modules, but is not normally useful to the end-users or downstream packagers.
Here’s a usage example:
$ python3 -Im pip install . --config-settings=with-cython-tracing=true
For editable installs, this setting is on by default. Otherwise, it’s off unless requested explicitly.
The following produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files:
$ python -Im pip install -e .
Alternatively, the FROZENLIST_CYTHON_TRACING=1 environment variable can be set to do the same as the PEP 517 config setting.
Related issues and pull requests on GitHub: #560.
Coverage collection has been implemented for the Cython modules – by @webknjaz.
It will also be reported to Codecov from any non-release CI jobs.
Related issues and pull requests on GitHub: #561.
A step-by-step Release Guide guide has been added, describing how to release frozenlist – by @webknjaz.
This is primarily targeting the maintainers.
Related issues and pull requests on GitHub: #563.
Detailed Contributing Guidelines on authoring the changelog fragments have been published in the documentation – by @webknjaz.
Related issues and pull requests on GitHub: #564.
1.4.0 (2023-07-12)
The published source distribution package became buildable under Python 3.12.
Bugfixes
Removed an unused typing.Tuple import #411
Deprecations and Removals
Dropped Python 3.7 support. #413
Misc
1.3.3 (2022-11-08)
Fixed CI runs when creating a new release, where new towncrier versions fail when the current version section is already present.
1.3.2 (2022-11-08)
Misc
Updated the CI runs to better check for test results and to avoid deprecated syntax. #327
1.3.1 (2022-08-02)
The published source distribution package became buildable under Python 3.11.
1.3.0 (2022-01-18)
Bugfixes
Do not install C sources with binary distributions. #250
Deprecations and Removals
Dropped Python 3.6 support #274
1.2.0 (2021-10-16)
Features
FrozenList now supports being used as a generic type as per PEP 585, e.g. frozen_int_list: FrozenList[int] (requires Python 3.9 or newer). #172
Added support for Python 3.10. #227
Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes. #227
Started shipping platform-specific arm64 wheels for Apple Silicon. #227
1.1.1 (2020-11-14)
Bugfixes
Provide x86 Windows wheels. #169
1.1.0 (2020-10-13)
Features
Add support for hashing of a frozen list. #136
Support Python 3.8 and 3.9.
Provide wheels for aarch64, i686, ppc64le, s390x architectures on Linux as well as x86_64.
1.0.0 (2019-11-09)
Deprecations and Removals
Dropped support for Python 3.5; only 3.6, 3.7 and 3.8 are supported going forward. #24
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
File details
Details for the file frozenlist-1.5.0.tar.gz
.
File metadata
- Download URL: frozenlist-1.5.0.tar.gz
- Upload date:
- Size: 39.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817 |
|
MD5 | 0882f528872840df39091fb5085e258a |
|
BLAKE2b-256 | 8fed0f4cec13a93c02c47ec32d81d11c0c1efbadf4a471e3f3ce7cad366cbbd3 |
Provenance
File details
Details for the file frozenlist-1.5.0-py3-none-any.whl
.
File metadata
- Download URL: frozenlist-1.5.0-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3 |
|
MD5 | 649401d9ab9b34097739aca8949330d4 |
|
BLAKE2b-256 | c6c8a5be5b7550c10858fcf9b0ea054baccab474da77d37f1e828ce043a3a5d4 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 51.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28 |
|
MD5 | 5ff1ec9eeb108878d65e9497257a41e0 |
|
BLAKE2b-256 | 17c4b7db1206a3fea44bf3b838ca61deb6f74424a8a5db1dd53ecb21da669be6 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-win32.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-win32.whl
- Upload date:
- Size: 44.9 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c |
|
MD5 | 6720f78ff52ef9754e56cf553f588a80 |
|
BLAKE2b-256 | ab420595b3dbffc2e82d7fe658c12d5a5bafcd7516c6bf2d1d1feb5387caa9c1 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 264.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03 |
|
MD5 | dd6a5e9405529893a56de308b8d3fc6f |
|
BLAKE2b-256 | c0293b7a0bbbbe5a34833ba26f686aabfe982924adbdcafdc294a7a129c31688 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl
- Upload date:
- Size: 276.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9 |
|
MD5 | b5e3307d19ed84d6b75cedfec6d837ba |
|
BLAKE2b-256 | 08c4ab918ce636a35fb974d13d666dcbe03969592aeca6c3ab3835acff01f79c |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 267.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e |
|
MD5 | 0afbd5011be038fe5ba5703a87dd5156 |
|
BLAKE2b-256 | c623e491aadc25b56eabd0f18c53bb19f3cdc6de30b2129ee0bc39cd387cd560 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 253.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641 |
|
MD5 | 52484a814a8e2d64223a161f9a28cffc |
|
BLAKE2b-256 | de9ad311d660420b2beeff3459b6626f2ab4fb236d07afbdac034a4371fe696e |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 257.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de |
|
MD5 | 74166b618e3b66a362237b39456f1989 |
|
BLAKE2b-256 | 2ea43d24f88c527f08f8d44ade24eaee83b2627793fa62fa07cbb7ff7a2f7d42 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 273.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b |
|
MD5 | ea1fdc2696a3d9b98b97d6f934ec25fa |
|
BLAKE2b-256 | a1580642d061d5de779f39c50cbb00df49682832923f3d2ebfb0fedf02d05f7f |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 270.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608 |
|
MD5 | b1971ecafc3c93ac01da6c19de71f0e6 |
|
BLAKE2b-256 | 80cfe075e407fc2ae7328155a1cd7e22f932773c8073c1fc78016607d19cc3e5 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 265.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f |
|
MD5 | 365c9851155bfeac378bfe1cb3c2214a |
|
BLAKE2b-256 | 1f22462a3dd093d11df623179d7754a3b3269de3b42de2808cddef50ee0f4f48 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 267.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439 |
|
MD5 | bb5804c34b5068a9d04a0a950e6baf43 |
|
BLAKE2b-256 | f6b8260791bde9198c87a465224e0e2bb62c4e716f5d198fc3a1dacc4895dbd1 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 250.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840 |
|
MD5 | d4c6574243428829a384464d1e5e412b |
|
BLAKE2b-256 | ab663fe0f5f8f2add5b4ab7aa4e199f767fd3b55da26e3ca4ce2cc36698e50c4 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 50.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2 |
|
MD5 | f2ba1008c3c50fb27d3de8d92e95a6f0 |
|
BLAKE2b-256 | 3ac876f23bf9ab15d5f760eb48701909645f686f9c64fbb8982674c241fbef14 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 52.8 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0 |
|
MD5 | 1a0c7c5d5c805d1dbf5542ebffac7549 |
|
BLAKE2b-256 | c7d1a7c98aad7e44afe5306a2b068434a5830f1470675f0e715abb86eb15f15b |
Provenance
File details
Details for the file frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 91.5 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953 |
|
MD5 | f16d19afa308fe910329ac7b979f83c0 |
|
BLAKE2b-256 | da3b915f0bca8a7ea04483622e84a9bd90033bab54bdf485479556c74fd5eaf5 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 51.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f |
|
MD5 | 0c00d972794e2b8438c6b6a6ae67478b |
|
BLAKE2b-256 | b1564e45136ffc6bdbfa68c29ca56ef53783ef4c2fd395f7cbf99a2624aa9aaa |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-win32.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-win32.whl
- Upload date:
- Size: 44.7 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8 |
|
MD5 | 80ecad83231e8c6efcf9c8c1d31bb0ec |
|
BLAKE2b-256 | f97c490133c160fb6b84ed374c266f42800e33b50c3bbab1652764e6e1fc498a |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 280.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f |
|
MD5 | f616e569e6a928f8304d2cba2c716055 |
|
BLAKE2b-256 | 37e047f87544055b3349b633a03c4d94b405956cf2437f4ab46d0928b74b7526 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl
- Upload date:
- Size: 294.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631 |
|
MD5 | 20613ebf1cff4b296e9c88175e84ca96 |
|
BLAKE2b-256 | 4d3670ec246851478b1c0b59f11ef8ade9c482ff447c1363c2bd5fad45098b12 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 285.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784 |
|
MD5 | 9b0438c65d0be1d937197db1cdb638f6 |
|
BLAKE2b-256 | aef04e71e54a026b06724cec9b6c54f0b13a4e9e298cc8db0f82ec70e151f5ce |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 271.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039 |
|
MD5 | 329f377e01399b7520bcfa0280e5377e |
|
BLAKE2b-256 | 2e6e008136a30798bb63618a114b9321b5971172a5abddff44a100c7edc5ad4f |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 273.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9 |
|
MD5 | ac784418325824d1fa6794d8c4b1cf6a |
|
BLAKE2b-256 | 29e2ffbb1fae55a791fd6c2938dd9ea779509c977435ba3940b9f2e8dc9d5316 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee |
|
MD5 | e39866d6a2cc6c4659e1d572e5f1d172 |
|
BLAKE2b-256 | bd9f8bf45a2f1cd4aa401acd271b077989c9267ae8463e7c8b1eb0d3f561b65e |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 289.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a |
|
MD5 | fae3a53f1deb7131abca0f31ef2841c8 |
|
BLAKE2b-256 | 77f207f06b05d8a427ea0060a9cef6e63405ea9e0d761846b95ef3fb3be57111 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 282.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a |
|
MD5 | 886deec46ee4f1677926a8946455acd5 |
|
BLAKE2b-256 | e3122aad87deb08a4e7ccfb33600871bbe8f0e08cb6d8224371387f3303654d7 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 283.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e |
|
MD5 | 8f47adb27971a75d6f866c04b1ce150c |
|
BLAKE2b-256 | aff264b73a9bb86f5a89fb55450e97cd5c1f84a862d4ff90d9fd1a73ab0f64a5 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 267.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6 |
|
MD5 | 1a398ac480c81582a2101741242f7ed7 |
|
BLAKE2b-256 | 41d11f20fd05a6c42d3868709b7604c9f15538a29e4f734c694c6bcfc3d3b935 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 51.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e |
|
MD5 | 72e4d7466001c50b304848e4bcd19f22 |
|
BLAKE2b-256 | d09a8e479b482a6f2070b26bda572c5e6889bb3ba48977e81beea35b5ae13ece |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 54.1 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d |
|
MD5 | bdf17692aa0900979aa0a73b697c70a2 |
|
BLAKE2b-256 | ab04ea8bf62c8868b8eada363f20ff1b647cf2e93377a7b284d36062d21d81d1 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 94.0 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21 |
|
MD5 | f754e3fa598f6cf79ae351b7a6926634 |
|
BLAKE2b-256 | 7973fa6d1a96ab7fd6e6d1c3500700963eab46813847f01ef0ccbaa726181dd5 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 51.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d |
|
MD5 | 9a8d107bc28c89c93073ee1687a94760 |
|
BLAKE2b-256 | ca8c2ddffeb8b60a4bce3b196c32fcc30d8830d4615e7b492ec2071da801b8ad |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-win32.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-win32.whl
- Upload date:
- Size: 45.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942 |
|
MD5 | a39dbf38e19966e2950cef4014b91e3d |
|
BLAKE2b-256 | 374838c2db3f54d1501e692d6fe058f45b6ad1b358d82cd19436efab80cfc965 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 277.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf |
|
MD5 | 41a3aab79033faf0dde67f63ea555a97 |
|
BLAKE2b-256 | 9df8cb09b3c24a3eac02c4c07a9558e11e9e244fb02bf62c85ac2106d1eb0c0b |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl
- Upload date:
- Size: 287.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2 |
|
MD5 | a3afd3135b2c9f89107e5905e41b7b25 |
|
BLAKE2b-256 | 05f5549f44d314c29408b962fa2b0e69a1a67c59379fb143b92a0a065ffd1f0f |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 283.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9 |
|
MD5 | 05dc96aadf8c273849526b7a2112c3ee |
|
BLAKE2b-256 | d5c93075eb7f7f3a91f1a6b00284af4de0a65a9ae47084930916f5528144c9dd |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 265.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a |
|
MD5 | c32db0d5b91f05d35be94b5bb01235d5 |
|
BLAKE2b-256 | 19e239f3a53191b8204ba9f0bb574b926b73dd2efba2a2b9d2d730517e8f7622 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 269.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3 |
|
MD5 | 0a29b4a6e0ab4483182fa1e7f7545367 |
|
BLAKE2b-256 | fa7938c505601ae29d4348f21706c5d89755ceded02a745016ba2f58bd5f1ea6 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 283.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d |
|
MD5 | e3fda82a05297af7fee4eb9e71bfd0fb |
|
BLAKE2b-256 | a1ffcd7479e703c39df7bdab431798cef89dc75010d8aa0ca2514c5b9321db27 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 287.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869 |
|
MD5 | a346cfde4d242d9654b204399dda374f |
|
BLAKE2b-256 | adc9c7761084fa822f07dac38ac29f841d4587570dd211e2262544aa0b791d21 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 276.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a |
|
MD5 | 0c52b0811506bb244773085cfe7d7bb8 |
|
BLAKE2b-256 | 98a8d0ac0b9276e1404f58fec3ab6e90a4f76b778a49373ccaf6a563f100dfbc |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 274.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d |
|
MD5 | 9e2ecd0dbe910f6dcee23d8b7fc90ff3 |
|
BLAKE2b-256 | b85fc10123e8d64867bc9b4f2f510a32042a306ff5fcd7e2e09e5ae5100ee333 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 261.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45 |
|
MD5 | 556d67ca064e6aaa0953f1a3c4c11861 |
|
BLAKE2b-256 | 59a0370941beb47d237eca4fbf27e4e91389fd68699e6f4b0ebcc95da463835b |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.5 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778 |
|
MD5 | 65dc2142dd968b5ea6ac53cf18e06e95 |
|
BLAKE2b-256 | 2c31ab01375682f14f7613a1ade30149f684c84f9b8823a4391ed950c8285656 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 54.6 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5 |
|
MD5 | 83eae963024bd1b218293d856cca3e45 |
|
BLAKE2b-256 | bbbfb74e38f09a246e8abbe1e90eb65787ed745ccab6eaa58b9c9308e052323d |
Provenance
File details
Details for the file frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 95.0 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30 |
|
MD5 | 93d1bbf8fbb81e0f900804dffe700c90 |
|
BLAKE2b-256 | 79430bed28bf5eb1c9e4301003b74453b8e7aa85fb293b31dde352aac528dafc |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 51.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4 |
|
MD5 | 6f332787351afbf75a61aeac249d6fd5 |
|
BLAKE2b-256 | 282fcc27d5f43e023d21fe5c19538e08894db3d7e081cbf582ad5ed366c24446 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-win32.whl
- Upload date:
- Size: 45.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb |
|
MD5 | 9d6a5cdef2c8539243e9c6f81a5e1b80 |
|
BLAKE2b-256 | af89c48ebe1f7991bd2be6d5f4ed202d94960c01b3017a03d6954dd5fa9ea1e8 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 250.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5 |
|
MD5 | c49424de1a727581629bafb15cf88da9 |
|
BLAKE2b-256 | 4c224a256fdf5d9bcb3ae32622c796ee5ff9451b3a13a68cfe3f68e2c95588ce |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl
- Upload date:
- Size: 262.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab |
|
MD5 | 1f67671a44db506e3c89077d2658ca2d |
|
BLAKE2b-256 | 71f31f91c9a9bf7ed0e8edcf52698d23f3c211d8d00291a53c9f115ceb977ab1 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 261.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c |
|
MD5 | dd59d5d2a50a7688cd043a5f122edabd |
|
BLAKE2b-256 | 2113c83821fa5544af4f60c5d3a65d054af3213c26b14d3f5f48e43e5fb48556 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 241.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f |
|
MD5 | a406afd270f299df3ba4c5cb4f3f6905 |
|
BLAKE2b-256 | a5bde4771fd18a8ec6757033f0fa903e447aecc3fbba54e3630397b61596acf0 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 243.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2 |
|
MD5 | 30b63903780da9c8ba63c3ceff2cd420 |
|
BLAKE2b-256 | 7dbde01fa4f146a6f6c18c5d34cab8abdc4013774a26c4ff851128cd1bd3008e |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 261.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17 |
|
MD5 | 3885b316d88beb87b84285ceb8651de7 |
|
BLAKE2b-256 | 883e82a6f0b84bc6fb7e0be240e52863c6d4ab6098cd62e4f5b972cd31e002e8 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 264.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76 |
|
MD5 | 111b79126b96b71584dbd0032557b200 |
|
BLAKE2b-256 | 7e756c8419d8f92c80dd0ee3f63bdde2702ce6398b0ac8410ff459f9b6f2f9cb |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 240.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5 |
|
MD5 | d7b1ea948ac42db469afe7045e21aa86 |
|
BLAKE2b-256 | 1762594a6829ac5679c25755362a9dc93486a8a45241394564309641425d3ff6 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d |
|
MD5 | a6beb7a4ab73b023804e37fc2a1842ec |
|
BLAKE2b-256 | ee59928322800306f6529d1852323014ee9008551e9bb027cc38d276cbc0b0e7 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 231.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba |
|
MD5 | e5048d47d90e15fac05a4e107b9fe17e |
|
BLAKE2b-256 | fd8514e5f9ccac1b64ff2f10c927b3ffdf88772aea875882406f9ba0cec8ad84 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.2 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec |
|
MD5 | 36b3654a09cd1cfc2b55b343ea8a45a4 |
|
BLAKE2b-256 | 8d60107a38c1e54176d12e06e9d4b5d755b677d71d1219217cee063911b1384f |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 54.3 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb |
|
MD5 | 82c652d07950142746ebce54400be4ce |
|
BLAKE2b-256 | 47470c999aeace6ead8a44441b4f4173e2261b18219e4ad1fe9a479871ca02fc |
Provenance
File details
Details for the file frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 94.5 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a |
|
MD5 | 92b0423420c8b980001b0bb69de6346d |
|
BLAKE2b-256 | 547929d44c4af36b2b240725dce566b20f63f9b36ef267aaaa64ee7466f4f2f8 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 51.8 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0 |
|
MD5 | 05110265359ae2de07cf867b9a642556 |
|
BLAKE2b-256 | 8b28407bc34a745151ed2322c690b6e7d83d7101472e81ed76e1ebdac0b70a78 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-win32.whl
- Upload date:
- Size: 45.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3 |
|
MD5 | c059b4cbdd974e8d87edbf3b751b9a26 |
|
BLAKE2b-256 | cb83619327da3b86ef957ee7a0cbf3c166a09ed1e87a3f7f1ff487d7d0284683 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 251.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c |
|
MD5 | 3b425ff755abfbc97eff3b384977b344 |
|
BLAKE2b-256 | 62b849768980caabf81ac4a2d156008f7cbd0107e6b36d08a313bb31035d9201 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl
- Upload date:
- Size: 265.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0 |
|
MD5 | 9bc0e5fe692b95cf0cad1423a35f7929 |
|
BLAKE2b-256 | 0ff758cd220ee1c2248ee65a32f5b4b93689e3fe1764d85537eee9fc392543bc |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 263.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b |
|
MD5 | 06e6352932e154bd426067bc2eb15e7d |
|
BLAKE2b-256 | ee5f16097a5ca0bb6b6779c02cc9379c72fe98d56115d4c54d059fb233168fb6 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 242.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b |
|
MD5 | ccd711c5efde35f8cdda7bcaff759dc9 |
|
BLAKE2b-256 | e2cd1df468fdce2f66a4608dffe44c40cdc35eeaa67ef7fd1d813f99a9a37842 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 244.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d |
|
MD5 | 87bb17758d605b62ee950031d9b7daba |
|
BLAKE2b-256 | a0103db38fb3ccbafadd80a1b0d6800c987b0e3fe3ef2d117c6ced0246eea17a |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 263.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411 |
|
MD5 | 2e5b5da832b5985b1a37761cc6b4e0a5 |
|
BLAKE2b-256 | 88be4bd93a58be57a3722fc544c36debdf9dcc6758f761092e894d78f18b8f20 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 267.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6 |
|
MD5 | 5d1cc91222414d4b3eac1f5af9bc1e73 |
|
BLAKE2b-256 | c652be5ff200815d8a341aee5b16b6b707355e0ca3652953852238eb92b120c2 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 241.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f |
|
MD5 | bde9b886ddf6b03c5d5e13521f93e859 |
|
BLAKE2b-256 | 0804e2fddc92135276e07addbc1cf413acffa0c2d848b3e54cacf684e146df49 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 242.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2 |
|
MD5 | 491fca28ff502d582bb0cda5d74b669e |
|
BLAKE2b-256 | f6339f152105227630246135188901373c4f322cc026565ca6215b063f4c82f4 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 232.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08 |
|
MD5 | d91700b8d85a62c337be0ed8b91ae6fb |
|
BLAKE2b-256 | 32ba58348b90193caa096ce9e9befea6ae67f38dabfd3aacb47e46137a6250a8 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.7 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f |
|
MD5 | dbad6bdb081cc274b9484c75363980ca |
|
BLAKE2b-256 | f8667fdecc9ef49f8db2aa4d9da916e4ecf357d867d87aea292efc11e1b2e932 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 54.7 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336 |
|
MD5 | 0150512ac9faf2d386546cc49e3cb8cd |
|
BLAKE2b-256 | 8c1bd90e554ca2b483d31cb2296e393f72c25bdc38d64526579e95576bfda587 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 95.3 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972 |
|
MD5 | d194ff08aee121d12079b5da1fa96538 |
|
BLAKE2b-256 | da4dd94ff0fb0f5313902c132817c62d19cdc5bdcd0c195d392006ef4b779fc6 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 51.9 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923 |
|
MD5 | c5a9e33873bbc61a22820b8468fcf576 |
|
BLAKE2b-256 | 0c9085bb3547c327f5975078c1be018478d5e8d250a540c828f8f31a35d2a1bd |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-win32.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-win32.whl
- Upload date:
- Size: 45.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723 |
|
MD5 | 0b905f9019c440bbecd5f2999e47a343 |
|
BLAKE2b-256 | f7412342ec4c714349793f1a1e7bd5c4aeec261e24e697fa9a5499350c3a2415 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 248.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e |
|
MD5 | 8c04cf6fe3ff16f748afa004722d486d |
|
BLAKE2b-256 | cc3d5a7c4dfff1ae57ca2cbbe9041521472ecd9446d49e7044a0e9bfd0200fd0 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl
- Upload date:
- Size: 268.5 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf |
|
MD5 | 0457b9348e6282c1c2df0ce175badbe4 |
|
BLAKE2b-256 | abbd6e7d450c5d993b413591ad9cdab6dcdfa2c6ab2cd835b2b5c1cfeb0323bf |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 267.5 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e |
|
MD5 | d44c034d34a6cfec05d8b96386c9cbfa |
|
BLAKE2b-256 | f9710ef5970e68d181571a050958e84c76a061ca52f9c6f50257d9bfdd84c7f7 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 240.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171 |
|
MD5 | 1a569b42e8e0969822c228124a2d6e81 |
|
BLAKE2b-256 | 48969141758f6a19f2061a51bb59b9907c92f9bda1ac7b2baaf67a6e352b280f |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 241.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c |
|
MD5 | ac0edf0d9b96b74e34003cd26254487b |
|
BLAKE2b-256 | b534e4219c9343f94b81068d0018cbe37948e66c68003b52bf8a05e9509d09ec |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 255.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10 |
|
MD5 | b4a404ee71b1ad860d5ae3f4b938d526 |
|
BLAKE2b-256 | 28e7d00600c072eec8f18a606e281afdf0e8606e71a4882104d0438429b02468 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 259.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307 |
|
MD5 | e1d35b4b1e674a6950ea41d864d32683 |
|
BLAKE2b-256 | bdd01f0980987bca4f94f9e8bae01980b23495ffc2e5049a3da4d9b7d2762bee |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 241.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3 |
|
MD5 | e9a25c97a76141ec9aa22300a13445cf |
|
BLAKE2b-256 | fc60a315321d8ada167b578ff9d2edc147274ead6129523b3a308501b6621b4f |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 243.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99 |
|
MD5 | 763871fcb57decc0bf1c0a86066cb748 |
|
BLAKE2b-256 | 6630f9c006223feb2ac87f1826b57f2367b60aacc43092f562dab60d2312562e |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 233.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9 |
|
MD5 | 9dd69540ddc8dbd85605659c98edf755 |
|
BLAKE2b-256 | 8271993c5f45dba7be347384ddec1ebc1b4d998291884e7690c06aa6ba755211 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 53.0 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604 |
|
MD5 | c0b71096ad75e68e32d457d91746c226 |
|
BLAKE2b-256 | 76a3c08322a91e73d1199901a77ce73971cffa06d3c74974270ff97aed6e152a |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 54.9 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10 |
|
MD5 | 878bea0940dcea39c3e0d49905f10622 |
|
BLAKE2b-256 | 1e69e4a32fc4b2fa8e9cb6bcb1bad9c7eeb4b254bc34da475b23f93264fdc306 |
Provenance
File details
Details for the file frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl
.
File metadata
- Download URL: frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 95.6 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca |
|
MD5 | aa2410c732a4ed813aa6a36a64b980fd |
|
BLAKE2b-256 | 33b500fcbe8e7e7e172829bf4addc8227d8f599a3d5def3a4e9aa2b54b3145aa |