Skip to main content

abess: Fast Best Subset Selection

Project description

logopic

Python build status R build status codecov Documentation Status cran pypi pyversions License Codacy CodeFactor

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 (2021). “abess: A Fast Best Subset Selection Library in Python and R.” arXiv:2110.09697.

The corresponding BibteX entry:

@article{zhu-abess-arxiv,
   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 = {arXiv:2110.09697},
   year    = {2021},
}

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.3.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

abess-0.4.3-cp310-cp310-win_amd64.whl (613.3 kB view details)

Uploaded CPython 3.10Windows x86-64

abess-0.4.3-cp310-cp310-win32.whl (553.9 kB view details)

Uploaded CPython 3.10Windows x86

abess-0.4.3-cp310-cp310-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

abess-0.4.3-cp310-cp310-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

abess-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

abess-0.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (689.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

abess-0.4.3-cp310-cp310-macosx_11_0_arm64.whl (599.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

abess-0.4.3-cp310-cp310-macosx_10_9_x86_64.whl (803.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

abess-0.4.3-cp310-cp310-macosx_10_9_universal2.whl (1.4 MB view details)

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

abess-0.4.3-cp39-cp39-win_amd64.whl (613.1 kB view details)

Uploaded CPython 3.9Windows x86-64

abess-0.4.3-cp39-cp39-win32.whl (554.0 kB view details)

Uploaded CPython 3.9Windows x86

abess-0.4.3-cp39-cp39-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

abess-0.4.3-cp39-cp39-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

abess-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (657.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

abess-0.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (689.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

abess-0.4.3-cp39-cp39-macosx_11_0_arm64.whl (599.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

abess-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl (803.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

abess-0.4.3-cp39-cp39-macosx_10_9_universal2.whl (1.4 MB view details)

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

abess-0.4.3-cp38-cp38-win_amd64.whl (613.2 kB view details)

Uploaded CPython 3.8Windows x86-64

abess-0.4.3-cp38-cp38-win32.whl (553.9 kB view details)

Uploaded CPython 3.8Windows x86

abess-0.4.3-cp38-cp38-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

abess-0.4.3-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

abess-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (655.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

abess-0.4.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (688.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

abess-0.4.3-cp38-cp38-macosx_11_0_arm64.whl (599.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

abess-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl (803.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

abess-0.4.3-cp38-cp38-macosx_10_9_universal2.whl (1.4 MB view details)

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

abess-0.4.3-cp37-cp37m-win_amd64.whl (613.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

abess-0.4.3-cp37-cp37m-win32.whl (554.7 kB view details)

Uploaded CPython 3.7mWindows x86

abess-0.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

abess-0.4.3-cp37-cp37m-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

abess-0.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (655.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

abess-0.4.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (687.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

abess-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl (802.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

abess-0.4.3-cp36-cp36m-win_amd64.whl (613.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

abess-0.4.3-cp36-cp36m-win32.whl (555.2 kB view details)

Uploaded CPython 3.6mWindows x86

abess-0.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

abess-0.4.3-cp36-cp36m-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

abess-0.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (655.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

abess-0.4.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (686.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

abess-0.4.3-cp36-cp36m-macosx_10_9_x86_64.whl (802.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: abess-0.4.3.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3.tar.gz
Algorithm Hash digest
SHA256 c57b4396c7267f3bc60004bec9d3fc4208b3ecd947a03d069c1d35984864d742
MD5 b6ed2b9518ef9939a29be6f86ad6b42d
BLAKE2b-256 7e4cb9655f2d4bf0f2a8ebcc2387f3c35ec55df596c3b9c8bf59713f5354574a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 613.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8b922d637e55ddab61048e3e1a60f30f19dc3366a0f36b18683586c0dbd699f2
MD5 41823a5e4e296e099cbdd08e9c233529
BLAKE2b-256 e6d78e46f50e55880d83a2daca32fda7a59ab4a3e621b4439d710ee7d1602b8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 553.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cf9e429dd682c4dfcbf57b2c7528df361aed28a48bed0b6d519d9e887251bac0
MD5 5f0385217ea00fe04a7cd0580e289608
BLAKE2b-256 35a38d3db5ff0517150d55d51b441f798ffd4a68a9c4be048319e54f4fc42a21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a085201c5afe6fbf29a2bce5cf00f56f96e1dccfacbed0440980322e4dd77cfb
MD5 e7f82159f46157c9965d6573e0c4ca8b
BLAKE2b-256 942aafdd60de0fb85694dddc21172b0a1f59e42306cf54ae9de3a6bcaea335da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f2da8fcf8c71ffbed95a89828e69635b0fe35bc00a5fd417261364ca9d83185e
MD5 f467c2afc44d07cd72c3d93927a62f3e
BLAKE2b-256 612a63d5b2fa6543f08abfcf87f6b597aafb3ab127cfe8252b990395732b9271

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 656.7 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e6ab7b97bfa095f6909be4f60ed91ca18bbdde9a24b4fa66f60c9277b10dbb4
MD5 aa31c1370d290e8fabcda69ba8e47b71
BLAKE2b-256 0f931c3321cba453d9d456b69f7ddb2c8b292fe1090ab5ccfd7a9a1498bad76b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 689.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc9437394a220d95227cadabe5864b1cd8617bae183e54395c1db15f46a52c3b
MD5 1d5b8bf582ecd5d57e0c3154b3b67fae
BLAKE2b-256 b6604fa9acb6d126dcb967b8842ddd06110643ae521e6d9d88715f0052d51fd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 599.2 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34bb4dc6df4637f529d4329a17968be3dc8fdd6d955fc7680a2255ecc9e593a0
MD5 c2273440665facef51339ccb1fb7a3d9
BLAKE2b-256 aee232b58ee8203a4bcf2f64d427454e77c9a84c98074fd18b3f9a4a320e9171

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 803.2 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77909e38111970635131a36ebd5a35055205af788aa0909d8c6481c6fb4de9d5
MD5 11d13a94d0c28e4b86c74378502d8aa1
BLAKE2b-256 3524e9826b4e32b164678717fb439bbadc021d54a12970855f610f68c011579b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ce76ae43f5fddfbd6d003498810e4f671e29f8bc79b0a2a45ad723d200155218
MD5 3e84c2ebd1934445281f4f6902c21647
BLAKE2b-256 0059d2054fe6e1c7715e31907aa253b68b120fb2bf7ab8ee29cb69b698087279

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 613.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fb99a8a1437e4027c1ce8b011962bd5df9f2e21201082c6c106df3d8974a28b2
MD5 01d98252dc97df7d7c90d3723776675b
BLAKE2b-256 6cd9caf75a362c426849003e2edc8dfc0f26546430eaa77c473c6c0e6f8cdff7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 554.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8af41febb3d738dd911585137286f25b4626586773e8b2e964decfb107625885
MD5 19f5b561986e23de11833452c7d6a767
BLAKE2b-256 1a81d9a5e83723d6f0d5ae87b7219d589239cc6582dc31693c59ee27d22d8372

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 295ca7757704e70962dd40a2e6570532c184b4bad89753b0a065074111e9c121
MD5 b671e7262a0e4608257b6a58a77f86df
BLAKE2b-256 3575e86f80040b16bf4db14051e6fe02e80c5c4f5c4946b74094c3c91b7e023a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 392ef38fbcf2dad2236082e53ec1280326b403080863c18e7ec18a0ea29c198f
MD5 4faaf39e52dae0f4a79138fc83546ea0
BLAKE2b-256 7eccd550e3642bd8af1a44cf660ed0de16d06c66452ba0918aba417d4a5626d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 657.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89e3b479e98b160c943fd98f27f82d4e56e9db6638f47ec4a52b2f50fb7ecc2b
MD5 405db79e26592a8c6e6b91e6137f2657
BLAKE2b-256 3aac49006d33898f5f27cb7b384396af203f39e34bf9801f1593c2385613943a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 689.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dee25dc90dc26bc3e59004949d3b5e41e47d977953c8f711f30f22ff14adaf8d
MD5 95c1b37bcc9d05c901759d75d7c3af36
BLAKE2b-256 8bd0c1af9b21d25f0ec9589d8d0c7e5d0d72f18d5cd20c03752e447a9cc31547

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 599.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33fd49a816a591a4a1f29f2518714a47fa34fb28ddb78a6fe7c7485e571893a4
MD5 b6fd5124867a0149c4cc465c2a99f9c1
BLAKE2b-256 08b32da174634bc3f2d8fbd5280c25519a606b778fba7ef413da1299ac34246c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 803.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2755d02d68a607066dc77774ab0528cf2a4f701540c6110fb13b4f0979b4c73f
MD5 3760a7ad8dd8d820e5b1d4a7ba06db0c
BLAKE2b-256 2ef6f3b84ec88c1a7ef6074fda48b3f0be9dd62b5bc7784afac7a77e9c5bebbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ca063e442d7cc6d857929450aee5c91e4b44c7f3580cc0a0ae7aaa69cac4f4cc
MD5 14fb25cbaf2001e76749d63b4a677488
BLAKE2b-256 0aeb4d4d07315998fdfe5a8e1d4587af8fb56dd10249ad79f47ead08054d7e9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 613.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 257e525104c077a6b8cfa84389e6f06910d01dce02b47331ac4f31e4e2180346
MD5 a47056c534c78686144e382ab6072099
BLAKE2b-256 eef3aaffe87c631ec12108de684343b2a7b9edf6f558915beeaba29a299f1439

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 553.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ae6c77d890c145d0b11f619cab194806823952cf566149ddc862bcd3c0d6af58
MD5 2b29539add529514785e0a17ee5e43bd
BLAKE2b-256 020e7aa6bf391414e0acaf8df45a346618801f25fc1409bd201871c8d7105a1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 136ae18071cd077ed481b98d9e6a590a1522c2461720f54a4f5a81535d279e8b
MD5 148ed71c4387ca96d2d50f73caa94f66
BLAKE2b-256 279026e27e787cbffe0896a8694cfd3a974c1146c4b0625d22634aca90481fad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 574b43a2e07b27d8e2a3c9bd9cdae0cec92d21d243b60f28b291944df91b6bd7
MD5 c905c965fee59656c7b51c1146e417ff
BLAKE2b-256 3946ed139311c6eacc2b480cbb1df425ba3ca081bf663d6c4743dc5a0e936036

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 655.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1524c12de1b9afc62b1472a36a37189aa776b17ad25196199dfe61ea2645022c
MD5 1f7a301ca09e753c469e3f9fe23ae457
BLAKE2b-256 1ce1e78758c33b185d7e82fb720ab198bedd7e1d33274e1445d5ee932a90603a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 688.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91c41b82b81552073691b8b7cbd7beb77c28fbaeb12353719930a27a9108905d
MD5 990b9a735f17e5bff1e23336981cf060
BLAKE2b-256 7999f5c7454168fb1c655a2cd167e1132b39dc81729977d6bf09e86903388e98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 599.1 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff601812c109edaa5e99d9fb50fe1e57a5f0148847262a4376e3d5f0a2df66b4
MD5 c82f1785cb964925425f63a0c11a12b9
BLAKE2b-256 5497b244baf1b06073ba7935c51685c79a812c67614f7db0f337effb7e23971c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 803.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f485524c5f9269e6d40825dc850c536d792b8710d5c86b5c7c1648aa30c82385
MD5 e9d04ba61aaf3386328fdb98593c8ad5
BLAKE2b-256 dc22611e82771092c87dd88b83ef69e6ea2fad0c8cdd7de3c7e54c7c3b4b75da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 80b9aeafed14165346267d5e91d2cfc658b232ea222c27de9ca67c815bdf0225
MD5 1fa99e1fd14826c01007942416f551c2
BLAKE2b-256 0cea137bea4d24f7347ec6416bc2d72d0dc6d0335985ef475036ca4b5cc1245e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 613.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b274599201d1c06b72790fb2be8f7a0ef97693770848692f6c07897f14276340
MD5 1480610e8d069bfef2cf8dd85962c6ce
BLAKE2b-256 a54687bc18949ccc173cc05d5c329e43093b2774f05dccb8d7d033ca03ba0edd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 554.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b78bdc4a825a0bb2397539cf35717fdd70b08c226463628e6bd031bcb260bf70
MD5 332e7f9bf5b34ef96145cc579a3eb263
BLAKE2b-256 61d596c2bcfd676626bbf80043418986e32598f8fdcd6b8f4b1260e7f5fe40a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ac36c2c246cd54a76f7f496fa2b90a408ef776fb1232bb0009cff8ac7d4a69b0
MD5 0ef6ad15c8d25d554d955bc2c3b431e1
BLAKE2b-256 1b0f21a0a0fbf5da9a1ca905d35d876cecb99c2eb86ca6a0a329edc161b738ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b44c2225c4cd273aa2411813dca7ba0201f9fa0a2463386fce35eca31db9a54e
MD5 0051d42ebccf99efbe6fe19b8c8d62bb
BLAKE2b-256 dcb089d4df408d03146cefed252fda31a00e63ca7e4dc0a610be41b218bc6fe2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 655.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c8b36b87d301ed698362c0981097cc594df20886b9f0382a99e356c534b6af4
MD5 1401a1b0899e62512a2bbb8aafb45e38
BLAKE2b-256 ef97e9bee866e0dc7c8d4989fd73dc51624fd4860ad16fd3c585ec61c0683ad5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 687.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70fee3361f9c2ff94de3500f1835d85861c8b2fd4830a81a6002b4b595a3fcc8
MD5 1a343247c3e12a855721e8d3276d5edc
BLAKE2b-256 21ac65334b0e394c373a3b36c5a919902136b34d879a5c773e1e6b86dbdc66b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 802.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4aeecd9017374dfa0cccbd7951ecc1e1996912a93d2fac8aee7eef12a7af91f8
MD5 cb544e448db50f4c2c5f17a6e7cf851b
BLAKE2b-256 77ebf20ff37dce4daaf4b5b374688f09e471ae066fd0f1727d6d42fcd4985830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 613.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0493025aaa2beddecc26d15c7835e896761633855af1c9cc6e779e77aa215fd9
MD5 aca44304d9a39bd8ecdd32d04dd09fd9
BLAKE2b-256 e6f88a471f1e0456e859178d5d79bcd0e8e206a8bc465e614e1edc895fc530bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 555.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1bf49a4140e6e5cab4d3571ce8b238bfcd827523309a0ebe2882c9d05bcf3b5d
MD5 56b1d16052ceaea5681242964d786f3d
BLAKE2b-256 421777b9ab160fd1bbece5461bbada95cf38593d8154baad48c24b56990430f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f9404de3e0a2e5c221033fd7348f651f09e02e5ea95247d9e27dc22c14fa70f
MD5 78bf9d6f4001a618376e8c36eff63186
BLAKE2b-256 a5fcb8fa912b0831373e540d8640eb913a8702ef5a33f82c25a8ad2624cf77a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 77518f21ab5e8f04ff5049ae5c32c62f4fdbbc5f08bb177a89398bf4edaaa981
MD5 46b657171ccf71189f3ff9e1ed6fdc6d
BLAKE2b-256 08802355239f70d2d06cc6a18d1f8a453773580b0929e371cc3f840321095b6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 655.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8c595bc2439f02a94a69900690525a32f2c4c4082a5f460cea68b068bb026b2
MD5 fa18107703eb5e36587ba666f95bdf61
BLAKE2b-256 577fd00d94b5d5ced698e269eaff8cf114b50e514d9527df5b91bd2008e7b702

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 686.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e0878091fde92f9b99607395323a6366afc82f3d5cd5f3ec2a7a6c718b8d62a
MD5 91dc22ed236653b46dea675370b0f517
BLAKE2b-256 0c656fc09f6798afb34e74f10d09060715542f1891e7111373d592416ca6dafa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 802.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for abess-0.4.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bcceec1b450aa7031e6fc9e017f990fcd0f4619e55c60418f1e063b8b6a3781
MD5 831c223db98819a28f33d724a2b28212
BLAKE2b-256 9c087c3de009fb365046ee26829e1030376e88bf8072049f0622b8ef1b435095

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