Skip to main content

abess: Fast Best Subset Selection

Project description

logopic

Python build status R build status codecov Documentation Status cran pypi conda-forge pyversions License Codacy CodeFactor Platform Downloads

Overview

abess (Adaptive BEst Subset Selection) library aims to solve general best subset selection, i.e., find a small subset of predictors such that the resulting model is expected to have the highest accuracy. The selection for best subset shows great value in scientific researches and practical application. For example, clinicians wants to know whether a patient is health or not based on the expression level of a few of important genes.

This library implements a generic algorithm framework to find the optimal solution in an extremely fast way [1]. This framework now supports the detection of best subset under: linear regression, (multi-class) classification, censored-response modeling [2], multi-response modeling (a.k.a. multi-tasks learning), etc. It also supports the variants of best subset selection like group best subset selection [3] and nuisance best subset selection [4]. Especially, the time complexity of (group) best subset selection for linear regression is certifiably polynomial [1] [3].

Quick start

Install the stable abess Python package from Pypi:

$ pip install abess

Best subset selection for linear regression on a simulated dataset in Python:

from abess.linear import LinearRegression
from abess.datasets import make_glm_data
sim_dat = make_glm_data(n = 300, p = 1000, k = 10, family = "gaussian")
model = LinearRegression()
model.fit(sim_dat.x, sim_dat.y)

See more examples analyzed with Python in the tutorials; the notebooks are available here.

Runtime Performance

To show the power of abess in computation, we assess its timings of the CPU execution (seconds) on synthetic datasets, and compare to state-of-the-art variable selection methods. The variable selection and estimation results are deferred to performance.

We compare abess Python package with scikit-learn on linear and logistic regression. Results are presented in the below figure, and can be reproduce by running the commands in shell:

$ python ./simulation/Python/timings.py

we obtain the runtime comparison picture:

pic1

abess reaches a high efficient performance especially in linear regression where it gives the fastest solution.

Open source software

abess is a free software and its source code are publicly available in Github. The core framework is programmed in C++, and user-friendly R and Python interfaces are offered. You can redistribute it and/or modify it under the terms of the GPL-v3 License. We welcome contributions for abess, especially stretching abess to the other best subset selection problems.

Citation

If you use abess or reference our tutorials in a presentation or publication, we would appreciate citations of our library [5].

Jin Zhu, Liyuan Hu, Junhao Huang, Kangkang Jiang, Yanhang Zhang, Shiyun Lin, Junxian Zhu, Xueqin Wang (2022). “abess: A Fast Best Subset Selection Library in Python and R.” Journal of Machine Learning Research (Accepted).

The corresponding BibteX entry:

@article{zhu2022abess,
   author  = {Jin Zhu and Liyuan Hu and Junhao Huang and Kangkang Jiang and Yanhang Zhang and Shiyun Lin and Junxian Zhu and Xueqin Wang},
   title   = {abess: A Fast Best Subset Selection Library in Python and R},
   journal = {Journal of Machine Learning Research (Accepted)},
   year    = {2022}
}

References

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

abess-0.4.8.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

