Skip to main content

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.

Release files for bitalign 0.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bitalign 0.4.0
File Size Uploaded
bitalign-0.4.0.tar.gz 10.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for bitalign 0.4.0
File
bitalign-0.4.0-pp39-pypy39_pp73-win_amd64.whl PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 Details
bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
bitalign-0.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64 Details
bitalign-0.4.0-pp38-pypy38_pp73-win_amd64.whl PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 Details
bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitalign-0.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 Details
bitalign-0.4.0-pp37-pypy37_pp73-win_amd64.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 Details
bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitalign-0.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 Details
bitalign-0.4.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
bitalign-0.4.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
bitalign-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
bitalign-0.4.0-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
bitalign-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
bitalign-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
bitalign-0.4.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
bitalign-0.4.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
bitalign-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
bitalign-0.4.0-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
bitalign-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitalign-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
bitalign-0.4.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
bitalign-0.4.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
bitalign-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
bitalign-0.4.0-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
bitalign-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitalign-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
bitalign-0.4.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
bitalign-0.4.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
bitalign-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
bitalign-0.4.0-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
bitalign-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitalign-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
bitalign-0.4.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
bitalign-0.4.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
bitalign-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
bitalign-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
bitalign-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitalign-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
bitalign-0.4.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
bitalign-0.4.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
bitalign-0.4.0-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
bitalign-0.4.0-cp36-cp36m-musllinux_1_1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 Details
bitalign-0.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
bitalign-0.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
bitalign-0.4.0-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 1.6 MB

Release files / bitalign-0.4.0.tar.gz

Download URL bitalign-0.4.0.tar.gz
Size 10.4 kB
Tags Source
SHA-256 checksum
How to use checksums
af48b8c1faecfb33fc8055d191762065f94bad9c112bdc0990f7f29dd9a80eca
BLAKE2b-256 checksum
How to use checksums
b89cfce3c9e5cee5dfae839110e0fce95f57982415523ede099c064be2688ea7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp39-pypy39_pp73-win_amd64.whl

Download URL bitalign-0.4.0-pp39-pypy39_pp73-win_amd64.whl
Size 16.4 kB
Tags PyPy 3.9 PyPy 3.9 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
8d56bedcb22e383a809068cfc902ba2ba713b3787d8fccbe15f2cf22e64d33d9
BLAKE2b-256 checksum
How to use checksums
1eff908dfbe1672d564a344790f57c44de2abad7bb9a7c9c10fbc7a7f1b0593e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.6 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
26eef0ced38f906a77073ad882539aa764e9100dc924f6ed1852bffd21861077
BLAKE2b-256 checksum
How to use checksums
ef0f48a81b9d38b3877c280f3d625170d2e605db96669e38a3d72116e138c062
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 15.1 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
3962d1eeb20165f7822a094bef3d5a35ccfa720e6ca660539f8e2fb61c6eac96
BLAKE2b-256 checksum
How to use checksums
a9ed89d39361eaa2a53fba04f7cc0b726c2d671fd7a248857ba14174e5a96707
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Size 17.1 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4b904deed63ffe90bedc3606172e7582a506ad3e82b6c2f44bb1ffaa8b55682e
BLAKE2b-256 checksum
How to use checksums
ddeaaeb71f144dbe1a039e73564372861b8f61973a2f9fe753f9371f1c47d1a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp38-pypy38_pp73-win_amd64.whl

Download URL bitalign-0.4.0-pp38-pypy38_pp73-win_amd64.whl
Size 16.4 kB
Tags PyPy 3.8 PyPy 3.8 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
3073ef82aebd5b142575a75a2e899290f82366553ccaee13bf107c79866097e6
BLAKE2b-256 checksum
How to use checksums
d1fb116d2a47c8112016074db4749d3178def7b64879d1b13add5454d994db11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.6 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
60d8c19b04ede898b913dd59b59566f595d5db52220288052c91d338d703fea2
BLAKE2b-256 checksum
How to use checksums
bb8e5d1cc9d225a583bd2b5e3049ec352469fa800ce7043a6597e456cfc179a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 15.1 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
03591f42b5c4ca4b0eeeb584dc9cfe6fdcad4c35684f7518ddf206bec08e0822
BLAKE2b-256 checksum
How to use checksums
2abc8f425e9d5f1e36bacc48afb6bf48f9eec85d359a6ec210435120d14b87cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Size 17.1 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1727265969a4abac0ea3cf03295c7d59e4971a5f70d70ef184f9f684273efba5
BLAKE2b-256 checksum
How to use checksums
27b052077e05ca34c6ee93a7f07322d4bd8bd8b61f011016158259b92f13710b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp37-pypy37_pp73-win_amd64.whl

