Skip to main content

Sorted L-One Penalized Estimation

Project description

sortedl1

CI PyPI version codecov

sortedl1 is a python package for Sorted L-One Penalized Estimation (SLOPE).

Installing

The current release can be installed from PyPI by running

pip install sortedl1

You can also install the latest development version via pip by calling

pip install git+https://github.com/jolars/sortedl1

Alternatively, you can clone the repository and install the package locally by running

pip install .

Installing from source requires a C++17 compatible compiler.

Usage

Estimators in sortedl1 are compatible with the scikit-learn interface.

import numpy as np
from numpy.random import default_rng

from sortedl1 import Slope

# Generate some random data
n = 100
p = 3

seed = 31
rng = default_rng(seed)

x = rng.standard_normal((n, p))
beta = rng.standard_normal(p)
y = x @ beta + rng.standard_normal(n)

# Fit the model
model = Slope(alpha=0.1)
model.fit(x, y)

# Print the coefficients
print(model.coef_)

Contributing

The backbone of the package is written in C++ and developed in a separate repository at https://github.com/jolars/libslope. So if you have any issues with the package other than such that are specific to the python interface, please report them there. But feel free to request features here.

When writing commit messages, please use the conventional commits format.

Versioning

sortedl1 uses semantic versioning.

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

sortedl1-0.2.2.tar.gz (842.7 kB view details)

Uploaded Source

Built Distributions

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

sortedl1-0.2.2-pp310-pypy310_pp73-win_amd64.whl (139.4 kB view details)

Uploaded PyPyWindows x86-64