abess-0.4.8-cp312-cp312-win_amd64.whl (539.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

abess-0.4.8-cp312-cp312-win32.whl (492.1 kB view details)

Uploaded CPython 3.12 Windows x86

abess-0.4.8-cp312-cp312-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

abess-0.4.8-cp312-cp312-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

abess-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

abess-0.4.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (488.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

abess-0.4.8-cp312-cp312-macosx_11_0_arm64.whl (421.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

abess-0.4.8-cp312-cp312-macosx_10_9_x86_64.whl (460.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

abess-0.4.8-cp312-cp312-macosx_10_9_universal2.whl (832.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

abess-0.4.8-cp311-cp311-win_amd64.whl (538.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

abess-0.4.8-cp311-cp311-win32.whl (492.1 kB view details)

Uploaded CPython 3.11 Windows x86

abess-0.4.8-cp311-cp311-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

abess-0.4.8-cp311-cp311-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

abess-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

abess-0.4.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (489.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

abess-0.4.8-cp311-cp311-macosx_11_0_arm64.whl (420.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

abess-0.4.8-cp311-cp311-macosx_10_9_x86_64.whl (459.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

abess-0.4.8-cp311-cp311-macosx_10_9_universal2.whl (831.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

abess-0.4.8-cp310-cp310-win_amd64.whl (537.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

abess-0.4.8-cp310-cp310-win32.whl (491.1 kB view details)

Uploaded CPython 3.10 Windows x86

abess-0.4.8-cp310-cp310-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

abess-0.4.8-cp310-cp310-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

abess-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

abess-0.4.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (488.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

abess-0.4.8-cp310-cp310-macosx_11_0_arm64.whl (419.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

abess-0.4.8-cp310-cp310-macosx_10_9_x86_64.whl (459.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

abess-0.4.8-cp310-cp310-macosx_10_9_universal2.whl (829.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

abess-0.4.8-cp39-cp39-win_amd64.whl (537.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

abess-0.4.8-cp39-cp39-win32.whl (491.2 kB view details)

Uploaded CPython 3.9 Windows x86

abess-0.4.8-cp39-cp39-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

abess-0.4.8-cp39-cp39-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

abess-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

abess-0.4.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (488.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

abess-0.4.8-cp39-cp39-macosx_11_0_arm64.whl (419.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

abess-0.4.8-cp39-cp39-macosx_10_9_x86_64.whl (459.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

abess-0.4.8-cp39-cp39-macosx_10_9_universal2.whl (829.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

abess-0.4.8-cp38-cp38-win_amd64.whl (537.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

abess-0.4.8-cp38-cp38-win32.whl (491.2 kB view details)

Uploaded CPython 3.8 Windows x86

abess-0.4.8-cp38-cp38-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

abess-0.4.8-cp38-cp38-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

abess-0.4.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

abess-0.4.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (488.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

abess-0.4.8-cp38-cp38-macosx_11_0_arm64.whl (419.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

abess-0.4.8-cp38-cp38-macosx_10_9_x86_64.whl (458.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

abess-0.4.8-cp38-cp38-macosx_10_9_universal2.whl (829.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

abess-0.4.8-cp37-cp37m-win_amd64.whl (538.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

abess-0.4.8-cp37-cp37m-win32.whl (491.7 kB view details)

Uploaded CPython 3.7m Windows x86

abess-0.4.8-cp37-cp37m-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

abess-0.4.8-cp37-cp37m-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

abess-0.4.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

abess-0.4.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (488.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

abess-0.4.8-cp37-cp37m-macosx_10_9_x86_64.whl (459.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

abess-0.4.8-cp36-cp36m-win_amd64.whl (538.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

abess-0.4.8-cp36-cp36m-win32.whl (491.5 kB view details)

Uploaded CPython 3.6m Windows x86

abess-0.4.8-cp36-cp36m-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

abess-0.4.8-cp36-cp36m-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

abess-0.4.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

abess-0.4.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (488.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

abess-0.4.8-cp36-cp36m-macosx_10_9_x86_64.whl (458.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file abess-0.4.8.tar.gz.

File metadata

  • Download URL: abess-0.4.8.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8.tar.gz
Algorithm Hash digest
SHA256 1fce0dcbac8d3ab04289b3a29780e45848754f2a7948caf3ad7fa5cb10dfc031
MD5 294e6c9fe7c89217e4a8c5965e173c25
BLAKE2b-256 8a72acdbe39a0b566b6d386cf048af6871db8e48fc95349fa3707fc12893abf0

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 539.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 380d230e83afa2d6d6c15832e68d66a93d5b5e4e25abe919ee4534ba49c04b8c
MD5 6088b79f846ca38bc751467bb148c5fb
BLAKE2b-256 b566d1a2290f3c0ce0d52f736b4a68c039ce596aee512eea8954835f946c588a

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: abess-0.4.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 492.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2416a846161d06a6ff07110319de5d5c7b100bdf5d105a6a8866e37dacb72291
MD5 e53646b9833cd75725afe8bbf6749e64
BLAKE2b-256 bb53830ac3088193cc4ae41a736262b2ebc0404b1d8373a2cf2f4609686bc8ee

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6fc3f4004630a4034dced8afb171dc630d1f3469e244e27fa412fd637121068a
MD5 bb390ae44c11a4d051a8d5379df56502
BLAKE2b-256 f46a81f09eda7a316d9da8ecb843bbdf5cc34d192473fb9aaf2d8c5754829fc4

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 72af514c1f99707f5a70a7e70737c2f79723adb316f2e6226075fbdc3cc25d93
MD5 9434abbd5c52f3af9392e52e93ac162b
BLAKE2b-256 9dbc321698fcc5a5c42bdccf65e74703f647f803c4778c4afd1a64de9fa752ee

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1690f1006634e7acaaa10bb1dd36f2b791b0ca77c3389064dc617fb4dfad4f85
MD5 40b89860c4f2b967ad34d1b56f62404e
BLAKE2b-256 5af7325c667adbe3fbbea88d609547a17e79fb340b5669060b9cec20f022c497

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a4d804ecae1d6d9a21369ebc721e22161a88fcb79e2397ad79a88403311a2c4
MD5 efd5507dccf1c153ee3450f3b4d02f4f
BLAKE2b-256 5f4bf43d475ecb82e51bcc74b9ae94e711b643a6f7e02228cd102f76fca48906

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 416f0cdd9d1d7e2f2fc93605046bd184d06350cc80622cceac26a099009f9427
MD5 5b47b6fe072cee47c99d90b7d35d27be
BLAKE2b-256 b084374211e4ca1f8d7869d9b1114bd090eb000a2390711579e02370eaff660c

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4441fba48f1775b36504c54c9ff464553b4f057f65247a9de6a44dfb331c150c
MD5 d231b9624c6db4afc4311da5109eb2be
BLAKE2b-256 cdd637288edb121692f5fc21a7d6876d8ee66abf235e74bd1155a585e399c730

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 436f4be82e1ac8fff2666f0de532ac376f53f2989baa011116b0f631dd4cab3b
MD5 8d6f8eb8636e7c89d5455e5bba266662
BLAKE2b-256 ca692d53815682f2171825e14f197c8c1db9922dca0aa1cc65f7bb7571425469

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 538.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 82518acba61e3c34091ec55be5cf0731e231d574d3c34e36d083a13e4d252a45
MD5 2176ed1ba5f3b571b79cbfb782b718c5
BLAKE2b-256 d03f991f4ac3d62c4819b0b2e2da941cca90f86ced4a508cee95fa4b086c1853

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: abess-0.4.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 492.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7b10873c85827f3fd3c3669c6a9d9999a405e3e8e4b41bd50614b558d0a83973
MD5 6d961f6f057da856a79118a1b5b5cd83
BLAKE2b-256 eec781c678680dd510f2c0e71f3f9c2a533f50ce4e345dcf2bcc7e4fbc98eaae

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 def5e6dcb7912232244e1be2413a2d30a2af10041b83eeb4332c4cfb697729f4
MD5 a1fd21c19b5c2e64d35da7df0866700c
BLAKE2b-256 545731e1a7540f15ced367f50d47fdc64d773ed50314f82b1683b6c3bc668b5c

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1fd544c849a69ee3d84709eae3203ca6dc93280fc83d54ccaa87d612b3024f43
MD5 ce420f7acfcddc3cbf2b4ca1f6bccaf4
BLAKE2b-256 9930caf778a21bdcd8689966951681e93ff2887072b49739f82b05dc30802ce5

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a6bd491ab0edd8aeef23920b434b8b37fdcdf3331c0b70671874c260a603d42
MD5 0cce27088bd66b3964fdb9f47fdadb55
BLAKE2b-256 7a5c8abe70f98a3b7361182490c08d3b752cbd7bc20e04858486fdfd9d0b7b9f

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7df7c622e8dde1273c41b0ff1bade250d9548173a9ee5664020216780d008a6a
MD5 e823018fc95ac24126d377b5eb366592
BLAKE2b-256 2ae38157b394f5907e1a7d9dc983bf4bc73f70aab2234d616bcf3320d615706f

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab7f7d8feb0058832092c3832281a6460a778639378d41aecba6286bdc162b8c
MD5 a41114a9d03eca5c41948bfb6567944b
BLAKE2b-256 6e28489aca0c3d3fd5be16e8fcd5f0898963c938de103d45db60dd37c5441f30

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3db3b5a8a2d406f2a380a08276480b014595fff3ba605c45b2a5d0b6d1a5bc31
MD5 16cbb7e21462666a4cb57329a6905e68
BLAKE2b-256 f0e60076dce7fbc878c234217e97ff8c24989769d3facf29dedaeb4f0d406aeb

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b6826ff100bddb718e192d9ec684974d1e7b902c09942e58c5a3253c668c1d26
MD5 943f91ec8472b9b40d5e02997f3c4165
BLAKE2b-256 ea4cfcb26b20356618edc0bec09b27153feeb5527b2270ae8f712ab8d5044a14

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 537.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d69879cbfa7363a06e75133aa4550b296646ed564ce43e3012990e5229c730dc
MD5 bcd81bb21ce45d1fd85949209214145e
BLAKE2b-256 cc050ccaa7653b0a5d0aad8906698b32bcbb5047d9161fb6b74f8a3ad19b9baf

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-win32.whl.

File metadata

  • Download URL: abess-0.4.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 491.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 efb3a1bdb8be11d2a03410bebb689a7f671887878ee5eba19eb031a4689497ec
MD5 a1f0931c612c8e271673f34071ac21e3
BLAKE2b-256 21fe07fa03756edf498ca39cee9b8737e63d94b81bcd35b35ba416105f21c9e6

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 28724444ca09f7f1b795085f7a15686516566c5f7056eff7a7e87d0df7b5e295
MD5 857d0073ec51db30585718782ccabfc1
BLAKE2b-256 220f5d0262e3db18cc8b027de3ceaf22737ac1f5708c53207c83f616c0f05b22

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 90d3faf35fab741d41f061766e8a42de2abe6f686a829ba6983b8b78c6a4c99b
MD5 bed0b2a518ed4341ebd21650cbe26b7f
BLAKE2b-256 2a818027b12e017ac7dbc6dfb61467d2dcd14da5b138c54a906f419ef91b112a

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae93ba3c26e32a31493d5edcaf0629f82ce82152805d3b052caaf9410406499e
MD5 a621ca7786c35d7d79c40268b6163166
BLAKE2b-256 be302a7cbb47e64eaf920be1c1abc107342df978a6397dbb8feee5972b164ed2

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9cad2cf2fc4b04202df6ab7c2d70a8d787da64ebc7035214a8462ba10f42adf
MD5 5c0ccbc838cc94febb0943542abd96ee
BLAKE2b-256 c8d1355707f01ef1ddbb9d8fc88779431e542926ec6310e00aba30e723982972

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71202d74d3a0193fccb7ed940e0bbd6286ffdf5e7d65c113786122184508eef4
MD5 38ae8f96ecfb407471495bb7662f8592
BLAKE2b-256 67944744decc1cc4836a584f61e6597846c5bef7c9385ec66c4dfb9abbc334f1

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2faef6fb46310e8e72598fecb0370614ad03a9b29479f0129b3bbdb624048e60
MD5 b1eb2ca0559b41634f72d55fce63bb7e
BLAKE2b-256 607ad4f2adf366257b1f69d36342c6270134dc2bcc5e83bcd0e02fbe1e2baecb

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3e62902582f1d182db5e3cbf2adeec45db6db0c777291c9d3f25e8e8660bff2f
MD5 44514c19cc5f390b5702bee7cdcda270
BLAKE2b-256 87998620b38205f87b7d5d6b7d3a3535a38d4fbb06921ab7c74a8fd74a3ddba6

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 537.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1990fd4bbfbe353ca461ce2d7d3118ce3d650834e4883517c8a86fc813372bda
MD5 b0f34672f50ee2b5b6e26770f26eefce
BLAKE2b-256 a2f2cb1d167a79d27746799311f68e9a9b2f429bc26b1ccb073fe043b77f08ec

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-win32.whl.

File metadata

  • Download URL: abess-0.4.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 491.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4d9f17a94d2689d271ad7e0c99270f206d6a83d280e4668cb97afe618ce01d13
MD5 a596a8ae8f04ad857cdd249dea5a98fa
BLAKE2b-256 aad6a9a6597cdb330f327f39bc061e7f90e07523d495d7f6e7c85667261356fd

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d20281221bce9a2728025dee42e84b7beeffc5ddd6a9de3e8f4210c15173d01
MD5 1f7fd294c9afc6eb89b5b7f7d5d56910
BLAKE2b-256 923c0a5b81849b0416d8b21b5d470ea829a286046707a891a8dffb38b8f59051

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8c88b241d99660d05bfb6f42d785b977fc809c9af85c3c31504e7d9f8444381e
MD5 aefc28faa4d5db8be93c607140dc5e9b
BLAKE2b-256 62e5ad60d22b91f7347abf0aedc28c8ededd5b83c975d19a63bb3fb14e0cc549

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 158856800d1a3b643beea5fa0f7c68fe741c97ec19b9d1fb0815638682acf8db
MD5 a8233d8ca0a4af83af17c4508b0c72a1
BLAKE2b-256 d2aa294175ac5d42322833b7376cc5db794d2fa07137ae4cbe7805bb57b6331d

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3db2f26a9a967e2ff8cad838b5b742b534f3ef1545b5162916952d0fe0bd7407
MD5 cb2d7e3dacb1cd3b49aa0c735922863e
BLAKE2b-256 0a5e5d8fccc8324edc2ec52adc344318430c1e38c6f980357aaf04a42b3085cf

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28578158c60570e5fc23dfbdbc28eacffcc397f6834b34f633b7c4fdcaacf08b
MD5 ba92b091e82b5c54f2bf1cb894f2a6e0
BLAKE2b-256 f06949a4521ebe357516b551e4b2fc22bdc9a93b39f263ee710565cec0114c0d

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aef4bf77cb48d2332c8f65b0bcfaad99998e2a326e71550f34109ee5c6308fc6
MD5 22f80c57d08b013ec61698bc16dd1978
BLAKE2b-256 2817db4431be274b4000c47ffb3050539b62478d74c261acee39bff2993d18b2

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5f95baef3135a93d48cee21bef810bbe9d0dd911903e33da53d3652392cc993c
MD5 10175097f8ec757b3a07015a62ea3497
BLAKE2b-256 c41ab26e69a53c6b9deb4d6fe58d02b2cd8d399f39a9e4a10b7097727a03ae29

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 537.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 236bfa5d5775e166a2f2670ae70afa31b1d07a1c527637eba58d3b3722eadf1d
MD5 6ea14e20ad3aef7cb6ce09fe68b4b1a5
BLAKE2b-256 1f7621eb836f8c2f0aaf743a0b3698c3f901aa6e34d6d521f66094c150ab580d

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-win32.whl.

File metadata

  • Download URL: abess-0.4.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 491.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2fab1f3fb19f0c90319f4cbb557f517d20ab627a67167efb8e08c9c6058d4abe
MD5 0be118a5ac5ee29c6cb0d98c593e942f
BLAKE2b-256 772fdc0a7db612d786d34c285bdbc24a7354020b514a5fd649283e6f864c6337

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c8c497232fefcf1862dda57833695d10a5a701448769f654954348945a8d494f
MD5 70b7d6e8a4adedbc5a36b7e63ad5b3ac
BLAKE2b-256 3a6a19353e67a5a70e3a2f83ab03c4a79d69b7a9e00ce4ac543452935069032d

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 53d80c140dc4a8322b70d70a77219ec74651d92d7141766d5328f76546f10c25
MD5 c190f4ce5e646431318b786ef9ac67f1
BLAKE2b-256 efe00dfa6552487385e71dd5b8c3c5628f59f9fb00926763032c40108b80ab37

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 661837e6d82b0b3b83f8ba90a58b68e5cde29dc0aaf47dd108e368ab8eb5b71e
MD5 5372d6bcfc8cb380ea9ad0805082f080
BLAKE2b-256 db951b3c06f00d09fb3a2ad5ca9e02000499a21d5810e9d53f5b06f4309ca13d

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 753ceafa2693dc740b5d6fe1b41d84bae694078d8fb2cc7cfe405da3d01116f0
MD5 603a2b3aa59670f364b5f879009256d8
BLAKE2b-256 97fa8342caf85d64ccd357fae29ed52a87f7500c85022226e558714ce0c9a599

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1324032b37d555ee536cd1a3d08bd85477bd75b9d235ff02f63de01a58d96ef9
MD5 946052f950a3c2f90d408a8c72c7a67d
BLAKE2b-256 e4b7295ef72b7789ed565089aab5c908dce6654de0b2765aa183a69f75fd43db

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dde1984ce40f3f5c31cc44f085df72b58d0658af4afc48eb2af10ec4da028327
MD5 875e75c8cc22901cd0688758880b8fa3
BLAKE2b-256 e21e04d00679520f2193197d81f870332acca2598fd4454878d1bdc55599134b

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 08afbceb5415b3e70789a42d5ca3d55ed5a02daa3607d01326865547ec6dc297
MD5 78e6c6a9d928a8f29cb2141d1a72a216
BLAKE2b-256 39991283ae732bca0a1db83e555fbd1f3cde8a9c5bea6f7d2c4e56d1ac3d033d

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.8-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 538.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b5f5959c742aaa88f301c6688f2e2d05c6a289d476d4c30b408f49b3500cccd4
MD5 b5af9e61b2b4546c90c2489f6668599a
BLAKE2b-256 328861de3cc044ac855f25e86ab9fa5f931f65768fd558cb1d34a7f042fb276e

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp37-cp37m-win32.whl.

File metadata

  • Download URL: abess-0.4.8-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 491.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 50de4549c04798240ee0f22a1c999d9b169bfdab9f8abb89a010b5af11350f40
MD5 8e9a240ec5bc3a53a6ecde8d1feb0ede
BLAKE2b-256 bf4441e659225c4ba2d2279dd5b9ccbb515fef1e512c8f7a8329971cc57470f5

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 472126c1a57b165b4cd7815cbd53169b90f3498e591a0f3bf9176bf4d41e4b73
MD5 53442558070335962eb8a274f939255e
BLAKE2b-256 89c1f0a393ef07c36041d02e8387e95dd04be1c82d3710e45c1be034db4b2fcd

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bf5788ebcafabb5e31a9912fbe5ce995f063eea7519a1da497ce5c9800a87fcd
MD5 5fa3d784e34a2d1cf5b22c65afe91a89
BLAKE2b-256 c94f4f27a914a187566698edcb23521f53e9308f156886ee70b21f1a35fc2b0a

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6edca2c0c4376daf3e1b847c78d63e8ab4ee501d806d41aa942203b656c2147
MD5 6d3eccc862cac4106572fef06739b55a
BLAKE2b-256 bbf508a9dedfd4dc667d4698d32d794791ec5edd77380427d07f0ee9bb09456e

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aeed37b4380678ea22107b969c74d20687cf39020eeaaa8288d3150e8f394a46
MD5 6cc373e08f188028c958219df303a1de
BLAKE2b-256 42b43a142cc0c5af23d96d89b6fa02a865e13229ea8cd07ef439411c9a7e9ef2

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35d3d5ac19acbc0e2bd7c7c8fd3a37fa77b870e34d04003c3caab14ea66ac3b5
MD5 c592beee4c8a8082bdf4fca0240335ce
BLAKE2b-256 2f7abe39509db106a4288701337cfc5412e7ea60ac1fada6391120cb8cf37438

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.8-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 538.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 80622265c551daa80329e1c9f364fe6c8f3f7335517c1c9423ac15fac0195a01
MD5 903b323df194a0bd882418f5c7e3715e
BLAKE2b-256 ceb2d1b9baf644826c13cffb1db6be8528c4f7f2e006456c7cd1b4dcdbc3488d

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp36-cp36m-win32.whl.

File metadata

  • Download URL: abess-0.4.8-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 491.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for abess-0.4.8-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 69843ec24b7e337975b1637413edba0763913ee968be82103a3e98c72f0dfab0
MD5 19eeb1272c44dd107112ce5880a56edf
BLAKE2b-256 578fdb70762516534dfb9469303d416e7be8699f511cbce07609908af124f450

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7fa70bf290cbe40af1087253ef74d61f7eb4034db43bc70890d6e5f263de305e
MD5 9068a71a5b10f3c61c062c1a6096199b
BLAKE2b-256 78b4df94ba03e879c6151af740a6ea0255cd12924520f398e6a6771f302f3f7e

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2f8db46bc7cff637998e1b1774d5313fd078a9145708229e9b047120cfc20c51
MD5 9b4510e641f4fcca72552a0305b547f7
BLAKE2b-256 a7457ec6d8780bfc76afb1569e79c1d130b668a6092f2e792b0f41023e6f41ee

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21581415050abb8fc7cf428760eb2bac9847a6a5acab6133c4ea61a8f5ab7f49
MD5 00d7427249526c43d9d9817da0c3cbbf
BLAKE2b-256 5f1ea9321b375469ae2cd20869eb097db465e7566591fc79de443e1783c727ad

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 132be55e495135879b33a3f702c56dc3831eb2b88c9dbe28038654298a501c9b
MD5 e601fde25f204931c5de1b842d8d0ab3
BLAKE2b-256 75aa716e1233276141ebeef9cf2a6d5442d09b0b7a5a385e2fa7ebc43a3fb33b

See more details on using hashes here.

File details

Details for the file abess-0.4.8-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.8-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c300be0810d24b5f923da4e841e92e4ced5b4420e719e8e07389c21009719ee0
MD5 41f08781b2b9dc0754a0c0cf1ad14b0d
BLAKE2b-256 29d6d612654d35e82a3bb14d0f5d468a6a98fff0842d0a2782c4ad1101dbcb09

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page