<h1 align="center"><i>✨ pybase16384 ✨ </i></h1>
<h3 align="center">The python binding for <a href="https://github.com/fumiama/base16384">base16384</a> </h3>
<h3 align="center"><i>一种神奇的编码 </i></h3>
[](https://pypi.org/project/pybase16384/)





### 使用
- 编码/解码文本
```python
>>> import pybase16384 as pybs
>>> pybs.encode_string('hello!!')
'栙擆羼漡'
>>> pybs.decode_string('栙擆羼漡')
'hello!!'
```
- 编码文件
```python
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)
```
- 解码文件
```python
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'))
```
### 公开函数
```python
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_len```和```decode_len```用于计算输出的长度
### 内部函数
- 他们直接来自底层的C库,高性能,但是一般不需要在外部使用(除非是增加性能)
```python
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](https://github.com/synodriver/pybase16384-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上编译,需要加点料,把 [这个](https://gist.github.com/synodriver/8f1afae7b1a221754cb04ce417dc7e4d) 放进msvc的目录
### 后端选择
默认由py实现决定,在cpython上自动选择cython后端,在pypy上自动选择cffi后端,使用```B14_USE_CFFI```环境变量可以强制选择cffi
Raw data
{
"_id": null,
"home_page": "https://github.com/synodriver/pybase16384",
"name": "pybase16384",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "encode, decode, base16384",
"author": "synodriver",
"author_email": "diguohuangjiajinweijun@gmail.com",
"download_url": null,
"platform": null,
"description": "<h1 align=\"center\"><i>\u2728 pybase16384 \u2728 </i></h1>\n\n<h3 align=\"center\">The python binding for <a href=\"https://github.com/fumiama/base16384\">base16384</a> </h3>\n\n<h3 align=\"center\"><i>\u4e00\u79cd\u795e\u5947\u7684\u7f16\u7801 </i></h3>\n\n[](https://pypi.org/project/pybase16384/)\n\n\n\n\n\n\n\n### \u4f7f\u7528\n\n- \u7f16\u7801/\u89e3\u7801\u6587\u672c\n```python\n>>> import pybase16384 as pybs\n>>> pybs.encode_string('hello!!')\n'\u6819\u64c6\u7fbc\u6f21'\n>>> pybs.decode_string('\u6819\u64c6\u7fbc\u6f21')\n'hello!!'\n```\n\n- \u7f16\u7801\u6587\u4ef6\n\n```python\nfrom io import BytesIO\n\nimport pybase16384 as pybs\n\nwith open(\"input.pcm\", \"rb\") as f:\n data = f.read()\nfor i in range(1):\n pybs.encode_file(BytesIO(data), open(\"output2.pcm\", 'wb'), True)\n```\n- \u89e3\u7801\u6587\u4ef6\n\n```python\nfrom io import BytesIO\n\nimport pybase16384 as pybs\n\nwith open(\"output2.pcm\", \"rb\") as f:\n data = f.read()\nfor i in range(1):\n pybs.decode_file(BytesIO(data), open(\"input2.pcm\", 'wb'))\n```\n\n### \u516c\u5f00\u51fd\u6570\n```python\nfrom typing import IO\n\ndef encode_len(dlen: int) -> int: ...\n\ndef decode_len(dlen: int, offset: int) -> int: ...\n\nENCBUFSZ: int\nDECBUFSZ: int\nFLAG_NOHEADER: int\nFLAG_SUM_CHECK_ON_REMAIN: int\nFLAG_DO_SUM_CHECK_FORCELY: int\n\ndef is_64bits() -> bool: ...\n\ndef encode_file(input: IO, output: IO, write_head: bool = ..., buf_rate: int = ...): ...\n\ndef encode_file_safe(input: IO, output: IO, write_head: bool = ..., buf_rate: int = ...): ...\n\ndef decode_file(input: IO, output: IO, buf_rate: int = ...): ...\n\ndef decode_file_safe(input: IO, output: IO, buf_rate: int = ...): ...\n\ndef ensure_bytes(inp) -> bytes: ...\n\ndef encode_local_file(inp, out) -> None: ...\n\ndef decode_local_file(inp, out) -> None: ...\n\ndef encode_fd(inp: int, out: int) -> None: ...\n\ndef decode_fd(inp: int, out: int) -> None: ...\n\ndef encode_local_file_detailed(inp, out, flag: int) -> None: ...\n\ndef decode_local_file_detailed(inp, out, flag: int) -> None: ...\n\ndef encode_fd_detailed(inp: int, out: int, flag: int) -> None: ...\n\ndef decode_fd_detailed(inp: int, out: int, flag: int) -> None: ...\n\ndef encode(data: bytes) -> bytes: ...\n\ndef encode_safe(data: bytes) -> bytes: ...\n\ndef decode(data: bytes) -> bytes: ...\n\ndef decode_safe(data: bytes) -> bytes: ...\n\ndef encode_from_string(data: str, write_head: bool = ...) -> bytes: ...\n\ndef encode_from_string_safe(data: str, write_head: bool = ...) -> bytes: ...\n\ndef encode_to_string(data: bytes) -> str: ...\n\ndef encode_to_string_safe(data: bytes) -> str: ...\n\ndef encode_string(data: str) -> str: ...\n\ndef encode_string_safe(data: str) -> str: ...\n\ndef decode_from_bytes(data: bytes) -> str: ...\n\ndef decode_from_bytes_safe(data: bytes) -> str: ...\n\ndef decode_from_string(data: str) -> bytes: ...\n\ndef decode_from_string_safe(data: str) -> bytes: ...\n\ndef decode_string(data: str) -> str: ...\n\ndef decode_string_safe(data: str) -> str: ...\n\ndef encode_stream_detailed(inp, out, flag: int): ...\n\ndef decode_stream_detailed(inp, out, flag: int): ...\n```\n- write_head\u5c06\u663e\u5f0f\u6307\u660e\u7f16\u7801\u51fa\u7684\u6587\u672c\u683c\u5f0f(utf16be)\uff0c\u4ee5\u4fbf\u6587\u672c\u7f16\u8f91\u5668(\u5982\u8bb0\u4e8b\u672c)\u80fd\u591f\u6b63\u786e\u6e32\u67d3\uff0c\u4e00\u822c\u5728\u5199\u5165\u6587\u4ef6\u65f6\u4f7f\u7528\u3002\n\n- buf_rate\u6307\u5b9a\u8bfb\u53d6\u6587\u4ef6\u7684\u7b56\u7565\u3002\u5f53\u5b83\u4e3an\u65f6\uff0c\u5219\u8868\u793a\u4e00\u6b21\u8bfb\u53d67n\u6216\u80058n\u4e2a\u5b57\u8282\u3002\u5982\u679c\u8bfb\u5230\u7684\u5b57\u8282\u957f\u5ea6\u5c0f\u4e8e\u9884\u671f\uff0c\u5219\u8bf4\u660e\u957f\u5ea6\u4e0d\u591f\uff0c\n\u6b64\u65f6\uff0cn\u5c06\u51cf\u534a\uff0c\u6062\u590d\u6587\u4ef6\u6307\u9488\uff0c\u91cd\u65b0\u8bfb\u53d6\u3002\u5982\u679c\u5f53n=1\u65f6\u957f\u5ea6\u4ecd\u7136\u4e0d\u591f\uff0c\u5c31\u5730encode/decode\u5904\u7406\u4e4b\u3002\n\n- ```encode_len```\u548c```decode_len```\u7528\u4e8e\u8ba1\u7b97\u8f93\u51fa\u7684\u957f\u5ea6\n\n### \u5185\u90e8\u51fd\u6570\n\n- \u4ed6\u4eec\u76f4\u63a5\u6765\u81ea\u5e95\u5c42\u7684C\u5e93\uff0c\u9ad8\u6027\u80fd\uff0c\u4f46\u662f\u4e00\u822c\u4e0d\u9700\u8981\u5728\u5916\u90e8\u4f7f\u7528\uff08\u9664\u975e\u662f\u589e\u52a0\u6027\u80fd\uff09\n\n```python\ndef _encode(data: BufferProtocol) -> bytes: ...\n\ndef _encode_safe(data: BufferProtocol) -> bytes: ...\n\ndef _decode(data: BufferProtocol) -> bytes: ...\n\ndef _decode_safe(data: BufferProtocol) -> bytes: ...\n\ndef _encode_into(data: BufferProtocol, dest: BufferProtocol) -> int: ...\n\ndef _encode_into_safe(data: BufferProtocol, dest: BufferProtocol) -> int: ...\n\ndef _decode_into(data: BufferProtocol, dest: BufferProtocol) -> int: ...\n\ndef _decode_into_safe(data: BufferProtocol, dest: BufferProtocol) -> int: ...\n\ndef is_64bits() -> bool: ...\n```\n- ```_decode```\u5728\u89e3\u7801```b'='```\u5f00\u5934\u7684\u6570\u636e\u65f6***\u4e0d\u5b89\u5168***\uff1a***\u89e3\u91ca\u5668\u5f02\u5e38***\n- ```_encode_into```\u548c```_decode_into```\u76f4\u63a5\u64cd\u4f5c\u7f13\u51b2\u533a\u5bf9\u8c61\u7684\u5e95\u5c42\u6307\u9488\uff0c0\u62f7\u8d1d\uff0c\u5f53\u7136\u4e5f\u548c\u4e0a\u9762\u4e00\u6837\u7684\u95ee\u9898\uff0c\u4ed6\u4eec\u662f\u6ca1\u6709\u68c0\u67e5\u7684\n\n### \u2728 v0.3\u66f4\u65b0 \u2728 \n\u878d\u5408\u4e86 [CFFI](https://github.com/synodriver/pybase16384-cffi) \u7248\u672c\u7684\u6210\u679c\uff0c\u73b0\u5728\u4e00\u4e2a\u5305\u53ef\u4ee5\u540c\u65f6\u5728cpython\u548cpypy\u4e0a\u8fd0\u884c\n\n### \u672c\u673a\u7f16\u8bd1\n```\npython -m pip install setuptools wheel cython cffi\ngit clone https://github.com/synodriver/pybase16384\ncd pybase16384\ngit submodule update --init --recursive\npython setup.py bdist_wheel --use-cython --use-cffi\n```\n- \u4e3a\u4e86\u5728windows\u4e0a\u7f16\u8bd1\uff0c\u9700\u8981\u52a0\u70b9\u6599\uff0c\u628a [\u8fd9\u4e2a](https://gist.github.com/synodriver/8f1afae7b1a221754cb04ce417dc7e4d) \u653e\u8fdbmsvc\u7684\u76ee\u5f55\n\n### \u540e\u7aef\u9009\u62e9\n\u9ed8\u8ba4\u7531py\u5b9e\u73b0\u51b3\u5b9a\uff0c\u5728cpython\u4e0a\u81ea\u52a8\u9009\u62e9cython\u540e\u7aef\uff0c\u5728pypy\u4e0a\u81ea\u52a8\u9009\u62e9cffi\u540e\u7aef\uff0c\u4f7f\u7528```B14_USE_CFFI```\u73af\u5883\u53d8\u91cf\u53ef\u4ee5\u5f3a\u5236\u9009\u62e9cffi\n",
"bugtrack_url": null,
"license": "GPLv3",
"summary": "fast base16384 encode and decode",
"version": "0.3.8",
"project_urls": {
"Homepage": "https://github.com/synodriver/pybase16384"
},
"split_keywords": [
"encode",
" decode",
" base16384"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "3450c6a7a36bdbc14391ce6c75c05619fa6b8106a61dbb817b3b98a3b1877f66",
"md5": "25256cd2ba146d2f280cf6785ae98457",
"sha256": "710c9ed5120963555c5fd92ad0ff0a31c8c3218ad868901aa976aca1d7ddd102"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "25256cd2ba146d2f280cf6785ae98457",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 422154,
"upload_time": "2025-02-01T06:36:12",
"upload_time_iso_8601": "2025-02-01T06:36:12.796612Z",
"url": "https://files.pythonhosted.org/packages/34/50/c6a7a36bdbc14391ce6c75c05619fa6b8106a61dbb817b3b98a3b1877f66/pybase16384-0.3.8-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d553559baba6eecb08ab5a8a21f18b03104e2ba2b4d9fc39ab4ab517af881b8",
"md5": "bb9ecd221e47f5d95ffb05bfbb3266b2",
"sha256": "aba7e38166cc21fcfd780fe7cce1e2cf256bace3b6591679fba0bdc927076399"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "bb9ecd221e47f5d95ffb05bfbb3266b2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 318090,
"upload_time": "2025-02-01T06:36:15",
"upload_time_iso_8601": "2025-02-01T06:36:15.573700Z",
"url": "https://files.pythonhosted.org/packages/6d/55/3559baba6eecb08ab5a8a21f18b03104e2ba2b4d9fc39ab4ab517af881b8/pybase16384-0.3.8-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b2ed7a57485e145a57696412006e27f18958ec1c0ec686310d7ae0c6f1da8dd",
"md5": "1d0dce907968a4d4ffa40995579579ba",
"sha256": "0638e5e1c0fdc674aac41a47d418d90781a91ca757ebcf03116f7d97106bed79"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1d0dce907968a4d4ffa40995579579ba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 307944,
"upload_time": "2025-02-01T06:36:17",
"upload_time_iso_8601": "2025-02-01T06:36:17.508714Z",
"url": "https://files.pythonhosted.org/packages/0b/2e/d7a57485e145a57696412006e27f18958ec1c0ec686310d7ae0c6f1da8dd/pybase16384-0.3.8-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ffcf6d108c940d3a917e9acb260415932f23fd64a4e8180f82ae9f99e42b41d",
"md5": "8fc84a4b3597edcdb42b205949348e2b",
"sha256": "e9dc8018727d8a0eeb16606b5431231649933dfc84f53efc0d0fb2d1ac0e50b5"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8fc84a4b3597edcdb42b205949348e2b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 343009,
"upload_time": "2025-02-01T07:23:45",
"upload_time_iso_8601": "2025-02-01T07:23:45.198940Z",
"url": "https://files.pythonhosted.org/packages/4f/fc/f6d108c940d3a917e9acb260415932f23fd64a4e8180f82ae9f99e42b41d/pybase16384-0.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb581f3917cee97ce9304def765df16a0c6293a5e96b3924eeb2f3410f861b6c",
"md5": "b3235ada791e173e9fa09ab944a989cd",
"sha256": "c130a1defb513d60789a14e3f982ca7e048d4707ca9a6da44dac6af38ea12176"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b3235ada791e173e9fa09ab944a989cd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 349281,
"upload_time": "2025-02-01T07:23:47",
"upload_time_iso_8601": "2025-02-01T07:23:47.567244Z",
"url": "https://files.pythonhosted.org/packages/fb/58/1f3917cee97ce9304def765df16a0c6293a5e96b3924eeb2f3410f861b6c/pybase16384-0.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2307a74b8830089d833f87a38b745ed173048a3f7f92c98e913c084de27fbb8b",
"md5": "8b737ac076f46ebd7f36132c30b20d89",
"sha256": "2543057ed336a08b9e673d86c6b9b38585999d2d72ce7ab98a98cad44f4e499d"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8b737ac076f46ebd7f36132c30b20d89",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 349969,
"upload_time": "2025-02-01T07:23:49",
"upload_time_iso_8601": "2025-02-01T07:23:49.554994Z",
"url": "https://files.pythonhosted.org/packages/23/07/a74b8830089d833f87a38b745ed173048a3f7f92c98e913c084de27fbb8b/pybase16384-0.3.8-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1edd10faadff594ec4a0c279b5d6b464a32f882c68ab29e5766fe6aa6771c268",
"md5": "69113b3ff4ff432320a86c5bc5578c4b",
"sha256": "433d5e008b8b1e644b0b66efc9a18ee682e82505f393534135608893baa5dd74"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "69113b3ff4ff432320a86c5bc5578c4b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 357685,
"upload_time": "2025-02-01T07:23:51",
"upload_time_iso_8601": "2025-02-01T07:23:51.638038Z",
"url": "https://files.pythonhosted.org/packages/1e/dd/10faadff594ec4a0c279b5d6b464a32f882c68ab29e5766fe6aa6771c268/pybase16384-0.3.8-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9ce1b07b9d31c00531aeaa94716742af1258a1f676b37635a597e4bf90adffd",
"md5": "7f85d7652af2d75994bd0579c1796acb",
"sha256": "2dbdba2ba8d89735a73f61102a37be4dabc1f1d46dc2892ce11517a6076b7cb1"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "7f85d7652af2d75994bd0579c1796acb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 424642,
"upload_time": "2025-02-01T06:36:18",
"upload_time_iso_8601": "2025-02-01T06:36:18.934244Z",
"url": "https://files.pythonhosted.org/packages/a9/ce/1b07b9d31c00531aeaa94716742af1258a1f676b37635a597e4bf90adffd/pybase16384-0.3.8-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11021b0bbb940de542eea3c6e112230d8b2f57dc773d4e8fc785f5af65f3fb5c",
"md5": "e1159dd550badf089b242f9efcb71474",
"sha256": "9eead54dc26be278f12e67b2ca1f8a68245b848ae019c016c4a2d9ab4bea3937"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e1159dd550badf089b242f9efcb71474",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 319276,
"upload_time": "2025-02-01T06:36:20",
"upload_time_iso_8601": "2025-02-01T06:36:20.823177Z",
"url": "https://files.pythonhosted.org/packages/11/02/1b0bbb940de542eea3c6e112230d8b2f57dc773d4e8fc785f5af65f3fb5c/pybase16384-0.3.8-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "029789bad66ee1230d7eb3226093c7ca868773ad9d0bff1829826f24d98440b5",
"md5": "13a048ca08c136f6ee55e19992f93f25",
"sha256": "7ce8a0f5f1452ff7b87897251c0826f1f39de927a8c13b9b786010dedde2a052"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "13a048ca08c136f6ee55e19992f93f25",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 309134,
"upload_time": "2025-02-01T06:36:22",
"upload_time_iso_8601": "2025-02-01T06:36:22.654337Z",
"url": "https://files.pythonhosted.org/packages/02/97/89bad66ee1230d7eb3226093c7ca868773ad9d0bff1829826f24d98440b5/pybase16384-0.3.8-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4cf7cce745791050f8fe17d2c6d8d1d3342e8164d317eba79329a5df1de3c066",
"md5": "a6742bf6f1fcf04e0f5051e733e921e0",
"sha256": "e1a6b30124c59624a894ffcb94b09e91ae6aa791fcc858bdfee11a0d2704e140"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a6742bf6f1fcf04e0f5051e733e921e0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 344280,
"upload_time": "2025-02-01T07:23:53",
"upload_time_iso_8601": "2025-02-01T07:23:53.667140Z",
"url": "https://files.pythonhosted.org/packages/4c/f7/cce745791050f8fe17d2c6d8d1d3342e8164d317eba79329a5df1de3c066/pybase16384-0.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1abc2bb8214a702b19ded13b777c36b53705043f68bfdd54f025da056a6107fa",
"md5": "73ea69c7b5227fde07a5fcf963ca1e9b",
"sha256": "30598b05c8d8565afabf8f7cfba2932abcdafc917db61ac88e383a83f42078d1"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "73ea69c7b5227fde07a5fcf963ca1e9b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 350443,
"upload_time": "2025-02-01T07:23:55",
"upload_time_iso_8601": "2025-02-01T07:23:55.829139Z",
"url": "https://files.pythonhosted.org/packages/1a/bc/2bb8214a702b19ded13b777c36b53705043f68bfdd54f025da056a6107fa/pybase16384-0.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "290129922d2c95f46d75460594d2ead78c2ad3327811ddba08f8296ec59184f3",
"md5": "57222037e131a57e471d955917800bd7",
"sha256": "571a8c06673eeeb8da6b03cb25a154bb386258f492b8156b45417f9897a6135d"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "57222037e131a57e471d955917800bd7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 351444,
"upload_time": "2025-02-01T07:23:57",
"upload_time_iso_8601": "2025-02-01T07:23:57.917049Z",
"url": "https://files.pythonhosted.org/packages/29/01/29922d2c95f46d75460594d2ead78c2ad3327811ddba08f8296ec59184f3/pybase16384-0.3.8-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5aa2796e2f86188a6d96291d5ca910d67047c0c97acd1b3aa1e60583b30eefc5",
"md5": "fcc26a55e6a3ed2a3bef32d742b3f6b4",
"sha256": "11af807b0393a6154f7fb113b3f5dec9eaa145da1edf8753fa93193193fe06ff"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fcc26a55e6a3ed2a3bef32d742b3f6b4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 359281,
"upload_time": "2025-02-01T07:23:59",
"upload_time_iso_8601": "2025-02-01T07:23:59.843388Z",
"url": "https://files.pythonhosted.org/packages/5a/a2/796e2f86188a6d96291d5ca910d67047c0c97acd1b3aa1e60583b30eefc5/pybase16384-0.3.8-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebcaeca2ea93056223d61ae684d07605c291cef8b746a96fcd459c5b812a6ced",
"md5": "be1d0d3725dacd7111f515493f266eee",
"sha256": "3fc6da8e61ab6be22445ad4580250a5ff946db1597ed76cdf8b343fa4317ce3a"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "be1d0d3725dacd7111f515493f266eee",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 428260,
"upload_time": "2025-02-01T06:36:23",
"upload_time_iso_8601": "2025-02-01T06:36:23.761291Z",
"url": "https://files.pythonhosted.org/packages/eb/ca/eca2ea93056223d61ae684d07605c291cef8b746a96fcd459c5b812a6ced/pybase16384-0.3.8-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5b31a41711082a02956d8633cf6c791ed01c5780ad18c972508ae0929fd6198",
"md5": "44ea21088ade2eafbe214a6fceb6f3f9",
"sha256": "8055dafe65d63ad1c5bc05485ebb554342d91d4d41297ca0fba00f7af4cfe7e0"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "44ea21088ade2eafbe214a6fceb6f3f9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 321342,
"upload_time": "2025-02-01T06:36:25",
"upload_time_iso_8601": "2025-02-01T06:36:25.607949Z",
"url": "https://files.pythonhosted.org/packages/f5/b3/1a41711082a02956d8633cf6c791ed01c5780ad18c972508ae0929fd6198/pybase16384-0.3.8-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59cae9e895cc65443d96ccdaed68271b0867fcf198ad968dd2d8ebb65e2ccb86",
"md5": "fe6ffec08237c025eeb07dfd9ac8ce00",
"sha256": "486b820c86e982e67a913445df0b148975111ea2405f776f880cec2c30e37919"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fe6ffec08237c025eeb07dfd9ac8ce00",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 310820,
"upload_time": "2025-02-01T06:36:29",
"upload_time_iso_8601": "2025-02-01T06:36:29.364051Z",
"url": "https://files.pythonhosted.org/packages/59/ca/e9e895cc65443d96ccdaed68271b0867fcf198ad968dd2d8ebb65e2ccb86/pybase16384-0.3.8-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ae81d6a15d44f24928e4c38ab90820d0a63233029187463c1404ef4cc0caf53",
"md5": "759a4c55ea26fc3211c2791b653b3035",
"sha256": "43271108ea9a2980d21804c40b7cb4847b4ccc4b907a766b1b33c7b69dbb5a49"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "759a4c55ea26fc3211c2791b653b3035",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 341324,
"upload_time": "2025-02-01T07:24:01",
"upload_time_iso_8601": "2025-02-01T07:24:01.740860Z",
"url": "https://files.pythonhosted.org/packages/7a/e8/1d6a15d44f24928e4c38ab90820d0a63233029187463c1404ef4cc0caf53/pybase16384-0.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "45b625f6679b9d1bd76fb93028c09c3bee8d4a99ec9d2c1ef7c9d8369a0dc05e",
"md5": "9d9e6defc4de20e00fda48ba2e5c59ac",
"sha256": "a99fbfb0d78fd974729816234fed7a5c44d661cf7a56b33ed1ae7344b2c17954"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9d9e6defc4de20e00fda48ba2e5c59ac",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 347639,
"upload_time": "2025-02-01T07:24:03",
"upload_time_iso_8601": "2025-02-01T07:24:03.855390Z",
"url": "https://files.pythonhosted.org/packages/45/b6/25f6679b9d1bd76fb93028c09c3bee8d4a99ec9d2c1ef7c9d8369a0dc05e/pybase16384-0.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d5a2474cacf996c15745250f58485615fd61e39a82affb8b68b77417010f39f",
"md5": "303016bb53677936805ad0fb1047dda3",
"sha256": "f51e8bcc0efc222322aeae343645115cd01315995101256dc804ce437cbe488d"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "303016bb53677936805ad0fb1047dda3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 346692,
"upload_time": "2025-02-01T07:24:06",
"upload_time_iso_8601": "2025-02-01T07:24:06.127704Z",
"url": "https://files.pythonhosted.org/packages/7d/5a/2474cacf996c15745250f58485615fd61e39a82affb8b68b77417010f39f/pybase16384-0.3.8-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca7863ace51233d86f5bfcdf688a6c661cbbd4c97b0a971aeea33f065c63f87e",
"md5": "3ec3a856011d9ded79ca2a2f9f6bd484",
"sha256": "ffca08000c4dc6cdc590705758c697642caab5cf70b731ba4235fcafc089a82b"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3ec3a856011d9ded79ca2a2f9f6bd484",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 354306,
"upload_time": "2025-02-01T07:24:08",
"upload_time_iso_8601": "2025-02-01T07:24:08.338479Z",
"url": "https://files.pythonhosted.org/packages/ca/78/63ace51233d86f5bfcdf688a6c661cbbd4c97b0a971aeea33f065c63f87e/pybase16384-0.3.8-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "baf1cdd57c6fccfbfe8666a3c70c60d295b3480d9cd4df798fd8eca737ee3cfb",
"md5": "09c348dce811cf61637fd732b6baeb50",
"sha256": "d5fc23bcdf0db7ed548170f7e0acd4c36b6d9e06db92858e06da2adae574d65e"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "09c348dce811cf61637fd732b6baeb50",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 426499,
"upload_time": "2025-02-01T06:36:32",
"upload_time_iso_8601": "2025-02-01T06:36:32.055889Z",
"url": "https://files.pythonhosted.org/packages/ba/f1/cdd57c6fccfbfe8666a3c70c60d295b3480d9cd4df798fd8eca737ee3cfb/pybase16384-0.3.8-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "062dd1d4331c6455bbae6dee58e9a788d630d67fbc7004e6e87607930e963678",
"md5": "6ac5845479f2ff6728d7eddcb3fb18cd",
"sha256": "0678a281c4ac03dbf8a380847dbeb24ae9a064059155dab6de0fa91e6b12fea1"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "6ac5845479f2ff6728d7eddcb3fb18cd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 320353,
"upload_time": "2025-02-01T06:36:35",
"upload_time_iso_8601": "2025-02-01T06:36:35.083029Z",
"url": "https://files.pythonhosted.org/packages/06/2d/d1d4331c6455bbae6dee58e9a788d630d67fbc7004e6e87607930e963678/pybase16384-0.3.8-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47810c1f023ef4a942e5ae4595cc6bc22e7b18fac6a09f2c8cc48a8def653b18",
"md5": "f8ca47e786717959456ab0b9a608339d",
"sha256": "718025f26cf79d482f183035800afbac9cc72193ecaf41c19c7c2618cd3402b6"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f8ca47e786717959456ab0b9a608339d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 309988,
"upload_time": "2025-02-01T06:36:37",
"upload_time_iso_8601": "2025-02-01T06:36:37.232585Z",
"url": "https://files.pythonhosted.org/packages/47/81/0c1f023ef4a942e5ae4595cc6bc22e7b18fac6a09f2c8cc48a8def653b18/pybase16384-0.3.8-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3c824acd379fd81f1bfe7ed8bee3643ae01ab09d1593f4c2acc0463e1c65c3ea",
"md5": "dbae99b7319a3a6de25a95f6be6a553c",
"sha256": "9d27ae49a6ada8b0663f6647ddb74af679d098bd12ed1feaf9e164d73c017a12"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "dbae99b7319a3a6de25a95f6be6a553c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 341180,
"upload_time": "2025-02-01T07:24:09",
"upload_time_iso_8601": "2025-02-01T07:24:09.739096Z",
"url": "https://files.pythonhosted.org/packages/3c/82/4acd379fd81f1bfe7ed8bee3643ae01ab09d1593f4c2acc0463e1c65c3ea/pybase16384-0.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7f1ba25db880f21e1b514a103cce492279516f276244073770b1d629b63dfd3",
"md5": "7dd0796c628f7d53632e55ff4bc7d425",
"sha256": "962a347f0b34af656141a68eb246daa8b4ceac44adf326c6ea9e22f5c9956d6e"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7dd0796c628f7d53632e55ff4bc7d425",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 347103,
"upload_time": "2025-02-01T07:24:11",
"upload_time_iso_8601": "2025-02-01T07:24:11.081664Z",
"url": "https://files.pythonhosted.org/packages/e7/f1/ba25db880f21e1b514a103cce492279516f276244073770b1d629b63dfd3/pybase16384-0.3.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a4e7125800432f8e4ef244a217daf0f4718b76cc26b0695cedd3e60a708e7c0",
"md5": "ae1d1a17aaa0edd08b585b89d21ada76",
"sha256": "1996cf1c61b2a8c970f3469c8a214bbf5f8faf410e423e36fe8d67a45b39095a"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ae1d1a17aaa0edd08b585b89d21ada76",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 346508,
"upload_time": "2025-02-01T07:24:12",
"upload_time_iso_8601": "2025-02-01T07:24:12.968823Z",
"url": "https://files.pythonhosted.org/packages/5a/4e/7125800432f8e4ef244a217daf0f4718b76cc26b0695cedd3e60a708e7c0/pybase16384-0.3.8-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b45a084196ed688f40d09e0cba18b2ffe47410390171598ba080481b18dc445",
"md5": "deb0bf3f74f0f9c307c240cbb3bfd50a",
"sha256": "cf2b9eace9c404697787d92d63ab4abf3337b25ac6c9b947e1d05c16dd058c93"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "deb0bf3f74f0f9c307c240cbb3bfd50a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 353926,
"upload_time": "2025-02-01T07:24:15",
"upload_time_iso_8601": "2025-02-01T07:24:15.053668Z",
"url": "https://files.pythonhosted.org/packages/3b/45/a084196ed688f40d09e0cba18b2ffe47410390171598ba080481b18dc445/pybase16384-0.3.8-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cef97db0bf65310c67448646813b8de9b5f6389b0462a6a9d8164d4a55374d2b",
"md5": "47d8fb7ea29bad182a010cf9abea85f9",
"sha256": "8f2f2343344a8eed066e2e0cbaee2fc3485f9ebeaa58957c8f9825dac9b625c0"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "47d8fb7ea29bad182a010cf9abea85f9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 423273,
"upload_time": "2025-02-01T06:36:38",
"upload_time_iso_8601": "2025-02-01T06:36:38.379931Z",
"url": "https://files.pythonhosted.org/packages/ce/f9/7db0bf65310c67448646813b8de9b5f6389b0462a6a9d8164d4a55374d2b/pybase16384-0.3.8-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3546a7c8233443fa176f3d60dcb8a9db5d46c94076cf91e7e802820badce1f86",
"md5": "1e4c7d07a156013ec6210517c96434f5",
"sha256": "da59a5f32589cd6294f11717b988ad2996a9a1b9d5bdd130b7c2da8777f292e2"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "1e4c7d07a156013ec6210517c96434f5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 318654,
"upload_time": "2025-02-01T06:36:39",
"upload_time_iso_8601": "2025-02-01T06:36:39.770799Z",
"url": "https://files.pythonhosted.org/packages/35/46/a7c8233443fa176f3d60dcb8a9db5d46c94076cf91e7e802820badce1f86/pybase16384-0.3.8-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "109b5ed75d8a9db4471749a67cb05327b18abda5ffd32d84d5048b80166fe496",
"md5": "97ed372734ea5002a5034113fab15854",
"sha256": "adc849eaace80dba4d76e83381345935a571cbc56e0ab44be361392363d48213"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "97ed372734ea5002a5034113fab15854",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 308454,
"upload_time": "2025-02-01T06:36:41",
"upload_time_iso_8601": "2025-02-01T06:36:41.664798Z",
"url": "https://files.pythonhosted.org/packages/10/9b/5ed75d8a9db4471749a67cb05327b18abda5ffd32d84d5048b80166fe496/pybase16384-0.3.8-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3610b9ce0049972da6fadb38cdf5515e3388489ff56b6ac07e8f578ec20f432",
"md5": "1414a710d7adedf3668715c139f14a7e",
"sha256": "e6acbf1b5ea81bb54dcf0cce61d2c46bee554a71648484c6f018bbadcece3302"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1414a710d7adedf3668715c139f14a7e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 345053,
"upload_time": "2025-02-01T07:24:16",
"upload_time_iso_8601": "2025-02-01T07:24:16.447463Z",
"url": "https://files.pythonhosted.org/packages/b3/61/0b9ce0049972da6fadb38cdf5515e3388489ff56b6ac07e8f578ec20f432/pybase16384-0.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aff04519760d7b0ad6bb7bdaca1622005aaaaa2d39f2b5e8d4508ba72d97abbe",
"md5": "c7b1876bdec65fa2af4977d0657a0cd1",
"sha256": "aa390c0c431240332f9ffb92f22c0ca3b30d83157b8cf3869fde0f5b2f4b2599"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c7b1876bdec65fa2af4977d0657a0cd1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 350187,
"upload_time": "2025-02-01T07:24:18",
"upload_time_iso_8601": "2025-02-01T07:24:18.529655Z",
"url": "https://files.pythonhosted.org/packages/af/f0/4519760d7b0ad6bb7bdaca1622005aaaaa2d39f2b5e8d4508ba72d97abbe/pybase16384-0.3.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d5671e218abfa0b10d682074d57b93458d4ad42c4e2c25ebcee111668d09f01",
"md5": "90294a27279ca7e3dbd1eb1ca909c93b",
"sha256": "e69cfe65c3e085a0da532de1ec804c2ff27a9316e38f118e65ee81cbd75631f1"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "90294a27279ca7e3dbd1eb1ca909c93b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 351657,
"upload_time": "2025-02-01T07:24:19",
"upload_time_iso_8601": "2025-02-01T07:24:19.986579Z",
"url": "https://files.pythonhosted.org/packages/4d/56/71e218abfa0b10d682074d57b93458d4ad42c4e2c25ebcee111668d09f01/pybase16384-0.3.8-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a19ef71049a860ddfd5f6142217d47932742713d53bf5755ba9482dfa57324b2",
"md5": "90385543263ef81aaab794a849642c58",
"sha256": "45891ef248192161363af43d42064baefb0e13b9cd3c9b8fb8b8d837ff265595"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "90385543263ef81aaab794a849642c58",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 358930,
"upload_time": "2025-02-01T07:24:21",
"upload_time_iso_8601": "2025-02-01T07:24:21.984723Z",
"url": "https://files.pythonhosted.org/packages/a1/9e/f71049a860ddfd5f6142217d47932742713d53bf5755ba9482dfa57324b2/pybase16384-0.3.8-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee30ae56911cd1edffad595be749442aea4f750ab7850edf294fac0d43c28d1c",
"md5": "73eb175464d153afb3c220c4d6e2bd56",
"sha256": "c793dc03366fcd3244b740a31c6e8c53dee5a2c5b4be4d068f5ff701d8fb7d4b"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "73eb175464d153afb3c220c4d6e2bd56",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 423254,
"upload_time": "2025-02-01T06:36:42",
"upload_time_iso_8601": "2025-02-01T06:36:42.702277Z",
"url": "https://files.pythonhosted.org/packages/ee/30/ae56911cd1edffad595be749442aea4f750ab7850edf294fac0d43c28d1c/pybase16384-0.3.8-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22794cf3f37babfbe252b00daeaf8c4b8d819919f907c56507d89d6c579d2d88",
"md5": "7bda9d356067f5be23800af60aaa8cc0",
"sha256": "6e1d1619b2e3b459a20d54945861281227ea6106994c49acb96925f842a0acc0"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7bda9d356067f5be23800af60aaa8cc0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 318656,
"upload_time": "2025-02-01T06:36:43",
"upload_time_iso_8601": "2025-02-01T06:36:43.759049Z",
"url": "https://files.pythonhosted.org/packages/22/79/4cf3f37babfbe252b00daeaf8c4b8d819919f907c56507d89d6c579d2d88/pybase16384-0.3.8-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b5d9f6480ec90a73adc893f818087dfe3a9f91589e6330c68786447af9e16d8",
"md5": "3a6bf8f50fd815262a068046568a94d6",
"sha256": "9a59a05e41700b01c6173796ce903b4526d1150e3b344567250932a859f7a494"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3a6bf8f50fd815262a068046568a94d6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 308474,
"upload_time": "2025-02-01T06:36:45",
"upload_time_iso_8601": "2025-02-01T06:36:45.586665Z",
"url": "https://files.pythonhosted.org/packages/4b/5d/9f6480ec90a73adc893f818087dfe3a9f91589e6330c68786447af9e16d8/pybase16384-0.3.8-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "756998e07386d0e2597b667f8ed0b95da426e70f1adafb1a29c6593b8b0e9b89",
"md5": "795b9b86d5233dc91584f6808edc1035",
"sha256": "4d937b2c27e6d5886f9036e4868aac87c15a6e80cb98973d9a0ff7d44c592740"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "795b9b86d5233dc91584f6808edc1035",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 343903,
"upload_time": "2025-02-01T07:24:24",
"upload_time_iso_8601": "2025-02-01T07:24:24.094144Z",
"url": "https://files.pythonhosted.org/packages/75/69/98e07386d0e2597b667f8ed0b95da426e70f1adafb1a29c6593b8b0e9b89/pybase16384-0.3.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d41c7e1ba7971bb3732b318cc70520060237f643ce7862bb3ed3dc0cf54c4c07",
"md5": "394b2756469b4ceed6cffb67feb6eb88",
"sha256": "d3f3fa55d42508a529361467d5a312c34da1a79dc4b6dee99a80c0828e97f837"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "394b2756469b4ceed6cffb67feb6eb88",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 349721,
"upload_time": "2025-02-01T07:24:25",
"upload_time_iso_8601": "2025-02-01T07:24:25.832951Z",
"url": "https://files.pythonhosted.org/packages/d4/1c/7e1ba7971bb3732b318cc70520060237f643ce7862bb3ed3dc0cf54c4c07/pybase16384-0.3.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8305d38acb24b7018942006460c070195bc2ca984161999c9701945265f2392",
"md5": "734601241fe384fcc66f72252d617aa2",
"sha256": "c2547915af3ea16e9d3eaa6f97504a1de4b2d9cb3ef0ca78665785709c1a98e2"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "734601241fe384fcc66f72252d617aa2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 350856,
"upload_time": "2025-02-01T07:24:27",
"upload_time_iso_8601": "2025-02-01T07:24:27.640447Z",
"url": "https://files.pythonhosted.org/packages/f8/30/5d38acb24b7018942006460c070195bc2ca984161999c9701945265f2392/pybase16384-0.3.8-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68feb47433cd49928144e7acfff411ca5a13bb4ec478e4cfc3bbca575fba7dae",
"md5": "216e7d7a265bd7087b291b51e2b46ef1",
"sha256": "c71575584709dc8991450268eddbd54cdde49950ac17af1e2a15cb849d38400a"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "216e7d7a265bd7087b291b51e2b46ef1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 357551,
"upload_time": "2025-02-01T07:24:28",
"upload_time_iso_8601": "2025-02-01T07:24:28.895107Z",
"url": "https://files.pythonhosted.org/packages/68/fe/b47433cd49928144e7acfff411ca5a13bb4ec478e4cfc3bbca575fba7dae/pybase16384-0.3.8-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b50381ff4925e7a4f5da90ee53fddeaba661883be51d27ded3e62572bd880450",
"md5": "6517d34821c24a8219c3e9a955e6c5de",
"sha256": "591292b468d108f3d20ffd926660484b4c0085456d479a936c5592bfff98d53c"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "6517d34821c24a8219c3e9a955e6c5de",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 304293,
"upload_time": "2025-02-01T06:36:46",
"upload_time_iso_8601": "2025-02-01T06:36:46.699057Z",
"url": "https://files.pythonhosted.org/packages/b5/03/81ff4925e7a4f5da90ee53fddeaba661883be51d27ded3e62572bd880450/pybase16384-0.3.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "28f3db56879944e46c840703198c0ad39144ca5e4162c32e9f67fa6f68ec1f19",
"md5": "4120493114bf3fda84ce315e31dd2cd6",
"sha256": "5c18814deb4602a7d0b459a7507d2ac6de6f7999b4ea1bb0bcd5c7492358c258"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4120493114bf3fda84ce315e31dd2cd6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 330260,
"upload_time": "2025-02-01T07:24:30",
"upload_time_iso_8601": "2025-02-01T07:24:30.239052Z",
"url": "https://files.pythonhosted.org/packages/28/f3/db56879944e46c840703198c0ad39144ca5e4162c32e9f67fa6f68ec1f19/pybase16384-0.3.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19252577e7e813bf941e0306837798a4ccf3422c997e5d31744f841d2ae93ca0",
"md5": "c613985b2788f0c00c0d75a3c499c120",
"sha256": "a6dd13e425c4f52bdac7ad789e05b2cd24fa175472a1124cb5a2e42eff7f6644"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c613985b2788f0c00c0d75a3c499c120",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 334917,
"upload_time": "2025-02-01T07:24:32",
"upload_time_iso_8601": "2025-02-01T07:24:32.212031Z",
"url": "https://files.pythonhosted.org/packages/19/25/2577e7e813bf941e0306837798a4ccf3422c997e5d31744f841d2ae93ca0/pybase16384-0.3.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfb1327eaffbaa9fb11693b5807ae3be2067ef5970b020aecdf7aea2005ff58b",
"md5": "85fa7fd1d79d851526f38bc737e60344",
"sha256": "a30e3c77e5e2822c610c97dbf9639c0536674f5776d5205971a295798f2fe623"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "85fa7fd1d79d851526f38bc737e60344",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 304191,
"upload_time": "2025-02-01T06:36:48",
"upload_time_iso_8601": "2025-02-01T06:36:48.495997Z",
"url": "https://files.pythonhosted.org/packages/df/b1/327eaffbaa9fb11693b5807ae3be2067ef5970b020aecdf7aea2005ff58b/pybase16384-0.3.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec17385faa3193cea4d4d9cabb99b8b62c21f86c30c3e0171d3ca6a9c54763c2",
"md5": "161012abc8864a85c5a21d70d425d7c2",
"sha256": "2946d652f5fa836fd981a722d01f1bd14d2d2ecc2f9893af5ed075f78ce0b520"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "161012abc8864a85c5a21d70d425d7c2",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 329650,
"upload_time": "2025-02-01T07:24:34",
"upload_time_iso_8601": "2025-02-01T07:24:34.263148Z",
"url": "https://files.pythonhosted.org/packages/ec/17/385faa3193cea4d4d9cabb99b8b62c21f86c30c3e0171d3ca6a9c54763c2/pybase16384-0.3.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "921c1123ab77e307e2d78bc010cb0b22805246f1dc14cf5dc0d5420c7e4579d9",
"md5": "9792fb5ddda015f8c11cb0faeddcb376",
"sha256": "3f9b9df4679bf2331410336a973aabf876c3093feeccd422227b85b41b3aaa6b"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9792fb5ddda015f8c11cb0faeddcb376",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 333796,
"upload_time": "2025-02-01T07:24:35",
"upload_time_iso_8601": "2025-02-01T07:24:35.453605Z",
"url": "https://files.pythonhosted.org/packages/92/1c/1123ab77e307e2d78bc010cb0b22805246f1dc14cf5dc0d5420c7e4579d9/pybase16384-0.3.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4895822cd1def76ce0859be138307b71eb5b8745a806ac3b6317d8457471cd4",
"md5": "a550e55cd8c58fe19c1f014f0f4c5d72",
"sha256": "e6e768a10be963d279c37f92090ed6c9e82fdc91f68cb6382a466304d7efe09c"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "a550e55cd8c58fe19c1f014f0f4c5d72",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 304137,
"upload_time": "2025-02-01T06:36:50",
"upload_time_iso_8601": "2025-02-01T06:36:50.565252Z",
"url": "https://files.pythonhosted.org/packages/b4/89/5822cd1def76ce0859be138307b71eb5b8745a806ac3b6317d8457471cd4/pybase16384-0.3.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e03250e0e273c258bcdc6ff7bdffa0b067909bbcedc792b4518ddbe74d541e2c",
"md5": "7d3c9bca0107a3fab60f01f456682b1f",
"sha256": "e0e3dd4f6b28ca5a3948f8313b0aea6876a7cd9860aa7fe51d6325b3ce83df17"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7d3c9bca0107a3fab60f01f456682b1f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 330245,
"upload_time": "2025-02-01T07:24:37",
"upload_time_iso_8601": "2025-02-01T07:24:37.509374Z",
"url": "https://files.pythonhosted.org/packages/e0/32/50e0e273c258bcdc6ff7bdffa0b067909bbcedc792b4518ddbe74d541e2c/pybase16384-0.3.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50daf643d96aa6d9762bdda44402e36adda1596ed090236c72499213c561c22f",
"md5": "92b8a4b52764d64475de3224d64a9f3f",
"sha256": "16c3cd0e0d9da666c68e1dcd921c7123e2ca8d339c89d3c9cbf5ba23e68d8125"
},
"downloads": -1,
"filename": "pybase16384-0.3.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "92b8a4b52764d64475de3224d64a9f3f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 334827,
"upload_time": "2025-02-01T07:24:38",
"upload_time_iso_8601": "2025-02-01T07:24:38.955584Z",
"url": "https://files.pythonhosted.org/packages/50/da/f643d96aa6d9762bdda44402e36adda1596ed090236c72499213c561c22f/pybase16384-0.3.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-01 06:36:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "synodriver",
"github_project": "pybase16384",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "Cython",
"specs": [
[
">=",
"3.1.0a1"
]
]
},
{
"name": "cffi",
"specs": [
[
">=",
"1.0.0"
]
]
}
],
"lcname": "pybase16384"
}