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'))

公开函数

from typing import IO

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

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

ENCBUFSZ: int
DECBUFSZ: int
FLAG_NOHEADER: int
FLAG_SUM_CHECK_ON_REMAIN: int
FLAG_DO_SUM_CHECK_FORCELY: int

def is_64bits() -> bool: ...

def encode_file(input: IO, output: IO, write_head: bool = ..., buf_rate: int = ...): ...

def encode_file_safe(input: IO, output: IO, write_head: bool = ..., buf_rate: int = ...): ...

def decode_file(input: IO, output: IO, buf_rate: int = ...): ...

def decode_file_safe(input: IO, output: IO, buf_rate: int = ...): ...

def ensure_bytes(inp) -> bytes: ...

def encode_local_file(inp, out) -> None: ...

def decode_local_file(inp, out) -> None: ...

def encode_fd(inp: int, out: int) -> None: ...

def decode_fd(inp: int, out: int) -> None: ...

def encode_local_file_detailed(inp, out, flag: int) -> None: ...

def decode_local_file_detailed(inp, out, flag: int) -> None: ...

def encode_fd_detailed(inp: int, out: int, flag: int) -> None: ...

def decode_fd_detailed(inp: int, out: int, flag: int) -> None: ...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

def encode_stream_detailed(inp, out, flag: int): ...

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

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

  • encode_lendecode_len用于计算输出的长度

内部函数

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

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

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

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

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

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

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