sortedl1-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (177.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

sortedl1-0.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (153.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

sortedl1-0.2.2-pp39-pypy39_pp73-win_amd64.whl (139.4 kB view details)

Uploaded PyPyWindows x86-64

sortedl1-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (177.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

sortedl1-0.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (153.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

sortedl1-0.2.2-pp38-pypy38_pp73-win_amd64.whl (139.5 kB view details)

Uploaded PyPyWindows x86-64

sortedl1-0.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (177.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

sortedl1-0.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (153.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

sortedl1-0.2.2-pp37-pypy37_pp73-win_amd64.whl (139.3 kB view details)

Uploaded PyPyWindows x86-64

sortedl1-0.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (175.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

sortedl1-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (152.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

sortedl1-0.2.2-cp312-cp312-win_amd64.whl (139.8 kB view details)

Uploaded CPython 3.12Windows x86-64

sortedl1-0.2.2-cp312-cp312-win32.whl (129.0 kB view details)

Uploaded CPython 3.12Windows x86

sortedl1-0.2.2-cp312-cp312-musllinux_1_1_x86_64.whl (691.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

sortedl1-0.2.2-cp312-cp312-musllinux_1_1_i686.whl (732.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

sortedl1-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (177.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

sortedl1-0.2.2-cp312-cp312-macosx_10_9_x86_64.whl (153.9 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

sortedl1-0.2.2-cp311-cp311-win_amd64.whl (140.4 kB view details)

Uploaded CPython 3.11Windows x86-64

sortedl1-0.2.2-cp311-cp311-win32.whl (129.7 kB view details)

Uploaded CPython 3.11Windows x86

sortedl1-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl (691.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

sortedl1-0.2.2-cp311-cp311-musllinux_1_1_i686.whl (733.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

sortedl1-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (177.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

sortedl1-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl (154.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sortedl1-0.2.2-cp310-cp310-win_amd64.whl (139.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sortedl1-0.2.2-cp310-cp310-win32.whl (128.8 kB view details)

Uploaded CPython 3.10Windows x86

sortedl1-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl (691.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

sortedl1-0.2.2-cp310-cp310-musllinux_1_1_i686.whl (730.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

sortedl1-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (176.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

sortedl1-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl (153.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

sortedl1-0.2.2-cp39-cp39-win_amd64.whl (139.0 kB view details)

Uploaded CPython 3.9Windows x86-64

sortedl1-0.2.2-cp39-cp39-win32.whl (128.8 kB view details)

Uploaded CPython 3.9Windows x86

sortedl1-0.2.2-cp39-cp39-musllinux_1_1_x86_64.whl (691.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

sortedl1-0.2.2-cp39-cp39-musllinux_1_1_i686.whl (731.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

sortedl1-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (168.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (176.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

sortedl1-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (153.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

sortedl1-0.2.2-cp38-cp38-win_amd64.whl (139.2 kB view details)

Uploaded CPython 3.8Windows x86-64

sortedl1-0.2.2-cp38-cp38-win32.whl (128.5 kB view details)

Uploaded CPython 3.8Windows x86

sortedl1-0.2.2-cp38-cp38-musllinux_1_1_x86_64.whl (691.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

sortedl1-0.2.2-cp38-cp38-musllinux_1_1_i686.whl (731.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

sortedl1-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (168.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (176.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

sortedl1-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl (153.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

sortedl1-0.2.2-cp37-cp37m-win_amd64.whl (140.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

sortedl1-0.2.2-cp37-cp37m-win32.whl (130.0 kB view details)

Uploaded CPython 3.7mWindows x86

sortedl1-0.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl (692.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

sortedl1-0.2.2-cp37-cp37m-musllinux_1_1_i686.whl (732.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

sortedl1-0.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

sortedl1-0.2.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (176.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

sortedl1-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl (153.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file sortedl1-0.2.2.tar.gz.

File metadata

  • Download URL: sortedl1-0.2.2.tar.gz
  • Upload date:
  • Size: 842.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2.tar.gz
Algorithm Hash digest
SHA256 cd770e4c1eadea7cdd16ca786639a7bc010071af1cb07469f8c30e7ce4674c9a
MD5 a1907014456dca209234673d5fbee6ae
BLAKE2b-256 83719473d63c72c2f1fe2901ec2003d2ba03c38f3609c3186c01eb50df53fa72

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8a7084ed95f9a31d4992ec1373405b55edadea65eb0b96e85a7a81919fe1c03c
MD5 f09d4c38508c0f55d63991973ce68138
BLAKE2b-256 8c1179a69ffefd8a01abcf9180bf0db666ba18a0fa4fc89402cc786e4f39e93d

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 980ba0f939af601427f242131e770b59a17975418de2696911cbc6b765e3c812
MD5 7f9ff9ba65d4c0750d26088e90556afc
BLAKE2b-256 6212d275c78810c72ca6b3e398d7738282b1440603327b22d36e633d9e620629

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98d74a74718f52be3a80b942fb0d9960b18c9450e4a74072ae8e617fcafc63e7
MD5 d6d87cca9fcb972df1af18214559cb4b
BLAKE2b-256 ff4f41c5d9c435e42a67dbc6ccf8806f7dfead921cafd8d158619399f45b0f27

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24386bd303ffef64babe1795aefc2747396ca89133a2eaf35353b9d104f95ecc
MD5 fccdb33a7f8fa1ec05249334228f5c48
BLAKE2b-256 8c4d3610dee05dd4063b663220494a203e3c1211b7746fa5f736c50e1fd926ef

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7f5edfccdff23f9592d74b6f7ab61b5edd4022119d991a7ab54fb4a121689a81
MD5 769d753c94b6ff8c29a871dff18ccc99
BLAKE2b-256 0f30cbf2b45ca9bd5facc6368869ff8c70ee6017ec64e58c9964a6097ae9f501

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da119e2c7d555cd75f18e2c27a2e708816997f7a2c287a9b8f408a9395b8d4a3
MD5 6723856c0c04c08a68f59fc6b3e88d54
BLAKE2b-256 b4bf78d3b9287e4dd27e98aff22a98f556995f7599905c68d6d4262d51acde09

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9accfe96802c7d4d5d8c47eab1ebd030dc8a8c0e95e50b722e34016b5598cddb
MD5 2cb64bf7e9483632674b72dd5acc2ece
BLAKE2b-256 c6bc9034b5ec83234b55884f5fdb8b0aa8f1016f2ad99ff21645043584aa7888

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 255d0e820ea1dceace2307404ad171f9ee091b5afecab1d5ca5747851e0787e9
MD5 51028ff41ebd212c0809f7e8b167bf9d
BLAKE2b-256 6334b9b4ffce70d84108b225701ee8919c3aed4a9c091e17c88b5cc5593abb92

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9e288859b224a00fce080abd95b0788bd612907e62f8f8fba03192e13419e54e
MD5 70edfd27c4aaeeb32116a4a6c80d86aa
BLAKE2b-256 04a3378aedcd763cdc1ea92fada34f5fa1283d50416d7f9d2c677556f3f1ea45

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 392df64f25851fb0e1bf8d1148e35ffbf778b5679a8d698e63650a3a78f95ef8
MD5 cea50c43fe295c4d0e900e2a9469871c
BLAKE2b-256 1b806aaf603dc2136bab42994155fa0cf0bd74cc565c678cc12dd14c9ac0deab

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08d82c614b964ac7ab2d004e2698c8c30c7244f102110cbe1e46bae1ee6842be
MD5 2e783ae9f1f493240871f55a76ac8b05
BLAKE2b-256 43c937c1dcb8258161710898af8059e21acc1a01d1e8a5ef161a972b60ce8c28

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9375cd9b6bbcc2a1436d9b1c00eaf3654a25e1043dfd976ff4cfafa37bb03097
MD5 ea497b85ee3f3b8c07a1b718349ee126
BLAKE2b-256 d0fa3c182fe3e81f5fd0079a1d178c648d683c6b4136cc139c160371e5632ede

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d8f74fcfd46d3eada98ff00d540a37ca647d82164b11f1e87c29a0febb6e1c6e
MD5 bfe0c534a70f02029e82bd74272c8291
BLAKE2b-256 d12068e67daab30c824664ed7a883c292755e22f34cba232d4ee0f71528c8d96

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2206aeab5fca6681ace4103515078d4b0bd7a84b65173fa2f5a9e34270995746
MD5 3025c384b677189badeeaab14dff2339
BLAKE2b-256 4de2b4b1e5bfacbee43410915869410c89ad3ef9af4d4a09dd77a55c8ade7920

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 741b32b67f26799fe53204b569bcd678a2f27281633e42e744ad6c12a2950277
MD5 8a6178b0662c28cf0d1a8aebf8026193
BLAKE2b-256 6bcf95a50fc9e6ad1e8467001b8291103869c6ec2fd6626f16c167cdaf62827d

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 848191dc042704bb9beb8fa7a700267b700bd4e30c00cb9bc53cfa55edb8a3e2
MD5 2bfa576bed229bc688eb7c802b90b502
BLAKE2b-256 8b66d5ab59063c6cfae3c8f948fbdfa7ffdf08d498c2381971b258fc368044e3

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 139.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 802415cfc5ec572d9cfa56231239cddb9a6cfde7b17b4b97bd907a0627abe627
MD5 7a246c554a3f48f94accef55c7619937
BLAKE2b-256 d9123deec24329899ba8efd580998acfa562453fce5437b580adf419a8a4cce5

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 129.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f6299f89474dbf44f47497a1935486f27c99a919fcd68d11097c0bc5733146f7
MD5 5bed09c6a1d2c6cdde4723bfd9bce969
BLAKE2b-256 8a008c9f95450b4bd67f2a4189d95032a2035161b103c5c4a5a5dc4ee0cc3bcf

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 da8fad22306d1ff2958a155a7c4cb78a62eaa08d3ff9d132fa79bdeb783aa80b
MD5 8234761d3f53efeaa5955f78511e286e
BLAKE2b-256 2b74ff3f24678cc93a342bc127b90e15287f8bc3bbf8740d9d78e091d94eaa1d

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b4546abafa4936e8e75ceeb7db1827a9c6ad1dceab1928dc22aa4e791191093e
MD5 7b85f1e14d536c9ec9c495dfa62242a0
BLAKE2b-256 64306324e4cf5702835c299ec03df2ba2fdf033bf375aaf3a2779ecd18ae394a

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79a82271afe3b8db8df9f0e99d6550612d718bb98d56598d8ffcf02541716683
MD5 489b231b623f1bb91afdb40f3bc470f9
BLAKE2b-256 0bf0e75d0d8166e94d4646be97c08ab3c229ad45858a1ae0c188d1ae2ce8e94d

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83fae5ba4c2df9604688727311e76c8f669c3a5d9b8dd2e2b0ffc2fc1635fb05
MD5 268aeb511791d53481be90a87764f441
BLAKE2b-256 bdc7238d8f922025031cab7166d3933cb2df965908ac5b736576412715fde273

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12307b28eaa4e219eb1181160221370967f68aabf6c5106b9cc309ac5f331b9b
MD5 b616e3cc28bfb7b750bbe59f58edc155
BLAKE2b-256 64b767c323b28d26c7614cac88ef5397e5d4cbd58cffa43f97d27a935066de2e

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 140.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8350568df029972456ee0a71276009c72235402799650579726f89c48d44f90a
MD5 cda49e3b1211f67d7c7b42e6e19d2309
BLAKE2b-256 ca645c2163e96e2abe597d8ad5e24f18950ccbdc2ef65ac75255db7cfffbcbbb

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 129.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b69dbce3892012a32a1f2274b1e9f458893b7c54330722999ff056b7cb631367
MD5 35d8932359e4904d50f3bd8bd33f09dd
BLAKE2b-256 631f1df12e889e71d7a906f34d26670605e7f3f2cf1d25e295eacf48ece4ca17

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60dec1bd36d12ac7452259915416bdf5e18f3702717278bbab9738c3b26ff9e9
MD5 c58a1e26aaa5d3a073cad8ad5dd359eb
BLAKE2b-256 b4cf38c7a8d136421484dfc40103ed2a109bf3c5ac23737d3ebb83be2637c2cb

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3ac9f8fade932ece8df4bd8e6371f4063678cd7c1463d906827f419432920018
MD5 15bb79ae260bda34d0da5d0e4ed7b335
BLAKE2b-256 2dccc742545742d36207354801538f3d25fcf2da29f7b65fc424ca3046bf8873

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3689adf813efeb9b5cd0bf6ceaa70810e5d228f29196a21d0e73e8ede85e2e4
MD5 2c2423942bac3826f1c3e2dbb8dc79bd
BLAKE2b-256 750d77b1d1b9db591cb08a402ec2323133b0405933020bd1586ab09046211a3b

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff6edf6fb2f1aca90d1eb99288f011704b354a2a8f4c4cb0457f3b6f9fb5182d
MD5 90fb1bd41721390b1c09eade73f8b45c
BLAKE2b-256 06b76a8179a39a5e7c6e108ffdf5e5e602a31af506c34468eae2d312044a81a5

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3caec942a4c06d1fbdce8a53ccdb6a5b863f56118fcb6fa2627e502317847ccb
MD5 2d58db7f86823f940d1ab675eb9b293a
BLAKE2b-256 dfbab8f74ad3f5f38f46d58290c93ff11021be170c7a00588d5e42fcbe79e9cf

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 139.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 98ae0f7ddd29a4f80a3bb56545a3bc26c699607462111872bf5e0861f505fccd
MD5 40e42280a796dd8f28777bfa9639815f
BLAKE2b-256 5764bbb934c9adf81f7a29f37847ce00e197fd45e678b2fbaf093ee452de663a

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 128.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 939a384dcb101e1246cbf58843648aa14088acf1ebd4dcaa6f08d2e43b5e37af
MD5 3ff0756e38ef24bae1ad0fe68fb7bcd6
BLAKE2b-256 4b6ae30f7165d4a71614bead7faad6e3b81c2f7b336e438129d66d1c2a7112d5

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f804218616a8e7010a868911fad23edfc8bd075fba566132c8a4eb896f90827
MD5 c119e9476c5710ffd21197e4f2e12126
BLAKE2b-256 9a1faefff8d39cd560457589f2b946219ebc080bce6f88c1fe74e52b233814fd

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e1a0cb02e5d018b0de7fd85414786edb4f76302dbd8d0f93193b992f1004073c
MD5 48be62d3a468351327364307911cb2b4
BLAKE2b-256 afbf6db3c925f4f95f6be19b2dbeb495c0c11fda2f92e7ac393227c487b8297f

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 806d7c2e75d715c2fe7ad572f90423fba6c64fc656f7047ae4c201dc4b281d88
MD5 484264c121396fabfea68177450c1026
BLAKE2b-256 e1f23c0ea6b1466045d263f17a812f1adc0df888bacaa8b4473ff5bc753e3891

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7782f9394797413627c0bb4a81f91df4b14eed00f2e5de38404bc16d2fc4cfc3
MD5 533530c2c29e3369f88c19ae08438513
BLAKE2b-256 2fdbf31b6b29fec1ef14a57822c7638e3546cc429ea2e756b2b80d4ab877c04b

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e79f6ea323db76598a78a6284bd4ae9fc49c06578b51a0d7395fd97e2fa05ed
MD5 e61d1e203b6a7566fd01aa068b0cecb2
BLAKE2b-256 2021b9a2da1907a235e2a661d29725b9350738b5c5e90d7736a224dcb24f9c66

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 139.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bcbd46bdda646a5f54560916b549fb5c14b1e187382a27486f67a3d8b04cad86
MD5 3f01333b59eaab8aedab2a96f7c55777
BLAKE2b-256 ae4f481075211e413715353ffda4701111cd62a17cebc81ad126d3424ba85e69

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 128.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dfe01619b65567d712d48fef14e796040ad8a0593fb88554dee8cb1a319aa926
MD5 8f323425bd5e51f1d13454f129cfb27e
BLAKE2b-256 72492778a27d2ca1fa84e22839d0dcc44b85fb8da079ba891dd795c40923e643

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 207ccc50ee40b7a5605a8a7a51188aecf2a41bb6180ff138830b1526cd5b87eb
MD5 652c97d0cc54d9afda8fc32c3a9e4195
BLAKE2b-256 1af45b47893601f823196107b813d315e76465496fb42a12d5015a75dbfb753f

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9d220477f52ccb5381a1dfea0bf52d35eda9929a6491f9046453a63e1ad48313
MD5 4a684aff4986cd343dedfb8f2ebeaa0e
BLAKE2b-256 0a0a3a412a666dda6fd6ba0c90250bfff5e8c9df2d555423ea888a46dc01ea91

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 073cf8f8e4d4f4c3a49c7c0606fc5ae576ef941ce580461ade98e35811f0a03e
MD5 ca9d32057452fadc00ca72fc69abcef3
BLAKE2b-256 032983c9cca97655d746b287b0cef4b94ebf0e83bcf848784a1b6d7af9d3a4f1

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 540d54b832fd323a2413aef67f962c7d046a968662f3f09fdfd2a929a3bd14af
MD5 8fdab3489b23258ec8c0af7a1f6b0b41
BLAKE2b-256 1440d5104e71ef4054e4c6144597e4b8f0d407a4522b8022ef8c587597ac817b

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6694eeb64478393bd4eafc4be431cb7f656caf5ab68985201dd561231cc2973f
MD5 f12764e86207dfc915d7176dcefc3403
BLAKE2b-256 0743f19a7352ac9a531f7099906dc73baa789c5be371cdd1e75e73f66bc6f197

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 139.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bf50c9824429ad48bf31803ddc5909489f052dd9393288e69e0d2f7f4173141e
MD5 9a202991e381e8cd355c069389e4f05e
BLAKE2b-256 6f79fcf2ddaa861325279f3e39cdc86c3577e16f6ba70e10559a935fdb4a786d

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 128.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 154533224d6605d8273a6dfee5234e8613fdfa282cc0d4661948eb2aac6ae8a4
MD5 adc155c40d28536fe5953a55e8e75aa0
BLAKE2b-256 bc89a210ce58c13bfd6c2520de1221401e9caad53e7cae69aeaa111d102bdc7b

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 414b91704ec996c0cc9c1d93d903e69d4427870ffbf0d843faf32891cd8b67b8
MD5 9b7b2b08ad2d9445d19d55fb1ea965c7
BLAKE2b-256 db2b85a8412222320298965f15966993eb3f3a0498e4d57f5b3c5fdafb415f56

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5e3ad7a3fd8c774d5272d5385094cd247fff84f650e4055b562025644fd9e1c6
MD5 1e963d85c4f9179b9d7df14f0e933941
BLAKE2b-256 3324618483035d906e104a1b1d7a8718d1936b3a60d3867159aec9e68317c0b5

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b00ba9982ed460990838cf0cb1abefa2f8afe0da7fc363533f176d17a5718e8
MD5 16fda3bbd35fbb06ab378e6e0992cb92
BLAKE2b-256 f69c4e7d8096395e9d9470a35b80bb77835cc4ce75bae23cbe3586e878baa7e0

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8db0ba3bcca43d459f5b105c12a541995c179cd4e8224f5beaf185c1630ee48f
MD5 819bf009a7a33e8086ff8002e093b6ce
BLAKE2b-256 649c75f2485db818a22966d32a23c06f4f8601372a995c47fa2d09655931708f

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a024f05d898191a66dd074b845faa33ae04dd03ac9ddd33434d498e68581b17
MD5 b42caedf653f94c2ef2ed43e5c5f9e18
BLAKE2b-256 b02c72403a710857470dcc50455afa9c61264cb8ca49df7ccff64c5b315b3d1b

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 140.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cf633d9a7b34689f477208ba324fa87e7e1fc93a03d81e02090d0fef80e46fad
MD5 6c9b1bba5f8622716e33e5d7ff430ad0
BLAKE2b-256 f697eeba544d553ca446752bdee32e5c9b8351b12e5ae6410a0686e7a5fcfd33

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: sortedl1-0.2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 130.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for sortedl1-0.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b3e4ebebef0d9a3af0ab922d4ba137f27281184ffb6ac05762aba67071dae761
MD5 46cf0a604bf7126ab7f0f1705ef14024
BLAKE2b-256 eb8aded128719b4a08d68be3c74093a6f08a1c83b00879d1c0d8c5c60cf6bdf3

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 90d59bab060347fe72745fbb23c547dfac8aebff52d0400c4e215e05efd20d5f
MD5 1e786f6057f23ad1c6ac3678330960e4
BLAKE2b-256 b3a1931b1de28ed1e5a94720526c4d218186b0fa8302d1461e9f0f29f7888b5d

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c92de9a2bb84f1e6b3b77524d339e379b9ae5b77153f383c2bf58da2040331af
MD5 7a57fb872da2008038d8e3beba42925e
BLAKE2b-256 31c9b56f43ab1f0071e7586acdd62126e55004314cc5221c482521ba9d8910b3

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 127d776f23925c3ebb5d4c52cf4226f383524fa2b4d0e7b6792126fb5f066a07
MD5 361e9c3d86ebe1abd39a3cbffae87ce4
BLAKE2b-256 f1171df21f969102c0d20903c7e102e97439aedaf6bcc69ffd6b041ac050ff22

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92e4c23deedace9c5a6a33eda1f6e7ec22b63d720fcbe625a6207b753fbad804
MD5 d1fd6f08314ad8206a822dda050fb8f0
BLAKE2b-256 698572659c315ffda275569c62194d0280e8bffc0593f8916bca4f42409bf29f

See more details on using hashes here.

File details

Details for the file sortedl1-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sortedl1-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2914ae856267f7c13a5deb520cb87da2d0e3c43d453556469946a51250f9ee69
MD5 cafab0d7489dde495cb40ac9bc084d16
BLAKE2b-256 524376db61cab8dd1d1aeaed5a04dbcb824e891ccb85518e73b0d0d5954a3097

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