Download URL bitalign-0.4.0-pp37-pypy37_pp73-win_amd64.whl
Size 16.4 kB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
1896f5f32de66d2f37a17510040dd0031630817c7c8a2adcffd44d3cd337d1b2
BLAKE2b-256 checksum
How to use checksums
448714bd240a86aa3e33e2d4149e6c00fb5b10e931548c36ada7826a3f52d574
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.6 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
060f88203a1162ff48b9b3cbde470203e2dc01a4deb38f4f67c34e82db53d850
BLAKE2b-256 checksum
How to use checksums
51f0b1089595cc0177b9b5c0c322230ecbf8c63b59f04397d1976f52f729cbed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 15.1 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
28a2a71fa85ff388d2a32ced8868a2f96579386e3cd5d12f86d7ae562b5d6df3
BLAKE2b-256 checksum
How to use checksums
5272cd80bced19dde0c0ffbfb0bb09d2c34c6fce850778135e46012e8a2b796b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Size 17.1 kB
Tags PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d4c12704317ec24d06b1e7b41fa4e0e2d99c355392c8e62499b39aa580afe9e9
BLAKE2b-256 checksum
How to use checksums
0d9470a20faf21f8556c112d5f5080db6a710a2bdce20df701147ceab1541c38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp311-cp311-win_amd64.whl

Download URL bitalign-0.4.0-cp311-cp311-win_amd64.whl
Size 16.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1afd1db6bbd02f7d7c44bc1f7fefacf6fc76a48f37e86d7c8bfdf5a39787c580
BLAKE2b-256 checksum
How to use checksums
aa5bf77e3e1549a6ff53ce603da9e47f4b9422a41bfdb16624444bcb7ca20f0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp311-cp311-win32.whl

Download URL bitalign-0.4.0-cp311-cp311-win32.whl
Size 16.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
03aedbb89ba7c30437e1c8b1f0735eb4ac72ca24d6f11520c1616d89a0110264
BLAKE2b-256 checksum
How to use checksums
fcd4056a27f150dafa43fbd4db29e0ea8a837930fce9d14576c0bd9d6dd1efd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL bitalign-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Size 47.5 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
4e6b649d6c39c2d71c06ac55dfd1d6ebd4c4fba7bc179755ef4137edd9d1d69f
BLAKE2b-256 checksum
How to use checksums
d8c677c63b8cdd19fe869e5230c517f3b6072a745c98e8ac10e0d820cbe19d72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp311-cp311-musllinux_1_1_i686.whl

Download URL bitalign-0.4.0-cp311-cp311-musllinux_1_1_i686.whl
Size 47.2 kB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
261c48fb2fe9cb59f3b631858a7190299692189e4b466d97c404a35b13dc5490
BLAKE2b-256 checksum
How to use checksums
670ec10d438011fa9e7e842f9190242694c03abb26d5e17498d1b6dc94cfc8ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 42.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
25e624e48c20e2862f6872bf765e83cba08f471001696fdfd475f47b8e47d0f9
BLAKE2b-256 checksum
How to use checksums
adf4d1ee678aa14b4ea4f63bf3a1d27149fc2c05776a5cefc6a6168cc0a7993b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 41.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f71907f72d7b4257317526b5cf973ba5bd4ffcc9ee97fc976bff0ed2473e5e16
BLAKE2b-256 checksum
How to use checksums
8f8c12d4f3bba2223a3f45cbd418a75856bf03a006012554a6d716be728c3452
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 16.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3da3540ae125c5fe3bc6fb6e91e12933f5fcd05c8a16e451ccbf9a257d6c4fff
BLAKE2b-256 checksum
How to use checksums
cb47c5ee2dd74f581b14a0329f4d8834692f7a256e9ed1ab2260f002d9589bc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp310-cp310-win_amd64.whl