def _decode_into_safe(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.9-cp314-cp314t-musllinux_1_2_x86_64.whl (362.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pybase16384-0.3.9-cp314-cp314t-musllinux_1_2_riscv64.whl (361.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

pybase16384-0.3.9-cp314-cp314t-musllinux_1_2_aarch64.whl (356.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pybase16384-0.3.9-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (355.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pybase16384-0.3.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (357.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pybase16384-0.3.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (351.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pybase16384-0.3.9-cp314-cp314t-macosx_11_0_arm64.whl (336.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pybase16384-0.3.9-cp314-cp314t-macosx_10_15_x86_64.whl (340.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pybase16384-0.3.9-cp314-cp314t-macosx_10_15_universal2.whl (457.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

pybase16384-0.3.9-cp314-cp314-musllinux_1_2_x86_64.whl (364.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pybase16384-0.3.9-cp314-cp314-musllinux_1_2_riscv64.whl (363.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

pybase16384-0.3.9-cp314-cp314-musllinux_1_2_aarch64.whl (360.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pybase16384-0.3.9-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (356.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pybase16384-0.3.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (359.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pybase16384-0.3.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (355.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pybase16384-0.3.9-cp314-cp314-macosx_11_0_arm64.whl (329.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pybase16384-0.3.9-cp314-cp314-macosx_10_15_x86_64.whl (334.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pybase16384-0.3.9-cp314-cp314-macosx_10_15_universal2.whl (445.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pybase16384-0.3.9-cp313-cp313-musllinux_1_2_x86_64.whl (360.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pybase16384-0.3.9-cp313-cp313-musllinux_1_2_riscv64.whl (359.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

pybase16384-0.3.9-cp313-cp313-musllinux_1_2_aarch64.whl (356.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybase16384-0.3.9-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (356.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pybase16384-0.3.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (359.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pybase16384-0.3.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (354.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pybase16384-0.3.9-cp313-cp313-macosx_11_0_arm64.whl (325.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pybase16384-0.3.9-cp313-cp313-macosx_10_13_x86_64.whl (331.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pybase16384-0.3.9-cp313-cp313-macosx_10_13_universal2.whl (441.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pybase16384-0.3.9-cp312-cp312-musllinux_1_2_x86_64.whl (361.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pybase16384-0.3.9-cp312-cp312-musllinux_1_2_riscv64.whl (359.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

pybase16384-0.3.9-cp312-cp312-musllinux_1_2_aarch64.whl (356.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybase16384-0.3.9-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (356.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pybase16384-0.3.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (359.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pybase16384-0.3.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (355.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pybase16384-0.3.9-cp312-cp312-macosx_11_0_arm64.whl (325.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pybase16384-0.3.9-cp312-cp312-macosx_10_13_x86_64.whl (331.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pybase16384-0.3.9-cp312-cp312-macosx_10_13_universal2.whl (442.1 kB view details)

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

pybase16384-0.3.9-cp311-cp311-musllinux_1_2_x86_64.whl (367.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pybase16384-0.3.9-cp311-cp311-musllinux_1_2_riscv64.whl (363.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

pybase16384-0.3.9-cp311-cp311-musllinux_1_2_aarch64.whl (361.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybase16384-0.3.9-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (362.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pybase16384-0.3.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (365.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pybase16384-0.3.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (359.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pybase16384-0.3.9-cp311-cp311-macosx_11_0_arm64.whl (325.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pybase16384-0.3.9-cp311-cp311-macosx_10_9_x86_64.whl (329.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pybase16384-0.3.9-cp311-cp311-macosx_10_9_universal2.whl (438.9 kB view details)

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

pybase16384-0.3.9-cp310-cp310-musllinux_1_2_x86_64.whl (365.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pybase16384-0.3.9-cp310-cp310-musllinux_1_2_riscv64.whl (363.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

pybase16384-0.3.9-cp310-cp310-musllinux_1_2_aarch64.whl (359.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybase16384-0.3.9-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (361.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pybase16384-0.3.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (363.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pybase16384-0.3.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (357.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pybase16384-0.3.9-cp310-cp310-macosx_11_0_arm64.whl (325.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pybase16384-0.3.9-cp310-cp310-macosx_10_9_x86_64.whl (329.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pybase16384-0.3.9-cp310-cp310-macosx_10_9_universal2.whl (439.7 kB view details)

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

pybase16384-0.3.9-cp39-cp39-musllinux_1_2_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pybase16384-0.3.9-cp39-cp39-musllinux_1_2_riscv64.whl (363.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

pybase16384-0.3.9-cp39-cp39-musllinux_1_2_aarch64.whl (360.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybase16384-0.3.9-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (361.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pybase16384-0.3.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (363.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pybase16384-0.3.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (358.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pybase16384-0.3.9-cp39-cp39-macosx_11_0_arm64.whl (325.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pybase16384-0.3.9-cp39-cp39-macosx_10_9_x86_64.whl (330.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybase16384-0.3.9-cp39-cp39-macosx_10_9_universal2.whl (440.6 kB view details)

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

pybase16384-0.3.9-cp38-cp38-musllinux_1_2_x86_64.whl (367.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pybase16384-0.3.9-cp38-cp38-musllinux_1_2_riscv64.whl (367.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

pybase16384-0.3.9-cp38-cp38-musllinux_1_2_aarch64.whl (362.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybase16384-0.3.9-cp38-cp38-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (365.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pybase16384-0.3.9-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (365.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pybase16384-0.3.9-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (360.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pybase16384-0.3.9-cp38-cp38-macosx_11_0_arm64.whl (328.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybase16384-0.3.9-cp38-cp38-macosx_10_9_x86_64.whl (332.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pybase16384-0.3.9-cp38-cp38-macosx_10_9_universal2.whl (446.0 kB view details)

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

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a712623f1c7a81d5c138cc9924642e2e4f9f60c28833ffb18aeb11c24c18c83
MD5 c73e71bc35018f7c5c0f6a5776979e5f
BLAKE2b-256 6787aff1c0dcdf3daff69485b25026c27ee6b007535868a125740b96a0a3a4c0

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9fcdf462a3098f368b6f1fc48c5bc40d83ead9a436ff475433ae57d4efabd571
MD5 d69ac99d4fdc6aaa71c1bcf40f7a5b8c
BLAKE2b-256 60f82b277b1de89e888206871ac6e4be930a9deeae6e67fd00420c7ea6096604

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d4d4c50dd49a24ea72f6284161ad3493a78c6980107a3c86663751bd0be9edd
MD5 4c3ebb48bc37ab1a6b8c0b40520a2923
BLAKE2b-256 024e44aa5177e1af6cf8c09f8fb16c43f96d1a7d0094a4fbaa36a1af46fd54bc

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3763bb7e6d1793becefd179d2627a6ef336f21ce3c223d8957e6fac7e0bbd00a
MD5 aab3370a1bd33648170f2dccf5c135c0
BLAKE2b-256 d45544ec7525821df596441f1c2c534be64b7f96e446db84237beb7e9e48628a

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f35f928b8e624b0f50f70003aa988d482b8c9856dfb1202e35d88ba407cf113c
MD5 be0a1db3adb761631278309f8f6fe9cd
BLAKE2b-256 9618f8a3eb08dc79d0e0f4b95183ed721b96a8e3c9b98b4bfe9f7cbbbc1db9f1

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a60193c61ab77bfb7e4130249e55cebbf03853d64c12ee0f66ef0bdffbdd3b88
MD5 d772195d88c03d02ff9e6f5588f755f5
BLAKE2b-256 f22e2d4d744be76da8cf9d7ae644dd74a31fb1d5a343e7346ab4d435b61955c5

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81f8e8f91a8795fd8b816ca68852ca199d48d956e8045c203901c65097f13056
MD5 95c29ae0f48c3b791e9106a7b05777c3
BLAKE2b-256 fc50d3e2bce8d9021a64dfc6b561f7d2fca648d7fa2bd7d486610738899604bb

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e53d15185154abeef852ee422d727309d3bd0e2e0fcc253ea16ec80f3e909ed
MD5 3f427672100f63ea34c9ff52b6f3c2c4
BLAKE2b-256 e5ec10a81810ae59d4f00dedef04152f1f3b7e97566eabdec3327d8f8d2f73c8

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5b8aa4ec243e32022a57a04e63d8adc1f0222547d3648fb908c65d0676442cd9
MD5 1b0dc8277758d53dea563d9c268623f8
BLAKE2b-256 9b0cc05fdd8504332682cfdd318e985ac6108bbc5619394206da00e7a779be88

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 749c9a81cb566b321ac96a7accfa7c542eedc3ace3a45d7c271cc7e9d9ed2bac
MD5 dc0c665605bdf3d6593765d2cc53f712
BLAKE2b-256 41906810940b264c23aa72ca3736e51edf440fc4868256b6b12d1fabbcf243a4

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9455578d64b5f977d41f07905b2974ec07b8b74ec3f95400028707c3591022a8
MD5 ccf33d39e5271b4ac60b7a4a1097e065
BLAKE2b-256 65ef5f3ff027112d31250549dbdd33b6cf7d2c71373e7b366fef1803e6d06bae

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 242d1076c7bf676d0fabb52fcb75e7aad4520a0192d83f64cc011d263b53d753
MD5 ab9c9a0e7d8fdc207b42eb127e15e4db
BLAKE2b-256 6b3900fa7846410e6af6e53c74b289edcf2c3a8cf0dd853adc0f1dc0d403b7fe

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 75211b63fdae3c79672f09c1d5d5a03c4464dfcc8bacc0d8d4042002c31d76b4
MD5 0de31f87c9366762534406cbeb11293d
BLAKE2b-256 4b3327697b66e14901a67778aa4897c20f1dd2463d0cb6bbd44b9147713a4496

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02c2340936d29470870388c5bde4ebb33184fc78c6c2ad20bb2e50e7288c8597
MD5 4bbe0fbe6b3cddd963c9f862f514af2f
BLAKE2b-256 7250ad403fc70ef21769ced16e4788f98d7d1f8809c2d806b2e5ec10a5a2c379

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6f76f259e6fac438107eb8f3dd07991b1b66338f0acec21ea7ea99c8f57a8a1
MD5 e34ef70f185ea5c3b9030aaedb43fe56
BLAKE2b-256 fffe46d27b4f81826f690be5832c49b19f0025396b3d3dff329924255edd2a89

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ced18658391b2bcc7af02d25d5a536149542f3267b9ddf44e11e1072e0739a28
MD5 9550bd595562204c813aeb619c8dace1
BLAKE2b-256 d3a65b5fb8033089ba3271d2084d0cfbaeae3460eac11aa11a3588520d5b3c21

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0141b2b70251344a65d10d060705b4385ae5d6c0f9f0123ac925455225e73126
MD5 725cd4cb663eb2c7442641ce87ccdc3a
BLAKE2b-256 cf946134e917caff249a2c5bc9bc39f5e289b99b93b82a73b97fa073ff6a64e6

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8d85cd1328541557e46cae217b77d15590911f98e143c2bdca44ce157d0ab87e
MD5 7af28493780b5c0e7bb199ded214caa1
BLAKE2b-256 368007300ad2d523887ba65411edbf233e2c7b23cffd888edb45e9a99f2827f1

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cbee106a74f793c4173df1fb70e9f48996aacea981131ca028bae04eff81566
MD5 832dcb2440f8713ee72f57bcf6f4a56c
BLAKE2b-256 ae9dd51cfd0dedb37d40b4214dbd469c511de94c093b866e4966f9b36c99a45e

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2d902af80f7d454d63736701ef9c5ac87a60a90844098af3800c0259df7e9eac
MD5 d62ee49f763702300576f3dcd34c03d6
BLAKE2b-256 a0db09ab96aff99e7fbeb36710749d7025445dcf3de036e45ac10e79672eb7f6

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6882d9a9ace8532e64ef4a48fd927d07d69a2a0b577f0e557dfc2ced4769b2a
MD5 7e07ba94e6eeac9873e7cb8fd95e03f9
BLAKE2b-256 12d84c6ea5053d74924a8ee49a84c2f73261fa999adcd843907c90ce52388376

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0eb028f826ec5c26f034c37284ac9e8cb8beafd90ebb4738f9eb2bc5b7ac7a30
MD5 af03720962be6c598b2c54af2dc2622d
BLAKE2b-256 7e8576b60d37f322ea8e6546c3189e30947b8ae4a73660178945250f2cdc363b

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72e85194b69ab6caba78706eebee112819ea36de89d3e3d0d209cc2a41f9033b
MD5 ef86dee10a4b182d1c0adea3dcbc8d3d
BLAKE2b-256 45b584d115015cbd57eb2a3cf5cd21a2a28f150079aac31b68dbfb3bb30b69df

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 580a3d3849efbb14f818245ae3896d9aaa5e41ac7eb6f149fe4792c0bbcf64fa
MD5 4cab7cb8f6aa2b378cc33da311c2a3f4
BLAKE2b-256 8789d5746148c603ce0ced785cbd18e65095c11563d54c1e325152c7c483b51a

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1889ac50a8abdf8e8a9ccc06586827c9d2ae46c012a703200319d06334417b56
MD5 b0aa658f1de6c966da9c5dcdccf9a704
BLAKE2b-256 7cc84c736c8a712ad97f3079189fc92a6e4f66e759b1e1954225b3222f083d4f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0a37f5a0dc07014591f9ed28a96cc3088e74fe2f041fa31fff515f3a2ade1551
MD5 3a16a7b0038276f21b5d061676b38d01
BLAKE2b-256 2d150435d0d62e1cc43fb4b12987f430bc0584988f340b86c9797399cec8784a

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 31dd52cb2f154ff80820ad17ee4200314b7268dc7c04f9e9cf168eeddefb9b1e
MD5 5cccf763107561d938e5460f4d2ecb33
BLAKE2b-256 bb9e08f6bac3a70a248b6311dfe9a3e0881d0464a7164c6ce0743ad47c16f417

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00562c7ad974a998ecd4d36fcb79beb55bbd1c84f23549175ccc9a64207d7383
MD5 08ca7c9604a37c268b3f2493fb1890d5
BLAKE2b-256 835870760860db53b67175affcb3a65aac8613367eeb083be7a70d9d864603d4

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a445cefdb952bdb37b9e921a198770c11c71bb203a41dfaa7aa26de96133fb3d
MD5 ad328e713574129fc258a36a368dbd00
BLAKE2b-256 8188264d2977c1bfb994f65e4192c5d153b06e80ca72ad902dc8f85ff1caec18

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f5d1fac91e092f87cb1fea362972941d56f301883b230f7490ac6aa4288aa91
MD5 a016dcff95bb623a29ad122fb6a5c7b3
BLAKE2b-256 de0d429cf157006bf7d1152fb152cd6de049a94182a0dc6212e4cae360022bd6

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ebea58c21c51bd1eb7a6351ffd131153919f05a5b21c2454e5e84707a7b1d7dd
MD5 d6ec5e4e021df63d3c9741e6ddb7ad8d
BLAKE2b-256 7965965d71ef58aa191eac76c8d9138fa2a4035871eaf707ae04e55a05581a4a

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e676fe163655f818a86fb50c917d99581df8903b19f2a32359e82517f901866
MD5 c081895e1845176249dada4c97f37599
BLAKE2b-256 682218bb4443ae86d12a9521044882613d2b7e71522ba704015b899b73289790

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 406bbfabebd42a8b204f67e408cb08647cda5cd81bbbe5ec9b9df2d1b4c2a14c
MD5 f43a346534a7432677470c246b00afb5
BLAKE2b-256 bb4311309b5c9be909b281fbd1aa565df22f9df71853acadd82ecee60b5a0f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 498bed5eb9bbd0f098ba880cefa9db94ccb2b1b2a31079b8fa6dc2c660ddafa0
MD5 f9cf4f9dac19a89f0436a9007fc49940
BLAKE2b-256 9fb2ceef18c14410ffbe337488ea322de9584a1d9ff00285295c585ddb3d25ec

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 428e947293bb63d63121cc1c540c49e2408838b3e75d76231014e0cef49944fa
MD5 60c47d860105b92ed723d1cd4101c3c2
BLAKE2b-256 97f6909c875084ba4eed7be6b4bc05f3e1846d27ae25f814158c4245df76cc99

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 135e0f900c5be59bc6cc50b6adace9bf3056c6d6f9ac15eb65a180e4ebd05044
MD5 7da41aaf3071d795dc52c6f3473c851e
BLAKE2b-256 52cc38838d4fbe33abc79f58986b8abaa14af2820421c5f88d41ade955ae1b96

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e47fde08cb804ad63a60547a302b17b0a3f6420ef49aaad73544fc5a92d5fb7
MD5 d05ca9c3f1d149133048812c6a7d48b6
BLAKE2b-256 6e6e7716d3553de9a768e1802ef020f499ff6e29bd8ad59c20d0d0b7b7c2e00a

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2d649a91ab5b6677a29766bae961ab33f33cb1199b968ad0cd78726041975465
MD5 889287c79ac9bf25e44897e2330e8631
BLAKE2b-256 618c4c5a0cd575e7dffeedadc3afbe888b153c68d488212f12921543a50d5bd9

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 846b9dd7ed099764d8eea383631bca514fdcaacfeb461191609d7d9d8a18ec47
MD5 4c2252543a14eb15f72dfea77253e6f4
BLAKE2b-256 d02c78cc235573c78546d413a4708ad8c680049e79cb6066acb6f8639e8e004e

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a76f59effc47809695076971ee2fc17fcb730c15cc5b931c5da7522512fd6d02
MD5 96f9fbd87b36f9641a1cc2affcb5cf0c
BLAKE2b-256 98ccfe53d69e46c8e950a271806040f42cd0bfd7cecc3702f0527994a019b908

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce60b0c05e75e59061f48acc1ad079ad2a7b53d560d98b73b47af85327c1332f
MD5 a65c9cfb083a7f49ffc989a13afca641
BLAKE2b-256 bba9f10099497075934e1ca4737d4e82ce5de945d18f2361ef24ab32da93dd5f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1d390927671f02eeb7612f501108c48e49055c3ddf970776a7408c3d80cd055
MD5 a172d6643c96129b21f8798dd49961c0
BLAKE2b-256 63c278ba6de0ae6b2549dc6cf8f8b9a8bf4ca2ae522ce86f17409333263f4f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f26569e0ad2ca5830ba7df183b603e177f1bde2505b7880a20b7308c7443586b
MD5 adb39d02973d1bb2dddca47a18c6d4e3
BLAKE2b-256 b14be43e2c9c686f282de342a666ae3385dcd8a34f1ca3fba88a068931dcc0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47333706cf38af649dc7688ee4dff8f062023c94530d27a36ab93639cceaddc5
MD5 095fce3da541c4dd173013c5741135fb
BLAKE2b-256 5c12400efd7804cc90c073ffe0330e44b66d258d7a1027d2f1719c7951769761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 086377a44e48c298890edefc7d7bcaf689ab1b08c87c457a373e20bcfaf3bcc2
MD5 62d544787044ba3e9f2060c4439b1371
BLAKE2b-256 6fcb76baa74ed748e339b6e83e160c65b3e702410f26685ee4675e07e96dd46f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baac8ab13c1da3483ebdd00f861918c355693faedbe53311402595a6efe382cf
MD5 cc63190e02c86fbac089eae0106c536f
BLAKE2b-256 72a115f692e33db2211efd466cb920f205450e861a853e1d074b91d9d0248a9f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a833110b8b3fa4c5a5abd28c39f29c0c459652062b5af325296f4bf0843734ed
MD5 492a70db4e1459ac6b3f85930f4ff7bd
BLAKE2b-256 89d7d7e75fc3437f5531bb3b86ca901d302cf8f8623e465c90186c22733c4c26

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad7f3173f965ac914e5f71fbb6e63beb9bc0ab74caf5cf2d6384118d748c2f99
MD5 75ec67b3109951883882a8dba1fa90ae
BLAKE2b-256 2de1241567776f2ba73d6299735065c33c0949758be4868fe8c0df589bb826b5

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 223de7c78325d9776dfe23d2a4b79d52a6ff648fb2b1d3d26f7cfa1d170af19f
MD5 50d272f698f02055702f928fbbb44234
BLAKE2b-256 bc840869d39796834343502db7ab7d537226b05af80b060db108d64d0c9b9adb

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1242b4ea43a36fb44ee79893de89e56a9473cbf008bb2aaccfcd4e9c3765ec33
MD5 d096b8f757756ca5a4f873fc19ae19a7
BLAKE2b-256 a7927fc4b58bd3c90d2fe4d4b419bd0ca99e541f39620254db087f304cf2470f

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8514d46ff3267235fe2b047b7f0e37bb2a881950948565496819551e68a3ef27
MD5 d5f8c177bb063293f549885ef5d49ae0
BLAKE2b-256 547a27184379c2c192734fdf977234a90d561a96ecf74dccb72b1b9ceef5382d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c01a278bba5ac1fd686f5f1e31ee1e07b0b269b8c5e0cf38a7a13010fb4ddd89
MD5 0e1cab2ba615c0c5d872acec2213450d
BLAKE2b-256 a241ff308ada2314f6923a186586248ec81a5dde8c72a6a112e3e92d570963c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e731827f53748126f177162c35597f352aeda4717fd520a95f6c71f23e17d9c3
MD5 d9b933dc3d91d4d8e2359e7d074f8e0f
BLAKE2b-256 f58c2cfe8d6da387f2023e56a1dce4a5f9e0c86c8a712634fc691e01bcad6159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 46c1ced76db6c768462774a5134efbeb8bc085f5ee445e2b4a11c56ab826424a
MD5 3c5b3c2659588ea2298c481e48e35bf5
BLAKE2b-256 838e30c8d1940379c27db20766575b09dd24bcc1e01c8c64ef4cb158c96aff3d

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c5c5ec5c2d46f8480cef58c010d5661014b2435dca84c2b9aace5b9cd4a25b8
MD5 af8cf4c673020ef2728c4c66ff27ae81
BLAKE2b-256 6b0d540ba989a8e43f7e0d8b243ba57dae97bdff846ee338bb4de0e7b991d249

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 07b6832178eae579ac5e4cbd6a5a8c75197bde99967247a87c2b494dccc5ce9c
MD5 12e212417faec2cbc7b5ad962c392ee6
BLAKE2b-256 e92d97970160c41f0be91088dea90f9e8cc3190bf8c9599744fe7e8529682793

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb5d67088202dc7752807e668a6b363754ff26052629201ce925e6ac0a2d2af5
MD5 e564d3b307567c6d62e3025f1716e239
BLAKE2b-256 91e735960ded2a0a50ddcc9b0a273b85325224911b332d37034e158c1ae38d1a

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d0dc866fbf9a65c0f40c5ee08530f245fa00fb1cca0de25589b08a41a0d5a51f
MD5 e5bb70d2fd0639c45b1c0acbdd5b4522
BLAKE2b-256 1f09d0ab76e8ec89a6c605bb844448e146ed7c395d62c24fb449e0ee7bc1bfa3

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3a174a9e27dffe2798f7598ce9b72f5d3a38b6bc1a8d1ed6a41b87a1af87ff1
MD5 6a2f04a770fb46f1bd985f93ae3e07b0
BLAKE2b-256 bb12e115a962ea615b1ce6255a3bb19dcef2126f98636fedb0025731ba6e0a0b

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c915bb1139ffeb499001cc96910f1ca5e0b895f70e1f6ea0fef70d44d0d22e8
MD5 68d72eb18b6906a25410f58ca6e5148e
BLAKE2b-256 ea1d81ef940b5109bc9b9a508317bf5de24bfa27540f118ce96987ca96e5ba6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 322ebd25db96c16c46b26c87ad12756a3d70638bf88fba0a6cec1cdf824a3a53
MD5 e67bdf4c9f2708a3013ffab756037858
BLAKE2b-256 1d2ab490d18f8dc2b9a6922cec67a9cbaf2f073b6e40e8a207aa7cfd18d26540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05c1e4d2e49ca92c5ea5f219ddf22c931ae893be9d216b1a839d79ce3ca53ad8
MD5 2b0d75c55c8d081844827dcaa916701c
BLAKE2b-256 0a48bae10abf4084ec0d1be352e806e5f474974abfe77fb5afe82eb71afb3a03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f31a9ff913afe59532a0109cc3990824fb7fa5861d0386185550e7c90d0989cf
MD5 906ae0c9926f87e2f29b3fbdb4b5a4f6
BLAKE2b-256 52dd769839d00a30307bfcce91a61a40859a17d9dcfb512730fa862b91328755

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b43f2b9fff175639462fae4059e5943a7f171ee8493b2a992bd216ff287bb07f
MD5 09b12d6838e8568d3cf42550869e3259
BLAKE2b-256 454fe1d13392321d5093b0eb2b01650c628b97ecab27fc3f3ef8392f35166e8d

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp38-cp38-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ecbbb12242d85952c01a2d1d1c7eeeb48987d6c75267589864f7e103f173df3a
MD5 0b5af5e3e7ac60682e08afe076915367
BLAKE2b-256 f5bfb1b7eacb8c80b591bf60970c15768ed4c286e1b4d27a583feae1b8ed98e2

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd87c65a483fea335f4e8726b668bb164eea1741cc84b2afbf3b6703c02e238b
MD5 a558997d3f785873448d6e2b12c3337d
BLAKE2b-256 dc1870339442d30ea123d8f1b4976fbcd3f1dd524e86363c00a9d636a5bbde57

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp38-cp38-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 15a38338b3fdd36d8d2e2097033cd5aa1677b629cfcb1fa048fd72fd48f5f618
MD5 a0181a21abc4a7df431ca384effaa759
BLAKE2b-256 e43ede3b4f1f1b3dfd9f3e76f6fae4e95dd57eb8765d9f24487acb52bc32e34b

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0db4d2f0cb9699f8f9a298f3c835ad94988ce73138b77e086502b61d2b88782
MD5 f16f050ec8b1946efddb1384635d292e
BLAKE2b-256 e342c035fa9764254b82bc9a19280cc3813739cdfef1f384c7a27fd564d9699c

See more details on using hashes here.

File details

Details for the file pybase16384-0.3.9-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4a9200da0a257f6565ed18ab6e246c1059befa49a003c21a6d399e98d2be4d9
MD5 47a4cfffb1820e2b2a6f1bf0c35f4abe
BLAKE2b-256 7d3a79f9020873bfced74b75c979219984291e7df43ad2b809b0de18794ccae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d128f4052844512e4c0586d5172e73650cd2bac4e803779ec2fba22a820f6b6
MD5 71c23088686b428bc1eefbe9362df8df
BLAKE2b-256 80d56500688b5b8574fd9081a3de095ac6dce2ed1306a0ff8b9519534deeaee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c72b8f92c41bdf5acd7325c6904d3f500c6f077040acca469dd0967428ebcec7
MD5 fbea3a00603b6d3994b183ea2a4d42d2
BLAKE2b-256 39d88f3cdfe542245bc61bc49f6f3237b605bce7768b4ed8089471f2249df130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybase16384-0.3.9-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a702056fd567f100d0ca3c4363479927205f9d6aee647a35b898ba4e3e0f308a
MD5 a32e789d1558dda41c85a37c42d8d586
BLAKE2b-256 387cb59f9228f6e329fc70b8b98f38d0610ad1ba5a06e60083ca20239aa8a344

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