Shift some bits and see how they line up best.
Project description
BitAlign
Given two strings of bits, find how to best align them so that they have the most bits in common.
Installation: pip install bitalign
Examples
The following snippets show a conceptual string of 16 bits A = "0001001011111111"
needs to shifted to the right by 5 in order to best line up with
the string of 16 bits B = "1111100010010111"
, at
which point they have 11 bits in common:
A = 0001001011111111
B = 1111100010010111
The only differences are how we decide to encode the bits into a list of integer.
>>> from bitalign import *
>>> # We can can treat bytes objects like b'\x12\xff' as bit arrays
>>> A = bytes([0b0001_0010, 0b1111_1111])
>>> B = bytes([0b1111_1000, 0b1001_0111])
>>> bitalign_8_msb(A, B)
(5, 11)
>>> # Reversing the bits in each byte --> use "lsb" method instead
>>> A = bytes([0b0100_1000, 0b1111_1111])
>>> B = bytes([0b0001_1111, 0b1110_1001])
>>> bitalign_8_lsb(A, B)
(5, 11)
>>> # numpy arrays also work, just make sure they have an appropriate dtype.
>>> import numpy as np
>>> A = np.array([0b0001001011111111], dtype=np.uint16)
>>> B = np.array([0b1111100010010111], dtype=np.uint16)
>>> bitalign_16_msb(A, B)
(5, 11)
>>> # Reverse bits in each uint64 --> use "lsb" method instead
>>> A = np.array([0b1111111101001000], dtype=np.uint16)
>>> B = np.array([0b1110100100011111], dtype=np.uint16)
>>> bitalign_16_lsb(A, B)
(5, 11)
>>> # Works on general pairs of c-contiguous buffer objects
>>> # numpy.array, array.array, bytes, bytearray, memoryview, etc.
>>> import array
>>> A = array.array('H', [0b0001001011111111])
>>> B = array.array('H', [0b1111100010010111])
>>> bitalign_16_msb(A, B)
(5, 11)
API
This bitalign
package exposes 8 methods:
from bitalign import (
bitalign_8_lsb,
bitalign_16_lsb,
bitalign_32_lsb,
bitalign_64_lsb,
bitalign_8_msb,
bitalign_16_msb,
bitalign_32_msb,
bitalign_64_msb,
)
bitalign_#_?sb(arr1, arr2) --> (shift_by, num_common_bits);
Return a tuple (x, y) such that when arr1 is shifted by x bits,
the number of bits in common between arr1 and arr2 is y.
Positive shifts indicate that arr1 needs to be shifted toward the back:
arr1 = --> 0001001011111111 -->
arr2 = 1111100010010111
gives (shift_by=5, num_common_bits=11)
Negative shifts indicate that arr1 needs to be shifted toward the front:
arr1 = <-- 1111100010010111 <--
arr2 = 0001001011111111
gives (shift_by=-5, num_common_bits=11)
The number (8, 16, 32, or 64) in the function name the number of bits
that must be in each array entry. 'lsb'/'msb' indicates whether the
0th bit of each logical bit-array is to be stored in the least or most
significant bit of arr[0].
If more than one shift is optimal, the negative-most shift is used.
If there are no bits in common (i.e., all zeros with all ones),
then (-num_bits, 0) is returned.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file bitalign-0.4.0.tar.gz
.
File metadata
- Download URL: bitalign-0.4.0.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af48b8c1faecfb33fc8055d191762065f94bad9c112bdc0990f7f29dd9a80eca |
|
MD5 | 5f462358b4583ac93b4c1daae2c650d4 |
|
BLAKE2b-256 | b89cfce3c9e5cee5dfae839110e0fce95f57982415523ede099c064be2688ea7 |
File details
Details for the file bitalign-0.4.0-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 16.4 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d56bedcb22e383a809068cfc902ba2ba713b3787d8fccbe15f2cf22e64d33d9 |
|
MD5 | d2be822d46a25ab63fcccfdf1d2eeecc |
|
BLAKE2b-256 | 1eff908dfbe1672d564a344790f57c44de2abad7bb9a7c9c10fbc7a7f1b0593e |
File details
Details for the file bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 14.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26eef0ced38f906a77073ad882539aa764e9100dc924f6ed1852bffd21861077 |
|
MD5 | 2193c2ca7c028dc826bb37f08d5c7faa |
|
BLAKE2b-256 | ef0f48a81b9d38b3877c280f3d625170d2e605db96669e38a3d72116e138c062 |
File details
Details for the file bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 15.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3962d1eeb20165f7822a094bef3d5a35ccfa720e6ca660539f8e2fb61c6eac96 |
|
MD5 | 08a31acf5b717a686cc3197c33b066a1 |
|
BLAKE2b-256 | a9ed89d39361eaa2a53fba04f7cc0b726c2d671fd7a248857ba14174e5a96707 |
File details
Details for the file bitalign-0.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 17.1 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b904deed63ffe90bedc3606172e7582a506ad3e82b6c2f44bb1ffaa8b55682e |
|
MD5 | 4ccbd0b51065f1c3f97b725676ddd064 |
|
BLAKE2b-256 | ddeaaeb71f144dbe1a039e73564372861b8f61973a2f9fe753f9371f1c47d1a0 |
File details
Details for the file bitalign-0.4.0-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 16.4 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3073ef82aebd5b142575a75a2e899290f82366553ccaee13bf107c79866097e6 |
|
MD5 | 4544fc20ef180469a601613c7c7e8b48 |
|
BLAKE2b-256 | d1fb116d2a47c8112016074db4749d3178def7b64879d1b13add5454d994db11 |
File details
Details for the file bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 14.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60d8c19b04ede898b913dd59b59566f595d5db52220288052c91d338d703fea2 |
|
MD5 | f4e1fc818d33cdcb520cc4f9ac447c53 |
|
BLAKE2b-256 | bb8e5d1cc9d225a583bd2b5e3049ec352469fa800ce7043a6597e456cfc179a0 |
File details
Details for the file bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 15.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03591f42b5c4ca4b0eeeb584dc9cfe6fdcad4c35684f7518ddf206bec08e0822 |
|
MD5 | 64b93d5755f80e4d474b787d45f98dd5 |
|
BLAKE2b-256 | 2abc8f425e9d5f1e36bacc48afb6bf48f9eec85d359a6ec210435120d14b87cd |
File details
Details for the file bitalign-0.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 17.1 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1727265969a4abac0ea3cf03295c7d59e4971a5f70d70ef184f9f684273efba5 |
|
MD5 | 012849b82ddd998f621e0d05b3c19cd0 |
|
BLAKE2b-256 | 27b052077e05ca34c6ee93a7f07322d4bd8bd8b61f011016158259b92f13710b |
File details
Details for the file bitalign-0.4.0-pp37-pypy37_pp73-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp37-pypy37_pp73-win_amd64.whl
- Upload date:
- Size: 16.4 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1896f5f32de66d2f37a17510040dd0031630817c7c8a2adcffd44d3cd337d1b2 |
|
MD5 | ed20f0e79e20302ad76adca825c16dc4 |
|
BLAKE2b-256 | 448714bd240a86aa3e33e2d4149e6c00fb5b10e931548c36ada7826a3f52d574 |
File details
Details for the file bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 14.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 060f88203a1162ff48b9b3cbde470203e2dc01a4deb38f4f67c34e82db53d850 |
|
MD5 | 942c85b2286c7797828d092e20f32a18 |
|
BLAKE2b-256 | 51f0b1089595cc0177b9b5c0c322230ecbf8c63b59f04397d1976f52f729cbed |
File details
Details for the file bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 15.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28a2a71fa85ff388d2a32ced8868a2f96579386e3cd5d12f86d7ae562b5d6df3 |
|
MD5 | df033c61ea931d77cfa1eb4a0e6c5a34 |
|
BLAKE2b-256 | 5272cd80bced19dde0c0ffbfb0bb09d2c34c6fce850778135e46012e8a2b796b |
File details
Details for the file bitalign-0.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 17.1 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4c12704317ec24d06b1e7b41fa4e0e2d99c355392c8e62499b39aa580afe9e9 |
|
MD5 | 852244bb6b872e4046f62c2e75925b03 |
|
BLAKE2b-256 | 0d9470a20faf21f8556c112d5f5080db6a710a2bdce20df701147ceab1541c38 |
File details
Details for the file bitalign-0.4.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 16.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1afd1db6bbd02f7d7c44bc1f7fefacf6fc76a48f37e86d7c8bfdf5a39787c580 |
|
MD5 | 68f884bf103ade675f970e0e33512b73 |
|
BLAKE2b-256 | aa5bf77e3e1549a6ff53ce603da9e47f4b9422a41bfdb16624444bcb7ca20f0b |
File details
Details for the file bitalign-0.4.0-cp311-cp311-win32.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp311-cp311-win32.whl
- Upload date:
- Size: 16.5 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03aedbb89ba7c30437e1c8b1f0735eb4ac72ca24d6f11520c1616d89a0110264 |
|
MD5 | ce06c13b3edab7bf559ae6b87bc81b80 |
|
BLAKE2b-256 | fcd4056a27f150dafa43fbd4db29e0ea8a837930fce9d14576c0bd9d6dd1efd7 |
File details
Details for the file bitalign-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 47.5 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e6b649d6c39c2d71c06ac55dfd1d6ebd4c4fba7bc179755ef4137edd9d1d69f |
|
MD5 | a172fc270ac0c6c873f42c4a9e8c4e03 |
|
BLAKE2b-256 | d8c677c63b8cdd19fe869e5230c517f3b6072a745c98e8ac10e0d820cbe19d72 |
File details
Details for the file bitalign-0.4.0-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 47.2 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 261c48fb2fe9cb59f3b631858a7190299692189e4b466d97c404a35b13dc5490 |
|
MD5 | c8bfc8ac08f1127e87afa4e03ee27206 |
|
BLAKE2b-256 | 670ec10d438011fa9e7e842f9190242694c03abb26d5e17498d1b6dc94cfc8ff |
File details
Details for the file bitalign-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 42.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25e624e48c20e2862f6872bf765e83cba08f471001696fdfd475f47b8e47d0f9 |
|
MD5 | efc9b3906bfd23bbd225416c7d4724a2 |
|
BLAKE2b-256 | adf4d1ee678aa14b4ea4f63bf3a1d27149fc2c05776a5cefc6a6168cc0a7993b |
File details
Details for the file bitalign-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f71907f72d7b4257317526b5cf973ba5bd4ffcc9ee97fc976bff0ed2473e5e16 |
|
MD5 | 28bb5f839d818427e3db03da7194f3d5 |
|
BLAKE2b-256 | 8f8c12d4f3bba2223a3f45cbd418a75856bf03a006012554a6d716be728c3452 |
File details
Details for the file bitalign-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 16.7 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3da3540ae125c5fe3bc6fb6e91e12933f5fcd05c8a16e451ccbf9a257d6c4fff |
|
MD5 | c06c0aceb454d2f9eb693ea0d1018532 |
|
BLAKE2b-256 | cb47c5ee2dd74f581b14a0329f4d8834692f7a256e9ed1ab2260f002d9589bc4 |
File details
Details for the file bitalign-0.4.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 16.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9dc9d5545ee382ffafcda49f31bcff74b019e0ca1f42d464811a336219dca92 |
|
MD5 | eaa664aceeb960d58eca43279f60175f |
|
BLAKE2b-256 | 20b0d940f0e48bcf336cbf6cae531c7dc96ce7e77a203164ab1e67cd96b08321 |
File details
Details for the file bitalign-0.4.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp310-cp310-win32.whl
- Upload date:
- Size: 16.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce74d643f9c7e5281bc8eaee90a0b9415d2c7c8222a047555ede3a7e00530ccd |
|
MD5 | 13c459663c12396c4c8a11850aa5dcfe |
|
BLAKE2b-256 | 01dbdc4176764dff8ad3c4eb1b53a9f8a6144999ecb481ac46aa4e3dac2b4783 |
File details
Details for the file bitalign-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 46.7 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | daf4a14cb84d6355d339ff83a1eaef92c8279dbddf9ef3063ab1539515dc17d3 |
|
MD5 | 438ebc2691463fcaeb1550b657966dd8 |
|
BLAKE2b-256 | 5f1b8474c69a80cedace4e4b0d4324debf54413990cde90bcf65ac76ca88ba98 |
File details
Details for the file bitalign-0.4.0-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 46.3 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10b63befc8419df2727c00f522922925d97729ab61cb4436160ea1469160ec2c |
|
MD5 | 245cbd927b30d6c6e2868b128807e0fd |
|
BLAKE2b-256 | b6a12bdd3b20624658262772f0d1c79c85712ab825678ed6a92cd6be3d83d715 |
File details
Details for the file bitalign-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 42.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab7a21c99fed2d3493c01b4129ae6624250be1bef0803af122c918772fee6e30 |
|
MD5 | f344fa7c2e21532616f02a58484d2a0c |
|
BLAKE2b-256 | 67137bc9e818da4023cd1ce95af140113737a6614c6e162781d4c8531d339bdc |
File details
Details for the file bitalign-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2da1e850f935515fae05bbd05b307bdf00283b2a2bead14589c56b83a3bfc7b |
|
MD5 | 330bc9034abd03a45906ed819f8f0670 |
|
BLAKE2b-256 | 0618314efecb64522ffb2d06c67a2e4cb4bbaa280fbaac329caf19d5dd7b643d |
File details
Details for the file bitalign-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 16.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb5549c6a026673f3f422d480ab53b8792c030f734aeaf624f879c4c54630c52 |
|
MD5 | b84ccee223566c125a26b405e19f6a1b |
|
BLAKE2b-256 | 65f3f8155db7c3a9958e7ae59a24a8ca7cb3235f1472a53925fe3183ac087256 |
File details
Details for the file bitalign-0.4.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 16.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcb35c15356b2048052f98e2a6f465326b85d57b8d69f837aba99fb4525c3217 |
|
MD5 | b63652cfc8ca980d0146c38bcb382200 |
|
BLAKE2b-256 | 0ed14389870d14bf73ea9d848d03226873133d830ceb1df879df3a78ded78bb8 |
File details
Details for the file bitalign-0.4.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp39-cp39-win32.whl
- Upload date:
- Size: 16.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54f0124ac80672b11c524c30ac6575abf7f262acc8ab59591d708d10b7a3e7ce |
|
MD5 | 421c50c2bb25ceefc68a3ff202e6e795 |
|
BLAKE2b-256 | 8c4480f66ed49e40d6a8f143888b77aed53908f8b9cc1d2e3d878fb154ccc3a0 |
File details
Details for the file bitalign-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 46.5 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e51596106aec41e48a70c500a7c594cb4ebc1d88ececb3d8e09f82b22d98ce9 |
|
MD5 | b014cfae2481e0c4e008f2b7cb3e965b |
|
BLAKE2b-256 | f2e7696c077f63c84cd60261a47560a224dc4cee8de6153659bf51eb89dbbc07 |
File details
Details for the file bitalign-0.4.0-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 46.1 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef41aab7d2391132f558718f8a5181ec73413bbc319fa56bccd56819cc8961a5 |
|
MD5 | 4284c429549434586530d43422c01273 |
|
BLAKE2b-256 | 67870a38b65c14a50c44e0aaddb1d3abde8af629956d93a2ca962934b15b4816 |
File details
Details for the file bitalign-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 42.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2dbce8d67b2cbb2c26eeac9ac4ae7dc60a3628ea3013665afd78e65c78fe959 |
|
MD5 | de8dc88a16dd46bd4b02737f744cac1a |
|
BLAKE2b-256 | 42208478cd45be85aa44e08f43dcd138ad2774d53b3cff727fc9ce96b1464b0f |
File details
Details for the file bitalign-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a1575a1c39f89186cd34f73efb22c6297ce925188fb265453f1067f1df2c303 |
|
MD5 | e0da1f4768140494d7034f76747c21c1 |
|
BLAKE2b-256 | b836f01f72d92e01cd1303786ae7afefebf157742e58b9d79c3046db23142c85 |
File details
Details for the file bitalign-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 16.6 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59ca50cd33b1f2702342f8b2b56a958fdaa283ec3f70525a01a55698b6e072ea |
|
MD5 | 1c90ffbb7f31e10c278be08113f9b6ac |
|
BLAKE2b-256 | e5775469d7cc537d1de409e8721e4c999f044ac40fc9523215ffd68a5d5cd643 |
File details
Details for the file bitalign-0.4.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 16.2 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44fcf4b22b83a3221310b08edceafc3c2cd0078ed1dd71306d3e225fcfdb1fe3 |
|
MD5 | 0829536b893b8db086497ef061207faa |
|
BLAKE2b-256 | 650d5e61e0c3352e68b012c622da121f6ec7a253aee813fa99fcabb6c3a5d1f2 |
File details
Details for the file bitalign-0.4.0-cp38-cp38-win32.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp38-cp38-win32.whl
- Upload date:
- Size: 16.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89152acd8ba7923e02b7c1c2fdcd2c89a887af51cbd69d9aa9a8bea509e67e12 |
|
MD5 | e7e2d50a936b419cb039503e2321c638 |
|
BLAKE2b-256 | 02162040a418b16a7af7668acf499d34af7cab9bcdb6a589ec90386e401719d1 |
File details
Details for the file bitalign-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 46.7 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7aac473097c6f0c4dac1c9e6aab2f4bc24762b8f45c451e43eb2125786a8e939 |
|
MD5 | 965c4fa98b069b8600d97490f5ae3f5c |
|
BLAKE2b-256 | dcad69ae62be55079461617cd2056f6a30b83c744c748d136d7443d8e029bcd2 |
File details
Details for the file bitalign-0.4.0-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 46.4 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67769e9121a762754168aa823214f16dcc55b3778b01d5ae8c1c22bd6d2c9570 |
|
MD5 | 3fb72ac4d5afffbb31cdb251d4066898 |
|
BLAKE2b-256 | ce4f1f48896ae537a0f4115fc597238e7cf58336615dfbb96b24271d3c59c729 |
File details
Details for the file bitalign-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 43.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cd45d83ab1bb9347fd15d34f592a3896dd44ba702692106bf9aae9a6620fcb4 |
|
MD5 | 99992fce943b5415ea2aa8fcea36dedf |
|
BLAKE2b-256 | e9c24f923d8140f96980858304bce277a77f0a4a128ca877086edfbec7251ef0 |
File details
Details for the file bitalign-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0edeb10fa4583a5a39d9a185a6bbf382ec70531ee73359fb0fc22e579dcdd752 |
|
MD5 | fb1dfe13bcd5f69319e5be5df501a752 |
|
BLAKE2b-256 | 28b0488cb8ca05900afeffb11dee14e4aa4600c964650910ad47cba1ee9fc579 |
File details
Details for the file bitalign-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 16.6 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 278769e329a7afea6211004b0f531c3b0816cab1b2e426a190be2990692045f8 |
|
MD5 | 3fdda95d8a331334ad3a774f96af483a |
|
BLAKE2b-256 | 56fb5418197b3f600b1dc13b631217e5867c533ff65fd378de2dd97059e2f187 |
File details
Details for the file bitalign-0.4.0-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 16.2 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9aaf842e5d030514a9d09386ffe92dd76989d2ca84eb38ffe1631a7ef6c923d2 |
|
MD5 | de1329743c9499d77d0eb42517e0a3ce |
|
BLAKE2b-256 | 4d345c880d460b1e68e099c83f44557937ea25b9b55f6613620606d74c112595 |
File details
Details for the file bitalign-0.4.0-cp37-cp37m-win32.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 16.5 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79ac50512fca6444c392361756ef1fb5f4d8503f66f12d1ccfb92681adc2df59 |
|
MD5 | d8ffcf4a84814a55b18c63c306152186 |
|
BLAKE2b-256 | 4b2be5b125401c6fc602ffdae60c12f21f2f9c30e61ab3bd743dc5ff6104e39f |
File details
Details for the file bitalign-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 47.8 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 803e6fd6b7de336a4e981be4cffa35ae6af925e3ce050ffdecf7e2cd02b0e750 |
|
MD5 | 6f02416f6bfd02340412b66dcd0fbde2 |
|
BLAKE2b-256 | fd97571439601c83fc3ebb99bf011ad9f12e86958d99f44e53d20dbc9cd83e9c |
File details
Details for the file bitalign-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 47.4 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb2f6fd7de1929c3ad1ecaada692de9d5137d1d026edd69c42fa72381bc000e7 |
|
MD5 | ca7fa01f8dd20d298966c59744b2687d |
|
BLAKE2b-256 | 8bdf3d54e9cafe314f9175302298a95314831084e561ef3e3bcfae4ba6c673f9 |
File details
Details for the file bitalign-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 43.1 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0fecedf9a9be19d8346e1d7ba7b64546354408816d90474ae23aabbb3c6bde0 |
|
MD5 | cfe60a983a1cb2b5011ef29098369261 |
|
BLAKE2b-256 | 9e3a3dbf0126290ccd57e558f086178657ea14b589cd48f255d6c444905a307a |
File details
Details for the file bitalign-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4eae2d0cb1c7f18d8c86209f754529dd44f5d8498c7eb54e9fd4e1dcbbfb88bd |
|
MD5 | e4d4afc6a4ed94cdc3071dce1a7c16de |
|
BLAKE2b-256 | 53af94011c44471df9a6c5067637dbdf50b033728d4412ad945a7ed927e44ad9 |
File details
Details for the file bitalign-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 16.7 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d06b1a361b67bcc2da5a58f75d86bcb451e8ac113d8b9311f9f140361caff20a |
|
MD5 | 00c3bf823d0246c2e854937eb48bea89 |
|
BLAKE2b-256 | 3797cd74a38dcedc046f57f5417c44abf66940a57663127011b1dff4a3bc153e |
File details
Details for the file bitalign-0.4.0-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 15.3 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ef4eea228abfa0640a68b05c54ab46ba0a02990b4fa20455c3bd60b49a39ad4 |
|
MD5 | b7fea07100f581245089d9040f58eef4 |
|
BLAKE2b-256 | 78d4db0bdcbf27d1bb571f63044735f56fb93b98af8f68fd062fff45713ef857 |
File details
Details for the file bitalign-0.4.0-cp36-cp36m-win32.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp36-cp36m-win32.whl
- Upload date:
- Size: 15.6 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a9330958922f9818305cb1b632fb6cd24f9bf48794cbe5f34df8c43e9447a78 |
|
MD5 | 70d66c50f60a021888488e294fce2f1f |
|
BLAKE2b-256 | 3b050ea16df908972b2ec6dc798755943ad2c1169dd7dc898b2585f309d93d40 |
File details
Details for the file bitalign-0.4.0-cp36-cp36m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp36-cp36m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 45.6 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c171480b2d15229677783725a6f78d52d4de6a97ac7e6a4e20fcd077c952d6e1 |
|
MD5 | dcaa97b996ebb1b453e9359faea5ceb1 |
|
BLAKE2b-256 | 59361a6035f9a084778bf00354274e57450c4ffaaefc0c58fc16926e6b8d017a |
File details
Details for the file bitalign-0.4.0-cp36-cp36m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp36-cp36m-musllinux_1_1_i686.whl
- Upload date:
- Size: 45.2 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b56392d47e925149c4c02240919b6b79a576d952d975731550bc26a721c096fd |
|
MD5 | 9bf4458048e55638e44286d4a8432d63 |
|
BLAKE2b-256 | d83d6851ed8bccd08da317c1a067c6f164f129c922519e4bb8312c731acb6d14 |
File details
Details for the file bitalign-0.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 41.8 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a752dfbfb699317918bc8d4a855d5898482e47b766b330934918a637a281e188 |
|
MD5 | 2eb60b430408f3845baaa9aec484b748 |
|
BLAKE2b-256 | f809fd6269e35c8c00e115f52d344868683309ba4fc7ed1f4bafa9d34805bead |
File details
Details for the file bitalign-0.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 40.6 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49f3391104197dec3cb59d624a5f1247923a856c08e036b7b692344edfe2ee4b |
|
MD5 | 0afc17e2b705494d711d9533d1d3f4f7 |
|
BLAKE2b-256 | cea425fb67458c63174a5cedb040b3ba61f8e8b560832f9a919bba74fdae84d9 |
File details
Details for the file bitalign-0.4.0-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bitalign-0.4.0-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 15.4 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efa1df71f6ca914cf4ba073bfe5508c641ac3721fdb3741f3fa78a458e051dfc |
|
MD5 | 99e006c86a4dae06afdda6ddf115e555 |
|
BLAKE2b-256 | fcb2b12987d69c3c75fc8f6a5faf23e4e9080ab0fb1b1bf1179a81893e8ca8c1 |