Download URL bitalign-0.4.0-cp310-cp310-win_amd64.whl
Size 16.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
b9dc9d5545ee382ffafcda49f31bcff74b019e0ca1f42d464811a336219dca92
BLAKE2b-256 checksum
How to use checksums
20b0d940f0e48bcf336cbf6cae531c7dc96ce7e77a203164ab1e67cd96b08321
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp310-cp310-win32.whl

Download URL bitalign-0.4.0-cp310-cp310-win32.whl
Size 16.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
ce74d643f9c7e5281bc8eaee90a0b9415d2c7c8222a047555ede3a7e00530ccd
BLAKE2b-256 checksum
How to use checksums
01dbdc4176764dff8ad3c4eb1b53a9f8a6144999ecb481ac46aa4e3dac2b4783
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL bitalign-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 46.7 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
daf4a14cb84d6355d339ff83a1eaef92c8279dbddf9ef3063ab1539515dc17d3
BLAKE2b-256 checksum
How to use checksums
5f1b8474c69a80cedace4e4b0d4324debf54413990cde90bcf65ac76ca88ba98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp310-cp310-musllinux_1_1_i686.whl

Download URL bitalign-0.4.0-cp310-cp310-musllinux_1_1_i686.whl
Size 46.3 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
10b63befc8419df2727c00f522922925d97729ab61cb4436160ea1469160ec2c
BLAKE2b-256 checksum
How to use checksums
b6a12bdd3b20624658262772f0d1c79c85712ab825678ed6a92cd6be3d83d715
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 42.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ab7a21c99fed2d3493c01b4129ae6624250be1bef0803af122c918772fee6e30
BLAKE2b-256 checksum
How to use checksums
67137bc9e818da4023cd1ce95af140113737a6614c6e162781d4c8531d339bdc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 41.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c2da1e850f935515fae05bbd05b307bdf00283b2a2bead14589c56b83a3bfc7b
BLAKE2b-256 checksum
How to use checksums
0618314efecb64522ffb2d06c67a2e4cb4bbaa280fbaac329caf19d5dd7b643d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 16.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
eb5549c6a026673f3f422d480ab53b8792c030f734aeaf624f879c4c54630c52
BLAKE2b-256 checksum
How to use checksums
65f3f8155db7c3a9958e7ae59a24a8ca7cb3235f1472a53925fe3183ac087256
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp39-cp39-win_amd64.whl

Download URL bitalign-0.4.0-cp39-cp39-win_amd64.whl
Size 16.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
fcb35c15356b2048052f98e2a6f465326b85d57b8d69f837aba99fb4525c3217
BLAKE2b-256 checksum
How to use checksums
0ed14389870d14bf73ea9d848d03226873133d830ceb1df879df3a78ded78bb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp39-cp39-win32.whl

Download URL bitalign-0.4.0-cp39-cp39-win32.whl
Size 16.5 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
54f0124ac80672b11c524c30ac6575abf7f262acc8ab59591d708d10b7a3e7ce
BLAKE2b-256 checksum
How to use checksums
8c4480f66ed49e40d6a8f143888b77aed53908f8b9cc1d2e3d878fb154ccc3a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL bitalign-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 46.5 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
6e51596106aec41e48a70c500a7c594cb4ebc1d88ececb3d8e09f82b22d98ce9
BLAKE2b-256 checksum
How to use checksums
f2e7696c077f63c84cd60261a47560a224dc4cee8de6153659bf51eb89dbbc07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp39-cp39-musllinux_1_1_i686.whl

