C implementations of functions for use within SABnzbd
Project description
SABCTools - C implementations of functions for use within SABnzbd
This module implements three main sets of C implementations that are used within SABnzbd:
- yEnc decoding and encoding using SIMD routines
- CRC32 calculations
- Non-blocking SSL-socket reading
- Marking files as sparse
Of course, they can also be used in any other application.
yEnc decoding and encoding using SIMD routines
yEnc decoding and encoding performed by using yencode from animetosho,
which utilizes x86/ARM SIMD optimised routines if such CPU features are available.
CRC32 calculations
We used the crcutil library for very fast CRC calculations.
Non-blocking SSL-socket reading
When Python reads data from a non-blocking SSL socket, it is limited to receiving 16K data at once. This module implements a patched version that can read as much data is available at once. For more details, see the cpython pull request.
Marking files as sparse
Uses Windows specific system calls to mark files as sparse and set the desired size.
On other platforms the same is achieved by calling truncate.
Utility functions
Use sabctools.bytearray_malloc(size) to get an bytearray that is uninitialized (not set to 0's).
This is much faster than the built-in bytearray(size) because the data inside the new bytearray will be whatever is present in the memory block.
Installing
As simple as running:
pip install sabctools --upgrade
When you want to compile from sources, you can run in the sabctools directory:
pip install .
SIMD detection
To see which SIMD set was detected on your system, run:
python -c "import sabctools; print(sabctools.simd);"
OpenSSL detection
To see if we could link to OpenSSL library on your system, run:
python -c "import sabctools; print(sabctools.openssl_linked);"
Testing
For testing we use pytest (install via pip install -r tests/requirements.txt) and test can simply be executed by browsing to the sabctools directory and running:
pytest
Note that tests can fail if git modified the line endings of data files when checking out the repository!
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sabctools-8.2.6.tar.gz.
File metadata
- Download URL: sabctools-8.2.6.tar.gz
- Upload date:
- Size: 256.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a256522237cfd84d6d9021bc5b31197eb049b83129dcf6721451392c93831191
|
|
| MD5 |
1ddee0d69742acfa36e43e7cdf6f316b
|
|
| BLAKE2b-256 |
dffd4251879fb48eb0b88da4e0e6ec2172c1a1fefe3825d20624f53cf266a32a
|
File details
Details for the file sabctools-8.2.6-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 28.0 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7635daf2f9d6a4272c2d04779b13b39c480b4c26d878d14fb714c7e9aa86e530
|
|
| MD5 |
6a36a82f75ff2f54360f236c3c3bba24
|
|
| BLAKE2b-256 |
f42eb7a9f7bceef728f35b75af40ef1de014cf5ec6351967394e3cb7a33fd56f
|
File details
Details for the file sabctools-8.2.6-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 50.1 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1446dc07cf1e93d26e4913b46c2170238065512da74178383ef037cc952d770
|
|
| MD5 |
349e456dc7b0e3ac4245cf38fba517b6
|
|
| BLAKE2b-256 |
af54da1ecdaa72d74f2ead57a0ee1b9bd0716b8b707a7cc155e506df416bbe01
|
File details
Details for the file sabctools-8.2.6-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19e1d1d7a19850614206ff14b39b219902e5db4f696f572ddd5878e545321dba
|
|
| MD5 |
449e4f672235f60cf387c22914854e23
|
|
| BLAKE2b-256 |
752a6a7eb314ac8e4f3cb5ce3a456cf5330d74fd46265d1edea85ca508b55dad
|
File details
Details for the file sabctools-8.2.6-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff7a2be5fc6d504231076df932a067fc2928c3619f73305e2ca9f2e6c85c86cb
|
|
| MD5 |
98e81e1c4a1c74445c56719af93be440
|
|
| BLAKE2b-256 |
815ff83261f6637ed15181e2053b7b2e1d75a7fa53d7a41bb586e1d98e57d7e4
|
File details
Details for the file sabctools-8.2.6-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 579.1 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b70325402cfab91db972bb3e01bb825c4df62a79341b3faae9e43858be279745
|
|
| MD5 |
2d2fce315fa879fb8a825c48cdecf632
|
|
| BLAKE2b-256 |
bc58314972baba1acb591c02ce52de1b78253658626c3e544bc962bfb9e49cc9
|
File details
Details for the file sabctools-8.2.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 210.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cb4e60ea8d8f4f4364507466b97f898f7c594d64049dfc99110a8156c116136
|
|
| MD5 |
a30bf873367d2302b8dcfbd1f787ad61
|
|
| BLAKE2b-256 |
ef330c4ce40595ffe8bc3dcdbee8efc95276d48231fea087cc6e0b45cf999e02
|
File details
Details for the file sabctools-8.2.6-cp314-cp314t-macosx_10_13_universal2.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314t-macosx_10_13_universal2.whl
- Upload date:
- Size: 82.2 kB
- Tags: CPython 3.14t, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff1835dc4b3c6faf6478b8e8c29dafe54e1e988c450a2001d73d9031951ec3c3
|
|
| MD5 |
c4591e91a5585bf31fb0ab19c3c24660
|
|
| BLAKE2b-256 |
cf24066a95415b728bfe16c1be51023b51d8158e1e82b4d5fd138ed19632c2e3
|
File details
Details for the file sabctools-8.2.6-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 27.8 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4b8143004a02e6d40af0eb8ffe0311df0a69ca6c9580b2031e68c902a5a8404
|
|
| MD5 |
671f61076d4496064050e5a83e7316c2
|
|
| BLAKE2b-256 |
f970940cd8f29dce390626f6c08c360a3208a334def4b6538313c6e0df57e0b3
|
File details
Details for the file sabctools-8.2.6-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 49.7 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7eb513b25d902d24cb79f9be6b0cf741aa7bc3ee1d36d674d1ad6bbd5bad63c5
|
|
| MD5 |
bc15dfdbcc7b190510dc7cf3c1cf01b9
|
|
| BLAKE2b-256 |
1632e29e0e2c1bd4a160d1e2a9195018ad9a6f863ef3f76fa0e87d084faa7832
|
File details
Details for the file sabctools-8.2.6-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33a21948e523e788b27908597dccbb7f12f22be8bb69a0af9d19faf2ea36b9f5
|
|
| MD5 |
6e518956ed40435cbe0bce9688f4d7eb
|
|
| BLAKE2b-256 |
127b2973eeb1fda98305b04999be57ef8e3fe8f362431729c8c56898de816c1f
|
File details
Details for the file sabctools-8.2.6-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b876ef9229eed1467ec42582816db28447a1aae09d2c23835ca580abff0903c8
|
|
| MD5 |
5b573a220a84c1bbbe76c715c2746fc5
|
|
| BLAKE2b-256 |
dd97ad23644d5ee227e47d715b61c68a3007c6e2023f31b0e02c230b8fa54e62
|
File details
Details for the file sabctools-8.2.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 573.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56394eb7cf016eaaf247dcfe5595831d1bd23c67cb1744583784324e75dfcd49
|
|
| MD5 |
4faf63c86bbc0ce0074b41cf452b2194
|
|
| BLAKE2b-256 |
68dcf184dc73937aec3f9bf6ccd2d0346e8f9a028d2546534bf6f6723eed034a
|
File details
Details for the file sabctools-8.2.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 203.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec3899b5efc3b83ed08d47c80684b5605848b4d025f933edb2df8586e4203ed8
|
|
| MD5 |
eb775e94784692cce8798a7fa6e870d0
|
|
| BLAKE2b-256 |
e7905415d1850b572a503934190206abd9e83f978ef502989d3d7aaf0fdfda0c
|
File details
Details for the file sabctools-8.2.6-cp314-cp314-macosx_10_13_universal2.whl.
File metadata
- Download URL: sabctools-8.2.6-cp314-cp314-macosx_10_13_universal2.whl
- Upload date:
- Size: 81.7 kB
- Tags: CPython 3.14, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81648e094876e5dbaef5ec3a8124d4df6435c5f3f18913e6b9190c1177780c7f
|
|
| MD5 |
e1ac7f18d691131f131099ee4841303b
|
|
| BLAKE2b-256 |
c518aa9203a2534decdcba54d45d6e94173b1499122c6740821f3cb55e97e588
|
File details
Details for the file sabctools-8.2.6-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 27.0 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65ff2c104e8977e14c2f07527d2d55cbba224e5d04f36f0addfd4bab4e1c51ba
|
|
| MD5 |
fc4a557ebd6fb4659c3cd69ae29ad7dc
|
|
| BLAKE2b-256 |
7a27e523cfa516a4ed29191847b94ef63b9eeebb59e9c1f0dc0b2a5cd9ff46e7
|
File details
Details for the file sabctools-8.2.6-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 48.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b81d5b2010e305c38a92068b9cd7aacafee8c7b21422843c904cfe73289329da
|
|
| MD5 |
333bade82e1956989b3db60caf3383e1
|
|
| BLAKE2b-256 |
1c2a55f81841b1dd9eba20687371a71343be91ff9b5d16f8faf35b702641ded0
|
File details
Details for the file sabctools-8.2.6-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d92039324a48d20fb31c6ce708d733d52bfae4254a2a329a7d7b849fb95f1fd
|
|
| MD5 |
d5c6ecd955bcb9d8bd6d2f074eb0f70a
|
|
| BLAKE2b-256 |
b2989fd2f2e36ce71fb3bf2704edbc99baab65cf6eee7372b95d4e972cae483a
|
File details
Details for the file sabctools-8.2.6-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e6fea5c82b8a24bf3165009251a9b0e4a4d3593276c716f59c5a3576df67ff2
|
|
| MD5 |
0c865c5fdf4d46c3913756b8fdd66da1
|
|
| BLAKE2b-256 |
cb2f26e5c7cb45090d51ac480bb2b5f9b052b6d65a5db02afeb7796361e53db1
|
File details
Details for the file sabctools-8.2.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 573.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
710aa3a74ca419a7b4067c8fa2b4abdb0fbb7e25187f0d9e604d0649a01ee897
|
|
| MD5 |
339b619cff951abebb27f56cc487e5e5
|
|
| BLAKE2b-256 |
a6a23c0ff7728de6ab508d69e111a2df941c530b4e4d5050cd659c5463c475c8
|
File details
Details for the file sabctools-8.2.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 203.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcbba78252cbb025fd34497b9f2eff322227e7d2af4f47f10a8246e7710d8fa4
|
|
| MD5 |
9fa8da22eb62608e7fb1c88aa327c5c6
|
|
| BLAKE2b-256 |
2cf0eb5ac2483bca60cb040605d23a2ddce700bdc04daa26df7d4eb3a16c5301
|
File details
Details for the file sabctools-8.2.6-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: sabctools-8.2.6-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 81.7 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43ab18b86f9bf119890b6fb126ad122f702f2490eac73238f53056a23c5d7fc6
|
|
| MD5 |
fef5289905f1384c7103c46184ab3a98
|
|
| BLAKE2b-256 |
99646519d7a5e692fb8f046d9a5b4b1b31302ddd740f3de270e19e33aea56b07
|
File details
Details for the file sabctools-8.2.6-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 27.0 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30fbf1e3f21f7b7b1e75196c50eb664971272d72441827237207a936fdbd563f
|
|
| MD5 |
ee1f99e67919b75980e4f183df4f5711
|
|
| BLAKE2b-256 |
7ab882f9da40c398dbb46454d3019e5d95027246ab95ae5c8064d7f896c04eba
|
File details
Details for the file sabctools-8.2.6-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 48.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fc9a5d89a1c7231bc6b09021a99e12e007c7e5dfb38b7077305f5f8f3672826
|
|
| MD5 |
e2b497bbd22563d8d56bb05b6fc822ba
|
|
| BLAKE2b-256 |
497564020d70a13e9ea6595b9de24b649d87e77a3c9ec4541ef318ec60df5256
|
File details
Details for the file sabctools-8.2.6-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da4de350afa5ef4b2ae08d49d46c0be2ddc92aef2849ad69247f7dbfe6114e59
|
|
| MD5 |
4f00cf89bd2d92b25375b5f4b3dae11e
|
|
| BLAKE2b-256 |
b6534fb1fefcf0ba4b69fdc279e75d1662f6d8b7c1b546fac0c774ad2211a155
|
File details
Details for the file sabctools-8.2.6-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a92b91a5d70ef08f76ee1242db161ed0ad647052a94a605f6ed80d148c3491dc
|
|
| MD5 |
9996f31d7915307ad905a2966471bd9e
|
|
| BLAKE2b-256 |
5db4b707c3ff91b4ffe9c0ed4600f3b1bfb02da8396e65920dc91f02c3f87ab7
|
File details
Details for the file sabctools-8.2.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 572.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e87df1967674711de57468de10adb6e9b394d36230a7e96ea5651acd428a39db
|
|
| MD5 |
0a3120096411435cf5f7a76b132ce020
|
|
| BLAKE2b-256 |
551e307e7fbaf7db3d55236363454e98ff1fe7ba5fed3dc9bb0e1a341c17dea5
|
File details
Details for the file sabctools-8.2.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 202.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4595a01be6ee7251061406c60b71286dc78ef46679d4f0c2ef15bd8db29f7788
|
|
| MD5 |
a9359e0a6f17c361a84b41d37eeec0fd
|
|
| BLAKE2b-256 |
04451d160185b102541302d553d3372913d694beee26739277a32e862da01a4e
|
File details
Details for the file sabctools-8.2.6-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: sabctools-8.2.6-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 81.7 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
839bf5453b596cf2da594b85223b62384c001e0aa7ced03048146a2b394985b2
|
|
| MD5 |
c5d3c42d55e88fe556bc7c99da16f021
|
|
| BLAKE2b-256 |
de56fff7a04f48052433dcb8d4afaa6907f8613384e4c9e11cad8ebd936df0ba
|
File details
Details for the file sabctools-8.2.6-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 26.9 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
616baf5f5e7297e360331e85f4073688e917712f6ea4b41467b9eba546428877
|
|
| MD5 |
93cba488054074a3e9d4a8dc938e7564
|
|
| BLAKE2b-256 |
67668e5c74b37cede9ba652c39b8c16292e028857b9aa97ca2939beade87f5e7
|
File details
Details for the file sabctools-8.2.6-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 48.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d642e1769be56819146712038b5c67dd08ab671b0634c3942d5fd92608e765e4
|
|
| MD5 |
f5c2c88001194d2051c9044dc05f544d
|
|
| BLAKE2b-256 |
b482ead06248fdf8df4919d587a3f3e26ed3b2a542d3891437b9142b1c7590e3
|
File details
Details for the file sabctools-8.2.6-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f75a7d55bcbfdd98c1f77a0ce7f032b798d292c9a9f89a30640b922e0d7d2f8b
|
|
| MD5 |
3d8a9143b7d460b65499e765f9cd2210
|
|
| BLAKE2b-256 |
f21279ab56d80101f3304134e66bb007edcd3d194d3776ba7e258b78d8120821
|
File details
Details for the file sabctools-8.2.6-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5936da3ebb6b978e0dca803226355e32014f64b7e06637d0abe49b7210a4e61
|
|
| MD5 |
b1714c82499a4c6aa00f7198e6da3bdf
|
|
| BLAKE2b-256 |
3ea29aac0987f3e3d6dcff7200e219efe007de26c1b3358345bb48df117f3e8d
|
File details
Details for the file sabctools-8.2.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 571.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71710a4be1f52a8a7205ae02de2015cf6f2d44a984bcd3132fa61f23d276912e
|
|
| MD5 |
0a6e9d339fead5ad8869acea05167e09
|
|
| BLAKE2b-256 |
9819cfb1e8bb4c3ab42c8980ef038bae78ce9e0b44d5806f9a1b87dcdde07091
|
File details
Details for the file sabctools-8.2.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 201.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
373c39e8b2515eebed4d94cf6781437333f0ccfe502d2ca00674f0e6539f5c1d
|
|
| MD5 |
69014ce3290a62e4b1cc6b4cc4fdc5f4
|
|
| BLAKE2b-256 |
df6cc941cb1844d5c2af05529e1052c38a3dffe7c95b859bfd66db0d0c9906c1
|
File details
Details for the file sabctools-8.2.6-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: sabctools-8.2.6-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 81.8 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4956d8b939c230b9aa324727397ae2c7d3957fdee1ad41b5630ef48dacc09f6
|
|
| MD5 |
422132cde0e2ad9d3e438d86e41485fe
|
|
| BLAKE2b-256 |
8bb675d8ebfb8f93f0be24ede98f5b8a099a293297bbc80eaec765d1e933ca02
|
File details
Details for the file sabctools-8.2.6-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 26.9 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
486e051a640c39b2b158602cf11b58a39ab92da8638391507a30c483fcfce5fd
|
|
| MD5 |
2acdeb1b8415c475a0ed3de24f8cbaef
|
|
| BLAKE2b-256 |
8daa92855846490e953d1ff1d55bcafaa79af697193b9cdd305b814e9510532c
|
File details
Details for the file sabctools-8.2.6-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 48.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86c02a9c3a55a2f5a8a65a8db7ab8f20c7b2a2e2f1c628c3fbf5501b72aaeff8
|
|
| MD5 |
1a6d258797019c6393a026192b5219f8
|
|
| BLAKE2b-256 |
7e5af2e5346c5badd2051fea97bb2dff596ee793bf3363174404890d4d3d3f5d
|
File details
Details for the file sabctools-8.2.6-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
624b1cc830d55c08666e00e0c6f5bd924969aebe6568ddf7c17fe93c26290883
|
|
| MD5 |
1fdfbea6aaf84290a7d8a34d20ce16f6
|
|
| BLAKE2b-256 |
94aa32e12e66ff9c7677350fdee4382000f4967c6861b44ed5f2ef218ba6fd33
|
File details
Details for the file sabctools-8.2.6-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32df461d41ff789112a6a67b68617d4d2fee0395dc4307394b3df50edcfe42c3
|
|
| MD5 |
f9fd2b06ae73b8a6c3dff5db1e27d623
|
|
| BLAKE2b-256 |
b1aec27f9c0f12f3b8fafd2bb1aa5c9ad3c476a16bb13c16203faf21e50307f0
|
File details
Details for the file sabctools-8.2.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 571.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68e6f8e18808e1f28af43d52059c29b33b5a66b4eb6dd2a6727d025f56577126
|
|
| MD5 |
281fd789ed38782384270b5d72a670d1
|
|
| BLAKE2b-256 |
b823c8c6e214d6abdf58f100d08d92739de5c55b3a8439a09229aaabab4d965d
|
File details
Details for the file sabctools-8.2.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 201.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67d07e19d45320f970d829490b49db121967eafe53dfe01ba5042eb9ac7679b9
|
|
| MD5 |
bdf1dc38b5ef7bb2e07691caf756fdad
|
|
| BLAKE2b-256 |
1824d80b58d3eb9e56f1c977c71421083ba72cd0aa7c7646269bdc2e273732e6
|
File details
Details for the file sabctools-8.2.6-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: sabctools-8.2.6-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 81.8 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d17ae2d2e4c5c34f0c0fc8f8bbcd8faee676f8fe4c4e85197cf142c0af27c087
|
|
| MD5 |
7f2739b15942c0e53981badfb35b7f43
|
|
| BLAKE2b-256 |
5a942b5a0657ab4c1cb901ac203b272056c28bd4e3ad5768a1f9ef33e7e5be42
|
File details
Details for the file sabctools-8.2.6-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 26.9 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
835b829fa96ed84405d3f7ac133d451081f70ecb39848ecbd18f06070ff0e64f
|
|
| MD5 |
fac73c6bc88100d57edf28540fdb1424
|
|
| BLAKE2b-256 |
e4c121a875f937069f04c814308449a427cd0e12c76949209db3adc369f1550b
|
File details
Details for the file sabctools-8.2.6-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 48.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3861cf9afff4ee9f6e0fe188a64f96bad302e45cb54de04dbd1f31356488054e
|
|
| MD5 |
3843d84d6908606c39394091b8dad9c3
|
|
| BLAKE2b-256 |
43da4f991392620a43784d40d5fb46fd96c96ceaadb68ba101ecd89122c2da87
|
File details
Details for the file sabctools-8.2.6-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9560cfd3dd9f269a4e92c592796f0fae6f6f8568b678abdb9d6eef8143d65e57
|
|
| MD5 |
7f0f08b04816e41e4844f67f33c55ee7
|
|
| BLAKE2b-256 |
4c0c5d3fe64b71d8d593000f6724b094ca8909e9af551ad4997c4becd4dd1e17
|
File details
Details for the file sabctools-8.2.6-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7446763ee6cbdcee95c2614a5c6452eb6242c5e65037ba53a001d25892be8c9
|
|
| MD5 |
572590055fa2dbf2da14e9cdf4919fc1
|
|
| BLAKE2b-256 |
ec2bdbb085e714b8e992588f5f7d1ba3953b8e6d1b53a3a200189db54ffb35a8
|
File details
Details for the file sabctools-8.2.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 570.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7392a784b09c0e4a2d4e1bbcaaead10013ac43d74a9af08c6af44dbcb2fad31d
|
|
| MD5 |
e2a103b14ec5202193b0c20b91d18e6b
|
|
| BLAKE2b-256 |
390315b048ac623c05416737bd210ccb08eea5aee44b6bd52c80890a961dc656
|
File details
Details for the file sabctools-8.2.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 200.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cc5e8ebc3cf1e453289927955b7b605e105aedc165af219a896c5d192da0a0b
|
|
| MD5 |
74edefa7754459766d3a487faacdcfe1
|
|
| BLAKE2b-256 |
030393bea8447ea7ec99a285dd3a0e0a5644d13f5c72bb4e5bfde173816a5007
|
File details
Details for the file sabctools-8.2.6-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: sabctools-8.2.6-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 81.8 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
011ad594ee56b41fa556569649458e882de7309b0bc1d4c17efebfba78b6815d
|
|
| MD5 |
5b04ad58a6a21579d81b781b8b1f8ba0
|
|
| BLAKE2b-256 |
cac00e38e37027839a74b79c63ddd66ea9f342af55be112fb6b2a992da525044
|
File details
Details for the file sabctools-8.2.6-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 48.0 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ed7b6225bceec7260e811e845405a4583b1cf1e83c6295487750f86cc4f5252
|
|
| MD5 |
6ad557826b1bd307bbd9a1b6fb7d4d50
|
|
| BLAKE2b-256 |
0fa2d9a7ce75334d9198faa05e107fc0ad7001bf07a8b561717bde7b6fbb954c
|
File details
Details for the file sabctools-8.2.6-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6f0382b22390b125f31355cff9908cd8196d26857764bbf471e1528180eb998
|
|
| MD5 |
4133f89fe33018478c1d68fbcf5ae492
|
|
| BLAKE2b-256 |
ea23eee0470137b9a42f469761ab5fe01deed5db99b49ee485220f9f0c340f23
|
File details
Details for the file sabctools-8.2.6-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d6d535aeac18c1db56feb3539e7aa59c28c1edcf5b63fdd7af0ed1248b91445
|
|
| MD5 |
4930a35e261cd12fcc85e6d781c7a222
|
|
| BLAKE2b-256 |
c2e23c778d1fa2e225d7edbe980e09926add9fd1837e987391c0d2ffce19e2ff
|
File details
Details for the file sabctools-8.2.6-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 572.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5790aeb5663a36de40ba596ad35bca93907af4e830d543bb32c42cf21eab8934
|
|
| MD5 |
8462344889c0726a4195ba6c4a1b28ca
|
|
| BLAKE2b-256 |
3c153cfed48fdfffb49cf9ee8a068ac2cd4a077de2f89159b995ca3d8f18853c
|
File details
Details for the file sabctools-8.2.6-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sabctools-8.2.6-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 202.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ab8df2816a1e4667a4bf9a0ddc4e90b348a98e8ccebb2c5cb59718456230832
|
|
| MD5 |
e79f2cb0c0b34c49381f9cb985288b41
|
|
| BLAKE2b-256 |
782512a48addf9f70d7277a0202ecfdd6fb8495d6ba7868185aec7f029b11a2c
|
File details
Details for the file sabctools-8.2.6-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: sabctools-8.2.6-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 95.8 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5764632e8fe3df40b5be92ca2d277232e119ea908c1075045100b4b802a4bed
|
|
| MD5 |
4d180d6ba9c2e1b3f21932793f17ea87
|
|
| BLAKE2b-256 |
b21848bc642b85159fc499faf1ecb840dc647d81d1d7c610fbd959b66c8c0820
|