Skip to main content

Succinct data structures: BitVector with O(1) rank/select, Elias-Fano, WaveletTree.

Project description

sbits

Python bindings for the sbits Rust crate.

Provides succinct data structures with near-optimal space and efficient queries:

  • BitVector -- rank and select in O(1) time with o(n) auxiliary space.
  • EliasFano -- compressed sorted integer sequences with O(1) random access.
  • WaveletTree -- rank, select, and access over arbitrary alphabets in O(log sigma) time.

Installation

pip install sbits

Usage

from sbits import BitVector, EliasFano, WaveletTree

# Bit vector with rank/select
bv = BitVector([True, False, True, True, False, True])
bv.rank(4)    # 3 (number of set bits in [0, 4))
bv.select(2)  # 3 (position of 3rd set bit, 0-indexed)

# Elias-Fano for sorted integers
ef = EliasFano([10, 20, 30, 100, 1000])
ef[0]         # 10
30 in ef      # True

# Wavelet tree
wt = WaveletTree([3, 1, 2, 0, 3, 0, 1, 2], sigma=4)
wt.access(0)     # 3
wt.rank(3, 8)    # 2
wt.select(3, 0)  # 0

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

sbits-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sbits-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp314-cp314-win_amd64.whl (138.7 kB view details)

Uploaded CPython 3.14Windows x86-64

