Skip to main content

fast base16384 encode and decode

Project description

✨ pybase16384 ✨

The python binding for base16384

一种神奇的编码

pypi python implementation wheel license action

使用

  • 编码/解码文本
>>> import pybase16384 as pybs
>>> pybs.encode_string('hello!!')
'栙擆羼漡'
>>> pybs.decode_string('栙擆羼漡')
'hello!!'
  • 编码文件
from io import BytesIO

import pybase16384 as pybs

with open("input.pcm", "rb") as f:
    data = f.read()
for i in range(1):
    pybs.encode_file(BytesIO(data), open("output2.pcm", 'wb'), True)
  • 解码文件
from io import BytesIO

import pybase16384 as pybs

with open("output2.pcm", "rb") as f:
    data = f.read()
for i in range(1):
    pybs.decode_file(BytesIO(data), open("input2.pcm", 'wb'))

公开函数

def encode_len(dlen: int) -> int: ...

def decode_len(dlen: int, offset: int) -> int: ...

def encode(data: bytes) -> bytes: ...

def decode(data: bytes) -> bytes: ...

def decode_file(input: BinaryIO, output: BinaryIO, buf_rate: int = 10) -> None: ...

def encode_file(input: BinaryIO, output: BinaryIO, boolwrite_head: bool = False, buf_rate: int = 10) -> None: ...

def encode_from_string(data: str, write_head: bool = False) -> bytes: ...

def encode_to_string(data: bytes) -> str: ...

def encode_string(data: str) -> str: ...

def decode_from_bytes(data: bytes) -> str: ...

def decode_from_string(data: str) -> bytes: ...

def decode_string(data: str) -> str: ...

def encode_local_file(inp: Union[str, bytes, Path], out: Union[str, bytes, Path], encsize: int, decsize: int) -> None: ...

def decode_local_file(inp: Union[str, bytes, Path], out: Union[str, bytes, Path], encsize: int, decsize: int) -> None: ...

def encode_fd(inp: int, out: int) -> None: ...
    
def decode_fd(inp: int, out: int) -> None: ...
  • write_head将显式指明编码出的文本格式(utf16be),以便文本编辑器(如记事本)能够正确渲染,一般在写入文件时使用。

  • buf_rate指定读取文件的策略。当它为n时,则表示一次读取7n或者8n个字节。如果读到的字节长度小于预期,则说明长度不够, 此时,n将减半,恢复文件指针,重新读取。如果当n=1时长度仍然不够,就地encode/decode处理之。

  • encode_lendecode_len用于计算输出的长度

内部函数

  • 他们直接来自底层的C库,高性能,但是一般不需要在外部使用(除非是增加性能)
def _encode(data: BufferProtocol) -> bytes: ...

def _decode(data: BufferProtocol) -> bytes: ...

def _encode_into(data: BufferProtocol, dest: BufferProtocol) -> int: ...

def _decode_into(data: BufferProtocol, dest: BufferProtocol) -> int: ...

def is_64bits() -> bool: ...
  • _decode在解码b'='开头的数据时不安全解释器异常
  • _encode_into_decode_into直接操作缓冲区对象的底层指针,0拷贝,当然也和上面一样的问题,他们是没有检查的

✨ v0.3更新 ✨

融合了 CFFI 版本的成果,现在一个包可以同时在cpython和pypy上运行

本机编译

python -m pip install setuptools wheel cython cffi
git clone https://github.com/synodriver/pybase16384
cd pybase16384
git submodule update --init --recursive
python setup.py bdist_wheel --use-cython --use-cffi
  • 为了在windows上编译,需要加点料,把 这个 放进msvc的目录

后端选择

默认由py实现决定,在cpython上自动选择cython后端,在pypy上自动选择cffi后端,使用B14_USE_CFFI环境变量可以强制选择cffi

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.

pybase16384-0.3.6-pp310-pypy310_pp73-win_amd64.whl (281.9 kB view details)