Download URL bitalign-0.4.0-cp39-cp39-musllinux_1_1_i686.whl
Size 46.1 kB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
ef41aab7d2391132f558718f8a5181ec73413bbc319fa56bccd56819cc8961a5
BLAKE2b-256 checksum
How to use checksums
67870a38b65c14a50c44e0aaddb1d3abde8af629956d93a2ca962934b15b4816
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 42.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b2dbce8d67b2cbb2c26eeac9ac4ae7dc60a3628ea3013665afd78e65c78fe959
BLAKE2b-256 checksum
How to use checksums
42208478cd45be85aa44e08f43dcd138ad2774d53b3cff727fc9ce96b1464b0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 41.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0a1575a1c39f89186cd34f73efb22c6297ce925188fb265453f1067f1df2c303
BLAKE2b-256 checksum
How to use checksums
b836f01f72d92e01cd1303786ae7afefebf157742e58b9d79c3046db23142c85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 16.6 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
59ca50cd33b1f2702342f8b2b56a958fdaa283ec3f70525a01a55698b6e072ea
BLAKE2b-256 checksum
How to use checksums
e5775469d7cc537d1de409e8721e4c999f044ac40fc9523215ffd68a5d5cd643
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp38-cp38-win_amd64.whl

Download URL bitalign-0.4.0-cp38-cp38-win_amd64.whl
Size 16.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
44fcf4b22b83a3221310b08edceafc3c2cd0078ed1dd71306d3e225fcfdb1fe3
BLAKE2b-256 checksum
How to use checksums
650d5e61e0c3352e68b012c622da121f6ec7a253aee813fa99fcabb6c3a5d1f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp38-cp38-win32.whl

Download URL bitalign-0.4.0-cp38-cp38-win32.whl
Size 16.5 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
89152acd8ba7923e02b7c1c2fdcd2c89a887af51cbd69d9aa9a8bea509e67e12
BLAKE2b-256 checksum
How to use checksums
02162040a418b16a7af7668acf499d34af7cab9bcdb6a589ec90386e401719d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL bitalign-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 46.7 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
7aac473097c6f0c4dac1c9e6aab2f4bc24762b8f45c451e43eb2125786a8e939
BLAKE2b-256 checksum
How to use checksums
dcad69ae62be55079461617cd2056f6a30b83c744c748d136d7443d8e029bcd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp38-cp38-musllinux_1_1_i686.whl

Download URL bitalign-0.4.0-cp38-cp38-musllinux_1_1_i686.whl
Size 46.4 kB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
67769e9121a762754168aa823214f16dcc55b3778b01d5ae8c1c22bd6d2c9570
BLAKE2b-256 checksum
How to use checksums
ce4f1f48896ae537a0f4115fc597238e7cf58336615dfbb96b24271d3c59c729
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 43.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5cd45d83ab1bb9347fd15d34f592a3896dd44ba702692106bf9aae9a6620fcb4
BLAKE2b-256 checksum
How to use checksums
e9c24f923d8140f96980858304bce277a77f0a4a128ca877086edfbec7251ef0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 41.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0edeb10fa4583a5a39d9a185a6bbf382ec70531ee73359fb0fc22e579dcdd752
BLAKE2b-256 checksum
How to use checksums
28b0488cb8ca05900afeffb11dee14e4aa4600c964650910ad47cba1ee9fc579
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 16.6 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
278769e329a7afea6211004b0f531c3b0816cab1b2e426a190be2990692045f8
BLAKE2b-256 checksum
How to use checksums
56fb5418197b3f600b1dc13b631217e5867c533ff65fd378de2dd97059e2f187
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp37-cp37m-win_amd64.whl

Download URL bitalign-0.4.0-cp37-cp37m-win_amd64.whl
Size 16.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
9aaf842e5d030514a9d09386ffe92dd76989d2ca84eb38ffe1631a7ef6c923d2
BLAKE2b-256 checksum
How to use checksums
4d345c880d460b1e68e099c83f44557937ea25b9b55f6613620606d74c112595
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp37-cp37m-win32.whl

Download URL bitalign-0.4.0-cp37-cp37m-win32.whl
Size 16.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
79ac50512fca6444c392361756ef1fb5f4d8503f66f12d1ccfb92681adc2df59
BLAKE2b-256 checksum
How to use checksums
4b2be5b125401c6fc602ffdae60c12f21f2f9c30e61ab3bd743dc5ff6104e39f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL bitalign-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 47.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
803e6fd6b7de336a4e981be4cffa35ae6af925e3ce050ffdecf7e2cd02b0e750
BLAKE2b-256 checksum
How to use checksums
fd97571439601c83fc3ebb99bf011ad9f12e86958d99f44e53d20dbc9cd83e9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl

Download URL bitalign-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl
Size 47.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
bb2f6fd7de1929c3ad1ecaada692de9d5137d1d026edd69c42fa72381bc000e7
BLAKE2b-256 checksum
How to use checksums
8bdf3d54e9cafe314f9175302298a95314831084e561ef3e3bcfae4ba6c673f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 43.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e0fecedf9a9be19d8346e1d7ba7b64546354408816d90474ae23aabbb3c6bde0
BLAKE2b-256 checksum
How to use checksums
9e3a3dbf0126290ccd57e558f086178657ea14b589cd48f255d6c444905a307a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 41.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4eae2d0cb1c7f18d8c86209f754529dd44f5d8498c7eb54e9fd4e1dcbbfb88bd
BLAKE2b-256 checksum
How to use checksums
53af94011c44471df9a6c5067637dbdf50b033728d4412ad945a7ed927e44ad9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Size 16.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d06b1a361b67bcc2da5a58f75d86bcb451e8ac113d8b9311f9f140361caff20a
BLAKE2b-256 checksum
How to use checksums
3797cd74a38dcedc046f57f5417c44abf66940a57663127011b1dff4a3bc153e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp36-cp36m-win_amd64.whl

Download URL bitalign-0.4.0-cp36-cp36m-win_amd64.whl
Size 15.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
3ef4eea228abfa0640a68b05c54ab46ba0a02990b4fa20455c3bd60b49a39ad4
BLAKE2b-256 checksum
How to use checksums
78d4db0bdcbf27d1bb571f63044735f56fb93b98af8f68fd062fff45713ef857
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp36-cp36m-win32.whl

Download URL bitalign-0.4.0-cp36-cp36m-win32.whl
Size 15.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
2a9330958922f9818305cb1b632fb6cd24f9bf48794cbe5f34df8c43e9447a78
BLAKE2b-256 checksum
How to use checksums
3b050ea16df908972b2ec6dc798755943ad2c1169dd7dc898b2585f309d93d40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp36-cp36m-musllinux_1_1_x86_64.whl

Download URL bitalign-0.4.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 45.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c171480b2d15229677783725a6f78d52d4de6a97ac7e6a4e20fcd077c952d6e1
BLAKE2b-256 checksum
How to use checksums
59361a6035f9a084778bf00354274e57450c4ffaaefc0c58fc16926e6b8d017a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp36-cp36m-musllinux_1_1_i686.whl

Download URL bitalign-0.4.0-cp36-cp36m-musllinux_1_1_i686.whl
Size 45.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
b56392d47e925149c4c02240919b6b79a576d952d975731550bc26a721c096fd
BLAKE2b-256 checksum
How to use checksums
d83d6851ed8bccd08da317c1a067c6f164f129c922519e4bb8312c731acb6d14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitalign-0.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 41.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a752dfbfb699317918bc8d4a855d5898482e47b766b330934918a637a281e188
BLAKE2b-256 checksum
How to use checksums
f809fd6269e35c8c00e115f52d344868683309ba4fc7ed1f4bafa9d34805bead
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitalign-0.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 40.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
49f3391104197dec3cb59d624a5f1247923a856c08e036b7b692344edfe2ee4b
BLAKE2b-256 checksum
How to use checksums
cea425fb67458c63174a5cedb040b3ba61f8e8b560832f9a919bba74fdae84d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release files / bitalign-0.4.0-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL bitalign-0.4.0-cp36-cp36m-macosx_10_9_x86_64.whl
Size 15.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
efa1df71f6ca914cf4ba073bfe5508c641ac3721fdb3741f3fa78a458e051dfc
BLAKE2b-256 checksum
How to use checksums
fcb2b12987d69c3c75fc8f6a5faf23e4e9080ab0fb1b1bf1179a81893e8ca8c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.17

Release history Release notifications | RSS feed

This release

0.4.0 This release

55 release files

0.3.0

55 release files

0.2

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page