sbits-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sbits-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (247.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sbits-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

sbits-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp313-cp313-win_amd64.whl (138.5 kB view details)

Uploaded CPython 3.13Windows x86-64

sbits-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sbits-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (247.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sbits-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (251.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sbits-0.1.0-cp312-cp312-win_amd64.whl (138.8 kB view details)

Uploaded CPython 3.12Windows x86-64

sbits-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sbits-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (247.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sbits-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (251.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sbits-0.1.0-cp311-cp311-win_amd64.whl (140.7 kB view details)

Uploaded CPython 3.11Windows x86-64

sbits-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sbits-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (249.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sbits-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (254.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sbits-0.1.0-cp310-cp310-win_amd64.whl (140.4 kB view details)

Uploaded CPython 3.10Windows x86-64

sbits-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sbits-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sbits-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sbits-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sbits-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file sbits-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf5bbf24e90285d97e3292709528f554a9e397285d57b07dd102d9e63f727136
MD5 412f525ac400be244f5db3fb789bed57
BLAKE2b-256 c2ae8f2822a6bff4c0f5a452bfc086094713743b9278c259974fe8fcf1f21f5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de0129d5b7aafca34518a9459605821711c91cfb64ebcd492aa3c3862f066bf7
MD5 f567e3bf819fdf2b3ad9f8c0478990bb
BLAKE2b-256 05ce1beb9bbf13df5abbfcba287e4304d6b2ec13c4b79c2dd88525466ca0e344

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4953809e957337111370218092674ec4073bd2aa1cedd53ad0d3fc66ccc3daa
MD5 1468a62de4df3dcf62e2d21bd457c656
BLAKE2b-256 3d525ec494d3068fb8298dc1e4ec4dcb4a99f6bf5a33fb130c3363eb4fb21bc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sbits-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 138.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sbits-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 879b1b843b297cf98fdd67423c648c71b333e82d28f1fdda9da194fe95f5a00e
MD5 63d95447de02b1d0adf1aa056fac730e
BLAKE2b-256 56f034cc1f8d330e32de98ed35a5d3c974d14646ad332121ab0a86a7ad269e38

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f712be8dfe0e6a5efb01d5f6410b95644e11daf6786e9445dfbfedb98f902a1
MD5 b8b077082b3ddfed9eee46e906f5bd19
BLAKE2b-256 562c2040a4e0796850fa2e7f125f0eb636fdaeb2d545bab633aac3d6ba6d2bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1707ba7a0cdf85e6a154c9a29f7b39ed823d736b8dd72d8887f5539c36bf711
MD5 9c6d7b02beb4a10a8ae00dd3ec714576
BLAKE2b-256 69f679b1379fc6a3aa24c5db6dbb8334af4d87acf61f812a6854d34445a277d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af31cf4e0497a12b5cd9ff6860747753438810acf04d63371639800481b2a1a3
MD5 d4d2cf62909d19f9991839a16dd50653
BLAKE2b-256 65ad7069f326b096f34ff0fb22e09a01d31eae9fa5362f82c373e37d97367283

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fb31483db1ebc09a1dc5206f15b6c6401d07dc433378815e9a2ab16ab763466
MD5 65c0335237bf3d504ff2cf27d7e7b267
BLAKE2b-256 c413994e3b93425a874bdb235e8b3cf622ed9e1cc5bde9ac7015600fb6fe0d06

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd62dd7b70c51a6ade5e703ea8b551b8535bb5a01cfb262f5081c337de61bf0b
MD5 eafcdf9bd55f9720c8eee8174dc81c15
BLAKE2b-256 702cfbf3c57b4f169264f30ccbf9e67c97f6cc347eeaae96153ac17b28e4143f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sbits-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 138.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sbits-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4aac23f507b9344ba5b48fb12e765c87f82383725a1fc2725e69d90caf0ed10e
MD5 13bb70a9e67939afae691ad8e742c045
BLAKE2b-256 e12a37703a0f70306cc0d0f1ea15feba896e311cfd4966e4df52f3bb441a0fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 395e130283b4a3ba36afbbf21fcf1f81dd8cc340d456f088f111610162e45b69
MD5 ff63cbc0469225444f75e75653047d2b
BLAKE2b-256 e3aa15265cf86622c7384537dcc29db473c874db4ad16af3562a90409ef2bc12

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43476b7a0a665b76a7da5ce13a5acafb09fee727ffdda249b1e9b08327d76fe6
MD5 82bc8a4c5e8d2eb24c9aedf5a97d58af
BLAKE2b-256 060793020ece568b8793c17b588110fd372cea5a45e59755293a0aad1ffb439f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea26a6f4bb99e7337ac1705ac20740cb83b91a839869080881a89cf2e08ab251
MD5 8d8950550dcd49161528938ee293f486
BLAKE2b-256 b04ae2ecbfb22d6051d88279abd200ff21c6a6990ad8f24b6697cb756bc3d8f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56a32ce60f0a6f46ee2d450a163afbb2c3af8643def00a6c482685e37cc7baf3
MD5 8f3bc4db54a30eafd80e457fccb4265f
BLAKE2b-256 e6428c3e6225c4ed95a1bdffad992e03a30c4e92f712f58d7dc1098c843cc7df

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sbits-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 138.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sbits-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0fd293216cd34afad88ce1c14eb747568ec79e1812cf7272c1643acfa37437ab
MD5 5a06ff7d6dfccc263cf2e5c276d0bb9b
BLAKE2b-256 dda799c6194d7e501733b6fafe893a071cbee76aabf19bc92cd68328282ad2f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48c22f0a0530829da0e4c93b5fe514ab8108c54085f8b863f648af2f3b2d212e
MD5 ac1ae24e32276a006dcc2166d5e19a24
BLAKE2b-256 95f7125b490cff144913783e084242ee2772bb44ac02b5424656cc46124c7674

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f698297f52e490eb81be3528fef094e08827149459c804ebff79f0f6830f253f
MD5 d36676f83438d7dc38fbbd1e69441c98
BLAKE2b-256 9e6cf819ac3c4437bcefa8765d5682c079ff75af28d6fcfb130e89424a311fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48e9102855e73d964755eaf4bbd077e4c23b1232ee492007878b1e55c6eacb98
MD5 f23f2c6911e2c6d7283bd310f0d9a530
BLAKE2b-256 d654d761a9c8f02ca6e85d0c29c6cd8c7da9a3772d0d74ddccaecf68562c17c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24dc8dda6538785a40d163503c0e96898c356d6c6c4dfdd5659e597d38050391
MD5 284e9c6c2fbf5007fb64b8988528b5fe
BLAKE2b-256 6c6e68a1a2a3e160990f9455b0d92e7f762060b515f21531da110008fb1ed5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sbits-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 140.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sbits-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ee619564e94fdd4039b1c00e6f0fbbacd212d00a871b9bd02100e5a6e936505
MD5 3da4da7e58b1a05bb25806a2cac06376
BLAKE2b-256 91484e0fb2e4e8a425f367f7f5b87f974289efd39d9ce68483bd5947c09aa2e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a7a857345bacfb57584c0a73f606a77422abeff183cd9e16b604dc601fa41ce
MD5 830c933ff4d346d07f37419d34a823c7
BLAKE2b-256 1b8cbcd4bff237c4e27ff27d53e51c65650f259bdf4c9cb0fa4c6a5cd17fabed

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b0cff364eaad9c8704434830eddbdbc70b3c33c6f5d9e27bf0eeb7608e6c365
MD5 71561d26ffca189ef562a1c6707f13d3
BLAKE2b-256 6bae9e1b81ec9957c1b279a99b80d30792ae60475ba01766e971975535a13a9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff1d98c3a1bb03dc787f99b3c0c61715371c93c13d45ddf8b2da18fd61772d25
MD5 009d1e690fa5b3618e8be6a9b347fc53
BLAKE2b-256 3f9b4db9e4cf4ac8edce6dcce310b9d14e3181c384dd8376c07d7b12d26afc75

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e55595529c5c0281f09752893b7fad8be8759bbd8df750f6f74aa384620ced8
MD5 c036b7349d664295bca636265b8da3be
BLAKE2b-256 c1efcf112be9251e3172298da1c6911d6ad18758f6a8262239bd4ff351b4ebea

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sbits-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 140.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sbits-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 616888ab198d228770283552c87deaece0c18d97d674c895973e27de016dc4f6
MD5 6a90e091bb7727612533ed58a2e8df06
BLAKE2b-256 c07abab4f0ae5705bde3ea54554c5abf8f018b030e82d1e39c19e0eccb991652

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9b6b78567f823896fbd76d40520b97cce75c9c95e02e2c5fe7ba5290f0d5894
MD5 c461d56ddef31b8a042152c6d7fe8d90
BLAKE2b-256 0f221ed0d61d645d476cd859ea06e5527694c4d1e54d03d56d403c7ea05b515f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26c0b05cddea8e414156d2fd4f311992f5ebf8b8895b1c56cd9a485b3f631979
MD5 5712b69ff32923c1921310843b938239
BLAKE2b-256 398658300bf5eb88dbffe12a3bdd848746116a0b4e07481ba03e1cc0d3891388

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f424b7b42c95a200e624be88aa793975b8cd2056c314665a89fac227d038dd5
MD5 051dd10efd976b291680cd38787ccfb9
BLAKE2b-256 98ee264b8e5bc2978114578c87f583e048f730078f133a0503b293455cdcedc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a19e7d9a50b2af8dd8508cb0f0fac55aa8ceed00b22c99ef13fe9f684f65d042
MD5 754eb2c8496227ad1ea0aca6757f9d39
BLAKE2b-256 cc9fe31515236678dda042d407bda780c51a48fdc5c0b1839bfdfb58d5ba8cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6065f3bcabc3c978756727098b8ff28af2f6016a56cb524c3badc55bc86b39a
MD5 7256de0c1db9ea8cc1d992e079a13768
BLAKE2b-256 9fe97473e87f7aa43a1bf6ca5478956152898de3bf115e0d3280ccf6b8461760

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sbits-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbits-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74d5ed3c01d9f952a88e70197c316dd9d0ef4d03b32889dcd3cc33147ddef330
MD5 3c321ca3b77f7a5da1772203c98ae7c7
BLAKE2b-256 43dddd984fa2b8b7d762d0dcd5427a82c6ec8613a2784bda71f7bf4d0c17c4ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for sbits-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/sbits

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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