Uploaded PyPyWindows x86-64

pybase16384-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybase16384-0.3.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase16384-0.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (278.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase16384-0.3.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (283.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase16384-0.3.6-pp39-pypy39_pp73-win_amd64.whl (281.8 kB view details)

Uploaded PyPyWindows x86-64

pybase16384-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybase16384-0.3.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase16384-0.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (278.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase16384-0.3.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (283.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase16384-0.3.6-pp38-pypy38_pp73-win_amd64.whl (281.8 kB view details)

Uploaded PyPyWindows x86-64

pybase16384-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybase16384-0.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase16384-0.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl (278.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase16384-0.3.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (283.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase16384-0.3.6-cp312-cp312-win_amd64.whl (294.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pybase16384-0.3.6-cp312-cp312-win32.whl (283.2 kB view details)

Uploaded CPython 3.12Windows x86

pybase16384-0.3.6-cp312-cp312-musllinux_1_1_x86_64.whl (330.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pybase16384-0.3.6-cp312-cp312-musllinux_1_1_aarch64.whl (324.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pybase16384-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pybase16384-0.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pybase16384-0.3.6-cp312-cp312-macosx_11_0_arm64.whl (291.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pybase16384-0.3.6-cp312-cp312-macosx_10_9_x86_64.whl (301.4 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pybase16384-0.3.6-cp312-cp312-macosx_10_9_universal2.whl (403.0 kB view details)

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

pybase16384-0.3.6-cp311-cp311-win_amd64.whl (292.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pybase16384-0.3.6-cp311-cp311-win32.whl (282.6 kB view details)

Uploaded CPython 3.11Windows x86

pybase16384-0.3.6-cp311-cp311-musllinux_1_1_x86_64.whl (332.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pybase16384-0.3.6-cp311-cp311-musllinux_1_1_aarch64.whl (326.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pybase16384-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pybase16384-0.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pybase16384-0.3.6-cp311-cp311-macosx_11_0_arm64.whl (290.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pybase16384-0.3.6-cp311-cp311-macosx_10_9_x86_64.whl (299.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pybase16384-0.3.6-cp311-cp311-macosx_10_9_universal2.whl (398.6 kB view details)

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

pybase16384-0.3.6-cp310-cp310-win_amd64.whl (291.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pybase16384-0.3.6-cp310-cp310-win32.whl (282.2 kB view details)

Uploaded CPython 3.10Windows x86

pybase16384-0.3.6-cp310-cp310-musllinux_1_1_x86_64.whl (332.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pybase16384-0.3.6-cp310-cp310-musllinux_1_1_aarch64.whl (326.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pybase16384-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (331.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pybase16384-0.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pybase16384-0.3.6-cp310-cp310-macosx_11_0_arm64.whl (289.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pybase16384-0.3.6-cp310-cp310-macosx_10_9_x86_64.whl (298.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pybase16384-0.3.6-cp310-cp310-macosx_10_9_universal2.whl (398.1 kB view details)

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

pybase16384-0.3.6-cp39-cp39-win_amd64.whl (292.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pybase16384-0.3.6-cp39-cp39-win32.whl (282.8 kB view details)

Uploaded CPython 3.9Windows x86

pybase16384-0.3.6-cp39-cp39-musllinux_1_1_x86_64.whl (333.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pybase16384-0.3.6-cp39-cp39-musllinux_1_1_aarch64.whl (327.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pybase16384-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (331.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pybase16384-0.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pybase16384-0.3.6-cp39-cp39-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pybase16384-0.3.6-cp39-cp39-macosx_10_9_x86_64.whl (299.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybase16384-0.3.6-cp39-cp39-macosx_10_9_universal2.whl (399.2 kB view details)

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

pybase16384-0.3.6-cp38-cp38-win_amd64.whl (292.3 kB view details)

Uploaded CPython 3.8Windows x86-64

pybase16384-0.3.6-cp38-cp38-win32.whl (283.0 kB view details)

Uploaded CPython 3.8Windows x86

pybase16384-0.3.6-cp38-cp38-musllinux_1_1_x86_64.whl (333.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pybase16384-0.3.6-cp38-cp38-musllinux_1_1_aarch64.whl (326.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pybase16384-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (331.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pybase16384-0.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pybase16384-0.3.6-cp38-cp38-macosx_11_0_arm64.whl (290.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybase16384-0.3.6-cp38-cp38-macosx_10_9_x86_64.whl (299.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pybase16384-0.3.6-cp38-cp38-macosx_10_9_universal2.whl (398.9 kB view details)

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

File details

Details for the file pybase16384-0.3.6-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f657d1eaee43ec85dcb80d0af1bcde4cfc8bf5ddaa9a0c47b5dc7bc67647c894
MD5 9e7ecc539c1a2077890e31f3722ad94d
BLAKE2b-256 a083109359599d2fbe5ac037cf321b7283a1399e105340bf374e0b63b3b34111

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6b014f057d0c679ea3497fe5218d6d86b64d430c4dccd98c491548773792ce7
MD5 0ce1da8c5f59fda22653f2ced51dcc65
BLAKE2b-256 1db0c6d543f8877ae81992d6ba63ecc276e6e3e89e6f02063e1f45eb8ac94532

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e24d10534415ddf3083a73e6a26d15d8bddb2d921e3c921ac6e42ce8fa042be7
MD5 d7bed6b21f08353101cbd3fc3162e3a7
BLAKE2b-256 768d97ee3565d0d46a5d3e9ca276e35bcfd7de6b14d07f3e505d566cc71acfa8

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc7c196ca47649d92ca7ae7ce19774e409ad07a5af7ebf38e59717dd28eebaab
MD5 77df3dbcd62c1be2bd86d51daf5a5777
BLAKE2b-256 6123780dc202bc924b351909edf347ef791c189fd7153bda9b2bdca73024abfa

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2d4e67916d112cd76ac0fd58eb852aae629c143aeb14189a1288acd6e2acf0d
MD5 07bd3eb7387990a563c48df0fb0c2b18
BLAKE2b-256 1a4ccf9cc4e78645040b9f3af7382dc5a944fd38ede41d7f0e67d4e2436e0816

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ffc256b25b52ee8df586bfeae562fe19fbc12347697c3d7fbae9aa053b90c877
MD5 6e35b793466112f04c539e768c8e8ca1
BLAKE2b-256 04eae848318edaf4e35be1296e79037679ea8dd49e29b39d9cc1f5b9f975ac9c

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33dc5ea44d2a36d1208b39edca8eb7763ecd75ab7cea67390c27a96aabd01252
MD5 ff4f523c05c87a3727e3cad509d3fd49
BLAKE2b-256 f165d2aae3c991dab26f5f048856f523621d309e2f8061a7ac0b37c7237932f7

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e91bd2856f60bd32b2247877daa69eb722933236bb4d130f0ad2bb3649f6ea9
MD5 e332d3100012c36cfbe2b2251e371003
BLAKE2b-256 2434ca93c47e399e4f3ab7dc9bf42917a8abe10ba5224422749c51ddd250de24

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69306c0ceb3916bc2019fcb5e325a26dafcd2e49a81d85ac0e912e518b48e9ff
MD5 084abe70f9bfc1b392651a24e5e33032
BLAKE2b-256 978a5debdd4ab8819931274177915ff4f126575b49fbf6a449bf3ebb66ee535f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fae5e2b2ef1f490d2b168113ede33c8187dfc1cb423af80a10a885785c413079
MD5 63f1821518d9b510e0c8bbf3630b1e64
BLAKE2b-256 b93234d25b890e05be2eca7db50c995bd48f52b7a55a968e0ba8e60e8caea82e

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1f3c897912516b3910c9a0c64e76d2618e9af7a3b0b36379e0619991ef621a49
MD5 4f56cf7330632ca8fe4f8c5ed317f63e
BLAKE2b-256 9284353e3009288fdaa9366a81b171cfd69edffd833b10595afc4d977145600f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3396da25d27e7be012d281d25b86bb97f605330eda65fbad6521652167ae62ef
MD5 a4224702e999610896774fcf7eb9a04b
BLAKE2b-256 7f7dbe267d6d9cc7818fc8d8438f16c9f91c72473d00250bd1799882d540dfed

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a80b5cf700245456791abb4cb5c3d04f2a180835dce48e77f9345437407713f0
MD5 398b8815da1351b2a1395617112b3d17
BLAKE2b-256 184964bcc3b71cae56a2947176fa771cba56e0eb6353b00f1c847df1f64c1c7d

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1056ea3e445c1a194da497b972c80ef8677c2c7f8666e27cad61e1a1ce995357
MD5 52cc518f279035b0cb0f8bc45dd38279
BLAKE2b-256 5c79f6c04192acde16df4072b0e21a0b27228cb9b75495aae5ebc402b19fd110

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ceb1ff5b82a42e568c7ce2e0031fdf664311a9953370a3a8263510ef21cbef1
MD5 959dac44d3c612e15027f82f8cb28a12
BLAKE2b-256 6c87b09093d13312f55f030de47a81230333ba74212342f48d5623c2061a04d8

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 138fec99cf76fc12fcb445dfc204685157c76f607f7a1854c632329ff4ab4207
MD5 1679fefa30ca04668ea8abfea703b206
BLAKE2b-256 c8359e4ef4e8564a17fb022cc718b4b26159c50bb868c51d90050f32f0603752

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: pybase16384-0.3.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 283.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8e3dbb84f9f09b7134fac2bc90d686eb8cb77550e0c23bbe06fe38919d0ed0bc
MD5 657797fb2584cd9f58214ced4289474e
BLAKE2b-256 9da81992c72b9f17459da81ab14658739ab6a77987c3e457655d43847db5c76d

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a54fbd03eed421d603a2aa41e151c4701deba0aa3e4c5c249ee3e1e22781d648
MD5 645f402dde5956e4af75cea4e7fc1805
BLAKE2b-256 0a2d335e01976686ae4af692fc3ce10d8562d93c8d7f60b5e2efbc2d65c81a0f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 458945b4a233715b2061448e9bf2d780ab9e7946b93e04e290d4b1ddf9d04305
MD5 1a97eaa506b78bef70dc72607db71da0
BLAKE2b-256 f7cd55faed4562bff81c91d6d567c2ff4629c65a6fef20a1840caa5c3a2594ff

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12f3264b4cb53e01b8d2e99cc1ebf13520ca78910d55523f7528f2ee887d4aa0
MD5 a1d100dbf0af139ea3b476bdb29adf2f
BLAKE2b-256 c7702df3da67db5b838f0277bc52458ccf9988e4c33639d83d0fe5cb5dacd6f8

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bcfac58f66b8f12ebb37ed0d0a3344df291d76a5d155355f89447ee8f47002f
MD5 8c43e8d5d7d20398d11c0e618b641835
BLAKE2b-256 776521b94de14b1c803d08b0fd6a6f95ae855ab338095762cfb1037a9be71e8b

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a996c933a66701a0900ec8153d5a64f4df42f62ac548883a09d25de4923c5930
MD5 1cefdc84c304590df44217321a46af64
BLAKE2b-256 a7d0648454db345b646d05c656c6b6f82b383da01029f4691028c971ed01c97c

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8341ad45a39ac28bfed986e8c9d4c7ecd9f7d2cf88fb811ec6ff9639d5c107c4
MD5 454075f10a205a9a690ddfa8c6e03083
BLAKE2b-256 d1ca8ae0e6f22075c5e44b800ae94506542aab1cc3a2e95bae9881b5edaad672

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 206756582f31a37eecf95a27b4d791889160a6e739a28e6ae99a9d930169f28e
MD5 18ee841a727847a2665a7bcddf10eb60
BLAKE2b-256 cc46a207bb9cc6ddd0c19e5080c2202cac6802fd29b8f2644dde2371c80412e2

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 02d2cf39e83c037f1d2b07b6a27ab3b4c865d6fddaffd6def1249730f659dad1
MD5 600781dc504c6170702fdfa93443d0bf
BLAKE2b-256 3ebe24ee4de812df42d7cffd48cbe99b42a2bbae72169d2a4f9e6b11ab296358

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: pybase16384-0.3.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 282.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9801914c84c1f20115c6a32057e2639fac4f4897a4ba916d159f80cd624819a8
MD5 c9a7fb3c4a73eb858582a1af1cbf5cd7
BLAKE2b-256 11f4f34ec0d8744b9a95359c1f30b0bcf57d8462a0298cc976d0c00abb7d5c61

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 397b7cf749767f3fc3701bb67f8973e2b9a50e89bf4f4a5d65493581df92c2d5
MD5 f1aad2381ba7b6e379a52f76c483ba70
BLAKE2b-256 72f59f1ce749b99e24280b724e2598c0c24cfc3d20799e5fc803a3696e01c0c0

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 644bda520c62a6e18596266b47f4641e075b02a65388960a4ad3b8bf74d938d1
MD5 6b4463db883e16eb89a96947d93013cf
BLAKE2b-256 bacd67742ebdaf09168eecea7d03e2e55bd05dc24d20aceb7bd1101074c6420b

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 955cbcba2b210b6aa909a10e55616857e63b5d3326febaafadc43001ef400b82
MD5 9310e16a85b78426a24ec41d455c3ea1
BLAKE2b-256 55764fe7d8c3ea78774a545d09fdca4f5f418ba3dc6f9dbcc4368d8a93d07d19

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10dec2fc5f510964970872e395a14fa45961dd30862eb27f6dd1a972c2c81870
MD5 cc7a3521e3918ad595d34015eb4e079b
BLAKE2b-256 369d856b5b2d581a72bc8349f9d6a67865c69ab6793b7641808eec0ccb747765

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c4aad00f6b6ffc90aa169c6f2f7b917769074bb1979c508cf19f71980481bad
MD5 6c3ef97cffa3799e24dcee9dd3faf2e9
BLAKE2b-256 ec855f22573086cf1a167a93c5f2ca7d3952fb7aef041e32c83710b52c26f1a4

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a5ba4067d3ea428c45631d9308e45f69acc8740693a7f40a86025959870efaa
MD5 c34290789196455979bd99c42f8ea6e5
BLAKE2b-256 aa1265d14a35fec1a77d05c4c6e718ffb613e6da25a06043e917f07b032b68f4

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 63a13617e67f50ece6d85783074a10142b942380e4743065b4e2317b71b57f23
MD5 6a9dcc4e9152ab79a1612b789ecf0b06
BLAKE2b-256 f8430e111fea477dfcf79799785b77f9ec6e614eb47a1cf1b80986f71a60d63f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dfdbf1a0767fbd8ac88ebbeba1235b4aa97a74b5bdf88bbed96e57e423225096
MD5 41be718a37a98cb246aa402400397d4f
BLAKE2b-256 6b21adb6a66e5f9e53ce2ea81c001ba3a8d2ada4422e838626684229aae05364

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: pybase16384-0.3.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 282.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 650ad26d789b269ee492a716e121261277130fd116b49c7945722d1c28b6435b
MD5 f5102ac9d9a72897a109108e22563ec3
BLAKE2b-256 44a8b5738e2f657113d91ff549883eba79364cc024fc42d56d44011fdb15f04e

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6ef79192f2ab438c4327694cc50c896a39ea1096cc82240217db2d631aa6660e
MD5 40bed6036c027ce9b8514bda4669f0e6
BLAKE2b-256 b961427c0350f370fa95b6b98fc00fa562af3bbb6bbecedd71094a36227a68ce

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 55c461376c9c9f27aa1a9b1b068272d00df54c73e7fc4bcac4104ffb326945d8
MD5 107ac3c818ab0b60c15e1ba8d7de00d3
BLAKE2b-256 39cf86b61cbd2b17b3f348b11894b7274f8df2c382e0722703e1c79afc5201d4

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc146148de0d499e376a0735f6090bcac860adb9cde864360b426fdcc7ea3478
MD5 3a6e087e4007bc8e66ffc24e44d62fea
BLAKE2b-256 09d40b1a23fd90f2187e21a31da50e6460d6ceb2b90a92d7a2dfab281cde6ecc

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43976085cef6086bf60d1dca2f7d2a8a5eec6ffe6b610659dc44731d5841a2f3
MD5 94293a7f5b7665eca00c54894b17cf5c
BLAKE2b-256 1e3810812446ee53a5e512ee94f0a8116c11499fe7e2e11d0482b5468b4f1097

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 659213a3d1a977b8fcf7f3c806c563334b1da7bbbe6fcf1fcff2833e2731493b
MD5 b599e1dc4c1378a76bd4556b1d263a9b
BLAKE2b-256 3fafea9082e8250ac34c6787e7c3210d15ba166a09ae3235eae87cd3acace806

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d62abb04bfd97c5c1a5943be3d39bc8ab05a1d20caeb32359204b4f54f938143
MD5 22b23e7148045eaf3aa1dd8402cc0449
BLAKE2b-256 1bf520b2f3b4c6c13be4f12e28bc86d7be7f6efe401363773d11de7054df3a08

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9dd02e183aec24b046d70986114808200dd5fb20a3663cd72c7e8c38318a2274
MD5 04558fdce3d2cda7875d4b337c327f5f
BLAKE2b-256 02bf0b486c5d29eee78f61b563b5e4ff9d8e56a2ecf71281e07bde2b23fc4926

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybase16384-0.3.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 292.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3aac584c22ac2f24597e83d52517088c73bd564c8df35356d20731b9043ea60a
MD5 0b557839f6d3f1feda3342e985ea7078
BLAKE2b-256 b5b2486250297a5004b68a09af433a629cba28916a0bfb5e21a96d241c639de2

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: pybase16384-0.3.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 282.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c9828ebe32cefad66a1b21d4ff3917252249be20bf16e18e35f2b8377142ee8a
MD5 ef0f1a6092af5fb266936e3d6df95bdd
BLAKE2b-256 35a72fe801735f50860272e21e8a7fda7d5ab88a3a90c6898161eed58f95a494

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 986f9207eb89094e8522c22449156c5db90a246f4b9af71ceb1439aad07e814e
MD5 c6e265e4c6c0d872f334bbfac14dae28
BLAKE2b-256 a2edf9fa3ffd1d718c1171100a07f3a521eff60c4efb1707d0ba06ed90e73307

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d87eed37ddca85d15deb53292317070d04bef2a3a576e3f880a78f71fd1e08a7
MD5 4d441f0fbd125c467ba1dd88c075b81d
BLAKE2b-256 dfabdaf6210e90774130666284c664482572e8fd6436ca5fc4d44e989d81b37e

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41434925749e4e3bd1fc96ffc170d1c7a6b691c3605fd645f84cd4ce65898b03
MD5 5853263333867278d7f43148aa71c4f1
BLAKE2b-256 9db6772dfa994e0eb26c6f8bc4c54cda3caba160982426f6c8d7b7f3af4db7e6

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3445101ef98984499bb41186e173bc48062aab6deb764a01c73f6e4d01f8b6b2
MD5 db2add877e68f4697c41e2d101f3bf9b
BLAKE2b-256 558a70ac66a0ddca26f363eaf49020b80dd05958b3f5dd2a5a08295bffbea401

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7960d6cd4394d16396aa0160b28b50e1f576a13ea813dd22a2b23c3acbacf233
MD5 31d354dd444f6dcaef992d8b591b8385
BLAKE2b-256 04ce55b4ac0c1907c7ef449b7caf84f91655712494ffa996c80bc71225f35522

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0a99b93e7f0deef7e082df6371db13be6fca5eb9681cdd7c35dc15ef93ce9af
MD5 901a10ae8c53022b3f99db5f8090c9e0
BLAKE2b-256 194401916bdfbf6e3d2bf01872cbd0e156b3c9881731ac8ce8918f75ce5ff992

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 005936c3a7d877ec7f86a859b11ea3b8fe60b8933f25bb8532fe49f2dd93e471
MD5 be93f3db7cdf598b83b70a1cfdfc1242
BLAKE2b-256 cc4ec05ac293c5c3876ab960c4e0752a1f0eb24a1a840d6faa9cb1670ed0ca27

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybase16384-0.3.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 292.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 139b68131bff7e83c5d2ab23f2056f7c9f8f6effb5927d13d6a08671f9c81228
MD5 a670ae2b92a966c25d716d463dce3752
BLAKE2b-256 ae75c8fb36ded9cde995cf55837e0a4c314965b33227b0883253159da7ada11f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: pybase16384-0.3.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 283.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9462c7a65ddcb013888382414cee4027adcd583830e8fba69e9485442bd0f89d
MD5 f94ee507c576e77c6f820035e808a7be
BLAKE2b-256 20d6c3c8be9a986882d9c4afeb3d25fe3c0b2e226d2d4565232c62bf0e607f04

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9bb9ec9b6a6470cb204a735a3f3f1f997ba375a7e75a4e57b281fc8c8bb8ecc9
MD5 7070b1e4f7fd82e7a8dc04235f791062
BLAKE2b-256 f3d9d049c8fefb0d3bdb30ce4a4f6c74417f1867a13288c17cf7310fca94a754

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 16e37771e8870eefc40ecfb8a5b2d473a2a5f3bc17a066981b01abd8c9071461
MD5 2e914e78c4f17b1e2d7b84ab6066b117
BLAKE2b-256 72211914b12c487a7df877cc4fa50b4863034ade81cb4f8cf86fb7511ef23ca1

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25953f611beb6d0ea602db624c737284e6e4ddfb7e3cdbadcbf1d0ab5ef3b4ef
MD5 2c845ca6666c2a67972916b9442aca15
BLAKE2b-256 fa4bfc4ee6ae8079e6505532947c66fa95d96bb0915f943935edd7d8f28ee2f1

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb30767e548a8fbe89c7ed61b7ff4973407ea6ec7876188a5fc0a021da537b54
MD5 f21229f3364ebf0418140bc2db92e7af
BLAKE2b-256 07d5ad096ad146c3cb14ff72d462939b9fcf65e92cc448be43cfa684935daabd

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b739eb22a3c1a057bbf9b136a0719e74d99a953f13a7694f208dfc3a9a34e4b
MD5 a58ebbb7aacede5f37d128f2aabd646e
BLAKE2b-256 6d56475eff45fa7306569c1f7dbe255d8808dbb335d030ed6eb5729f1fa76d57

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 437690589e2cfbc404fe42386400480678a87457a96b9e8be1f8c053b10a061a
MD5 f9c7e708eabadb5031eb53eb8fdf884c
BLAKE2b-256 1106c785ec93b5141cf1813bcd0414d75b45830ffc38353c22ff88cb904f5fa5

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.6-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6a508a908206bb5195834f43b1ecd18f231ab8f6790bb9fbd2e19edaf95b8cf7
MD5 edfa22fc427c88647564ffee17d60f19
BLAKE2b-256 edd37ae7d3487031a26b10e8f48cb492b0b81c4541dc83cb151ac6d11375de8d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page