Skip to main content

yutto

PyPI - Python Version pypi PyPI - Downloads LICENSE
uv ruff Gitmoji discord chat

🧊 yutto,一个可爱且任性的 B 站视频下载器(CLI)

完整静态文档在这里喔 → yutto

[!TIP]

如果在使用过程中遇到问题,请通过 Issues 反馈功能正确性问题和功能请求,其他问题请通过 Discussions 反馈~

什么是 yutto?

yutto 是一个 B 站视频下载器,它可以帮助你下载 B 站上的投稿视频、番剧、课程等资源,支持单个视频下载、批量下载等功能,就像这样:

 yutto https://www.bilibili.com/video/BV1CTMHziEaB/
 INFO  发现配置文件 yutto.toml,加载中……
 大会员  成功以大会员身份登录~
 投稿视频  《原神》动画短片——「尘间星旅」
 INFO  开始处理视频 《原神》动画短片——「尘间星旅」
 INFO  共包含以下 15 个视频流:
 INFO  * 0 [AVC ] [1920x1080] <1080P 高码率> #3
 INFO    1 [HEVC] [1920x1080] <1080P 高码率> #3
 INFO    2 [AV1 ] [1920x1080] <1080P 高码率> #3
 INFO    3 [AVC ] [1920x1080] <1080P 高清> #3
 INFO    4 [HEVC] [1920x1080] <1080P 高清> #3
 INFO    5 [AV1 ] [1920x1080] <1080P 高清> #3
 INFO    6 [AVC ] [1280x720 ] <720P 准高清> #3
 INFO    7 [HEVC] [1280x720 ] <720P 准高清> #3
 INFO    8 [AV1 ] [1280x720 ] <720P 准高清> #3
 INFO    9 [AVC ] [ 852x480 ] <480P 标清 > #3
 INFO   10 [HEVC] [ 852x480 ] <480P 标清 > #3
 INFO   11 [AV1 ] [ 852x480 ] <480P 标清 > #3
 INFO   12 [AVC ] [ 640x360 ] <360P 流畅 > #3
 INFO   13 [HEVC] [ 640x360 ] <360P 流畅 > #3
 INFO   14 [AV1 ] [ 640x360 ] <360P 流畅 > #3
 INFO  共包含以下 3 个音频流:
 INFO  * 0 [MP4A] <320kbps >
 INFO    1 [MP4A] < 64kbps >
 INFO    2 [MP4A] <128kbps >
 弹幕  ASS 弹幕已生成
 INFO  开始下载……
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━  49.25 MiB/ 54.30 MiB 32.22 MiB/⚡

从安装开始~

包管理器一键安装啦

目前 yutto 已经可以通过部分包管理器直接安装~

使用 Homebrew 的用户可以尝试下下面的命令:

brew tap siguremo/tap
brew install yutto

Arch Linux 用户可以从 AUR(感谢 @ouuan)或 archlinuxcn 安装:

# 从 AUR 安装
yay -S yutto      # 适用于 yay 用户
paru -S yutto     # 适用于 paru 用户
# 或者从 archlinuxcn 安装
sudo pacman -S yutto

使用 Docker

你也可以尝试使用 docker 直接运行 yutto(具体如何运行需要参考下后面的内容~)

docker run --rm -it -v /path/to/download:/app siguremo/yutto <url> [options]

与直接运行 yutto 不同的是,这里的下载目标路径是通过 -v <path>:/app 指定的,也就是说 docker 里的 yutto 会将内容下载到 docker 里的 /app 目录下,与之相对应的挂载点 <path> 就是下载路径。你也可以直接挂载到 $(pwd),此时就和本机 yutto 的默认行为一致啦,也是下载到当前目录下~

pip/pipx/uv 安装

[!TIP]

在此之前请确保安装 Python3.11 及以上版本,并配置好 FFmpeg(参照 yutto 文档的“FFmpeg 下载与配置”

pip install yutto

当然,你也可以通过 pipx/uv 来安装 yutto(当然,前提是你要自己先安装它)

pipx install yutto      # 使用 pipx
uv tool install yutto   # 或者使用 uv

pipx/uv 会类似 Homebrew 无感地为 yutto 创建一个虚拟环境,与其余环境隔离开,避免污染 pip 的环境,因此相对于 pip,pipx/uv 是更推荐的安装方式(uv 会比 pipx 更快些~)。

体验 main 分支最新特性

[!TIP]

这同样要求你自行配置 Python 和 FFmpeg 环境

有些时候有一些在 main 分支还没有发布的新特性或者 bugfix,你可以尝试直接安装 main 分支的代码,最快的方式仍然是通过 pip 安装,只不过需要使用 git 描述符

pip install git+https://github.com/yutto-dev/yutto@main                 # 通过 pip
pipx install git+https://github.com/yutto-dev/yutto@main                # 通过 pipx
uv tool install git+https://github.com/yutto-dev/yutto.git@main         # 通过 uv

主要功能

基本命令

yutto 的基本命令如下:

yutto <url>

你可以通过 yutto -h 查看详细命令参数。

如果你需要下载单个视频,只需要使用 yutto 加上这个视频的地址即可。它支持 av/BV 号以及相应带 p=n 参数的投稿视频页面,也支持 ep 号(episode_id)的番剧页面。

比如只需要这样你就可以下载《転スラ日記》第一话:

yutto https://www.bilibili.com/bangumi/play/ep395211

yutto 还支持直接使用能够唯一定位资源的 id 来作为 <url>,刚刚的功能与下面的简化后的命令功能是完全一样的

yutto ep395211

不过有时你可能想要批量下载很多剧集,因此 yutto 提供了用于批量下载的参数 -b/--batch,它不仅支持前面所说的单个视频所在页面地址(会解析该单个视频所在的系列视频),还支持一些明确用于表示系列视频的地址,比如 md 页面(media_id)、ss 页面(season_id)。

比如像下面这样就可以下载《転スラ日記》所有已更新的剧集:

yutto --batch https://www.bilibili.com/bangumi/play/ep395211

更多功能

yutto 还支持很多功能,限于篇幅不在 README 中展示,你可以前往 yutto 文档 查看更多详细内容~

Agent skill

如果你有趁手的 Agent,你也可以通过如下命令来安装 yutto 的 skill:

npx skills add https://github.com/yutto-dev/yutto --skill bilibili-video-download

其他应用

你也可以通过这些应用来使用 yutto

  • KubeSpider: 一个多功能全局资源编排下载系统,支持下载、订阅各类资源网站~

Roadmap

2.0.0

  • feat: 支持弹幕字体、字号、速度等设置
  • feat: 配置文件支持
  • feat: 配置文件功能优化,支持自定义配置路径
  • docs: issue template 添加配置引导
  • docs: 优化 biliass rust 重构后的贡献指南

future

  • docs: 可爱的静态文档(WIP in #86
  • feat: 新的基于 toml 的任务列表
  • refactor: 配置参数复用 pydantic 验证
  • refactor: 针对视频合集优化路径变量
  • refactor: 优化杜比视界/音效/全景声选取逻辑(Discussing in #62
  • refactor: 直接使用 rich 替代内置的终端显示模块
  • feat: 更多批下载支持
  • feat: 以及更加可爱~

参与贡献

请阅读 CONTRIBUTING.md

Download files

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

Source Distribution

yutto-2.3.0.tar.gz (167.9 kB view details)

Uploaded Source

Built Distributions

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

yutto-2.3.0-cp315-abi3.abi3t-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86-64

yutto-2.3.0-cp315-abi3.abi3t-win32.whl (2.0 MB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86

yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.15CPython 3.15+musllinux: musl 1.2+ x86-64

yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.15CPython 3.15+musllinux: musl 1.2+ i686

yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.15CPython 3.15+musllinux: musl 1.2+ ARMv7l

yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.15CPython 3.15+musllinux: musl 1.2+ ARM64

yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.28+ ARM64

yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ x86-64

yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ s390x

yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ ppc64le

yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ i686

yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ ARMv7l

yutto-2.3.0-cp315-abi3.abi3t-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.15CPython 3.15+macOS 11.0+ ARM64

yutto-2.3.0-cp315-abi3.abi3t-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.15CPython 3.15+macOS 10.12+ x86-64

yutto-2.3.0-cp314-cp314t-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

yutto-2.3.0-cp314-cp314t-win32.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86

yutto-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yutto-2.3.0-cp314-cp314t-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

yutto-2.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yutto-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yutto-2.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

yutto-2.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yutto-2.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yutto-2.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

yutto-2.3.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

yutto-2.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yutto-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yutto-2.3.0-cp314-cp314t-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

yutto-2.3.0-cp311-abi3-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11+Windows x86-64

yutto-2.3.0-cp311-abi3-win32.whl (2.0 MB view details)

Uploaded CPython 3.11+Windows x86

yutto-2.3.0-cp311-abi3-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

yutto-2.3.0-cp311-abi3-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ i686

yutto-2.3.0-cp311-abi3-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARMv7l

yutto-2.3.0-cp311-abi3-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

yutto-2.3.0-cp311-abi3-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

yutto-2.3.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

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

yutto-2.3.0-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ s390x

yutto-2.3.0-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ppc64le

yutto-2.3.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ i686

yutto-2.3.0-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARMv7l

yutto-2.3.0-cp311-abi3-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

yutto-2.3.0-cp311-abi3-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

File details

Details for the file yutto-2.3.0.tar.gz.

File metadata

  • Download URL: yutto-2.3.0.tar.gz
  • Upload date:
  • Size: 167.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0.tar.gz
Algorithm Hash digest
SHA256 b23271b98259341c5b5b3e309dbc370e086b6c855c5be81efe5714eed7f85b2d
MD5 b25cdff1803977800e9ff3656dc39352
BLAKE2b-256 0cff808196e4c97acca76256eacd2545ec1b9fe5bc7414d05c824f2f3ae93eea

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-win_amd64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.15, CPython 3.15+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-win_amd64.whl
Algorithm Hash digest
SHA256 21b7e2b45f0937734789e0730112cd15233fa2a81f36b2ed25ba0d50ccad7552
MD5 ff5453a4e0dd0d8d3c547b08e99631f2
BLAKE2b-256 c703bd8ebabc8097c724dff2c32ed0f9364ae017e586a69e42100ed2cfa1eca8

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-win32.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.15, CPython 3.15+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-win32.whl
Algorithm Hash digest
SHA256 16e737f7f682b7d20484c08722f294390f6f16e82f4b01bc1062f72f461cb225
MD5 9e1cfc570fcdd0580b7ecbf771ebb209
BLAKE2b-256 cb8ae458b8572bba59273a56c356085ec2891f45b3f8229e7c312327c833a396

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.15, CPython 3.15+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f11cd6aa367ff58718b8ac3bbe531e690324e2d2ef4b35a576e3128e73eed60
MD5 989825a71398c9bcd8b96ad727283e4d
BLAKE2b-256 deabc3377054f20f3d4b9817dfe79731d44f3aa69f5c7650a80a20b06e63c19b

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.15, CPython 3.15+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2c3eb1704a5369fbf4ccc58dd61ce2f5d442166e97ca330d62ab157bf777baa
MD5 78ddede8576aedef45d441459af0ce42
BLAKE2b-256 85e03b33148d3812d20f7f0e142d9a8cbe55f1c1a446ba8e5ba0591314d09643

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.15, CPython 3.15+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54ead48bb5f877195ebfa0b8066eb194a93cf3a4e86e7474d3b802c4bb73cf2c
MD5 12bb5896ce61d9908d57ce14fbbfade6
BLAKE2b-256 0524c1146016caa45f6a67a6adef022fe511966d0a60c35fdd18c42d187f7c83

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.15, CPython 3.15+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6c325541723d28a44f47712904e05696b637e23028bd999caf97218f7d0860d
MD5 48132c74141afe68527f9f15ea8d1119
BLAKE2b-256 993b5711e907a53ecbd2c596e45d11a823d5cd404394b901632737e0d417dcb5

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b8b590fb92a1e9ff7124903d6de2816171e59d3c36f705c3f9a0225f06179af
MD5 c8fb09ef8bbaa16bfa64828df28ff43f
BLAKE2b-256 ca647ef9e5e5e4c7891d702f2d3cb682f8034032229a76aa0fbc0eacea3f9f22

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5407d990e07e47d5f34b158de61b2b47602591687efcfedfd33c7cb7ab9c64c7
MD5 e1e1d08af3c7f0bbd3b2859d9042716b
BLAKE2b-256 40a469b9ccfe5e084e7ac0ab4f344d95cfafbf5e407e163bd19dc4d811011ef2

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3710c1bc7cd8a86c6290bf4c740b24f47cbaee165bad1e302c287438a619a2e0
MD5 78e4b50d53539060df87292edf62a778
BLAKE2b-256 1e19d580fce687fe00e1428565ddbec87ffacbb70a75ecb951c94b6cd2b87de3

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27b08b73702f86a148e2094f327faf8ca23b31e39478f0eca5f57ea59771dfe2
MD5 7a5f7ba99756af21bbffa86f2da5eb74
BLAKE2b-256 72d7245930ed4b049d7c2d1f5b00af56674df37b9f3fdd1bf4c62f42ca906b40

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a53dc7c17bd8aabae952f72815eef0bae6a4ef6db9b5743807cfdff1cfbeabc4
MD5 92af8945202b54101c61e68cef60017c
BLAKE2b-256 ded13a58c6e16129448a7779f17d89cca400135e046932055c5438c17d7c66bc

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.15, CPython 3.15+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d0173035beb95b9fd9e2db8f0126e9a6a3fe49b770c6e2b2b3efbeba980be70
MD5 0ca201051cd9b30c5308321cd1dcc0b3
BLAKE2b-256 08aa87f169c118f0ee539d43d745d76a88a5d1ad742b016d450ca1d3c96b86aa

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.15, CPython 3.15+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67796ef92220d04830f83f61d194be0b30f1f547a967167c46192b385a8b32fe
MD5 6b91d5ae429d814b7fb92290696e533a
BLAKE2b-256 1342373f0a3e4acddc6eb79446ad83095651fbbcee5ac1d4001a59f92023560b

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp315-abi3.abi3t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp315-abi3.abi3t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.15, CPython 3.15+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp315-abi3.abi3t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c910ac41e1ff3b635453c18536d11e730a447def6e7e1fb579f8a7bc381cbe6
MD5 dce1564fdde10eb09a8d7875adf62319
BLAKE2b-256 50ad4d4cd04fd20343fc664ce488ca9ed67eff9508d313f026a9be85565dd8da

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d0eb6607ae1f1b097ebdf39d3f1a6d81f324561ed6e559c29bc57a6c9e6494e1
MD5 f3028fa01f8d19536d96748bbdebc3b0
BLAKE2b-256 eb7ad1800b9983d8152d6d37c40d1d419029b45b6c7ca2efc19246e53d6a03c9

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 44eda838b5b6d1c03c9299d02220cbffc3b329ced86d3884e3d137e6f9cc8c50
MD5 b963396570bed082becd6dbb6a798ff2
BLAKE2b-256 9ae17dbae1627bd536489686eadb2c940b35a4bfa376f0efd8dfa33d380ec1f6

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f7231d4c1aa29c7420d2c5309c29555cfc245ba90bb54ac12dbcfd8fe4d999c
MD5 62619a85de0c6cc394ed0cea652fb0a1
BLAKE2b-256 c9a54b57ba803169facf3d31f3862f7d8f732d1783c76a610a0cd90948f1b6e1

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 914db30d1d7911821e6685eaf57300db6cf907f227346dd5112d450b0fff9311
MD5 4e1c2b02f6f68c8dfaf55ee8e3876527
BLAKE2b-256 fce839e9dd5bc99a703ddb525642c9b119eb51e8cc590c75e69d95d154f4009a

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e322d958265c30f8b3d6f300070a9d79f7d135a4a650fd4f3d4d5a5f0020ff92
MD5 1d08ba73e5487864fb9c69501d798759
BLAKE2b-256 5634220aa5b8f54c97d65cfb7fea1eb6167fbb06f64d5421e5e3398de1223e43

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d579884378c01c6d9ffa3750ec0d63dadee813261478cd630343d3436e47ca6a
MD5 79f9d56d54a0ad1f51eff19c2cef5b1f
BLAKE2b-256 999e5a9f0ed6270925cb85eeb8316278414838aa085cad0e26bea4fcd09973a8

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 efa58d2001df7b705f1aff1f9a942b4b5e0903dfc19df495aaba1c5cea1360ee
MD5 e20c97e51f9fc4d693e4df8cc309e888
BLAKE2b-256 20f07821b5eabbc8d57168972848672a7fed3622cf2d382ae517d87971eb4a70

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfedb49bc0f1c9c6974694d252f032a51cee58a04d8c8f45ed6c4dfc8e83b431
MD5 f2a43e2acc15c5d8c27b31305d5454cd
BLAKE2b-256 20a6c0bb9b92b6637dcc1b147323344ed66dd06a9648d4c17fbde06d7b2dfa99

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73bc76aa38e71f2194013906bf0b921e58ad490b33d033afff4ee229ab08aef8
MD5 dfaed10937e944cb51bbcc5e7e4214e9
BLAKE2b-256 3b521b12563be16d2b9f72ea13aa505e126cfe53a8bd31e19af8bc4a54ee6d7c

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3abc557fdd7079e0cc3b038bc4a874a8bff502092769f927de8f97d0984c4db2
MD5 e3ff34800412b6336658b47210bad82e
BLAKE2b-256 7bdcadb260b2e468441955b99b8a30a3b27bba83f695665cff5e2f0630ddfd23

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 261212b98c799ae8cee72d1acb5b69e99b5bd17b4739ef6e91b892e3808f413e
MD5 5486ddaf3ac5ad7e18cdd2e7cad4a026
BLAKE2b-256 b24b48cf84fd4cc21ce2022f7e513236d18a3e0c8d9cc5b3c249116e8880a992

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2a187a596078f6d1dccf4d8a666f8d82a3f77e4fc17109b0180adfebef26d75
MD5 d0041409037bfdf710ac2955b5197df0
BLAKE2b-256 0988ab3a4c1a7531e67e04bdafe7a633947b7e0d70b3c4c4d065258af628e4ea

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ced6ea298919bb72444a3a7a9d392b73482617d0241863a80c05af7e3815c0df
MD5 1758be1b9e00775185f27b1422bec491
BLAKE2b-256 57862345cba66938b284976e474579b2f6e33a86591123178b465057903cd638

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 657dcc153b148572562975d374b0a640c7154bc23ee9ce8d46d174d81dabb625
MD5 24e5404dc298c20298477c42a5ac775d
BLAKE2b-256 d6ca64ba351fbd914906a19b67478fabd8df8d8e5e4dc3e80b5ee07a1191bd2c

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0a5b69c0628d91b23d6033d5dab9a66349ecb0376d60a71885ab14a135c921b9
MD5 7beea0bb34e6fa99272ce7444fbdbbaf
BLAKE2b-256 ce7470e2a4350dbf5b16edbe2ac4d3906a55681a38b60e4aed7190d8f8eba177

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-win32.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 c6a8aee01f051db4da02c495193afa3ccb73474dcb0ed262d6c2ca7b9ff33701
MD5 7675662d865452a7504fc3d4332c56c3
BLAKE2b-256 f3d68094df821d4d6a343f721f53f58ecb9df97423cf2fd132234b7c91b5b206

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77176f196a0257025e947b7e1df9851f6f1230c131219d6578a304215d4db270
MD5 6f411d12723b6bd3761c5f4849877765
BLAKE2b-256 d839923dfd5a8a8a63b274c7d5c829de84050a4b3b53282a3a35b31b9265fe4e

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04032fa2918f9ab7afb277fec243602ea3bac91bb236da9043bad4bb5635b1ab
MD5 19b1386ca8f71b49df8a1b4871f2559e
BLAKE2b-256 d04e1657503f9bb4346a2db55bf5bb0c4cf924d927b807b7f28b3bbc15449a8a

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66110fc24272875af8c147f196e0af1cec2753c6925a611c50bbe5c198a0b0d6
MD5 921359b1e979cc4ff885aa4b4905939d
BLAKE2b-256 65c060b9a3cd2c005cbdf49d060cfc0dd46c60c7744d3a2ffeddddc8d1cf7e02

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 269d3361f0cf2e12276273fffc88ef3eebc478b2d855f784965c3fe298089a66
MD5 556de9e167189dfbe9849e4621f52dff
BLAKE2b-256 1a92df5f2dbe0fd7286ec8cbde47cfc36f3375603bb2b315f2d3e48b864064a9

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f8215527b41fc47461b70e44290d21e1e2404414a712205a63286e313acc3b7
MD5 4872b498706446c64c22909d213371e8
BLAKE2b-256 9acf5eae2191ea97fdbe9570b292cac8dd5a34c775c2e51cc3a8382bff17e47c

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c5d08b606441a344178a62f1c9f2db80d08d9bc721d16ba600a4a46d7318217
MD5 c10c2f3fbde5438b046b4474dee228fd
BLAKE2b-256 49d40eff7af5c14aea1e706ef386b225eb35260dc583770844eb92a9a38c99de

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ebc5e2872c61cd527c1e2cf5df7780ad2726e03577cf1e9e94a7f25fcaf34808
MD5 e73a7d2b4c2ebf389ffa0a7680030b09
BLAKE2b-256 c453b4042992c31947951d6a61fba535741ecde3fb9ea7e5743e7db694040180

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec6fb79295fe2bc4a377872c44159882ae9e61e330abe3331bb8e012553bf6f2
MD5 907c81511d9316740b898deb6f658aa2
BLAKE2b-256 9b50bbe1e1c7bb66b527a3b757102a5665d8714886d11af377d00560e42cdc7f

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fea43333ef27f8710fe34e79284a703e6f27e65136e1eefac05e563e2de562bb
MD5 7a214b49288aa2e9d70923160abc5d18
BLAKE2b-256 d8246a41dfd592692db9af726f82c1170924a898734990423c904d8eca05276e

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83f2f825caab9350edc565be62f3981f0e789cc0cbda54a227c5171d396a65de
MD5 5ddf84316ec29eff2519f1e4fe217063
BLAKE2b-256 b4469a23f540923c77e7ca66e48ba41988f4d78580068731e022531a885de669

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3b411463974de3d0f478e1412e4ae46b9330a0ce7dd1a1bf0f9a37c00e01d7a
MD5 40ed429866f74b4a62ffacacf21d0c87
BLAKE2b-256 68db7638e23c6e79e10e23f36e6dd7a0302e179ab89d04adb8f619cf95cf1b3d

See more details on using hashes here.

File details

Details for the file yutto-2.3.0-cp311-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: yutto-2.3.0-cp311-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yutto-2.3.0-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48a3021b121895a3d0776d9680f488a5e3be004c22e602ddc641bf04424a2e74
MD5 688d5250f2c3488c78470bf00b7815c6
BLAKE2b-256 81d5f0f1fdd9bc2f23e187667aa3ba52b639c56acdd32b8058533b7df471ef14

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.3.0 This release

43 files

2.2.0

2 files

2.1.1

2 files

2.1.0

2 files

2.0.3

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

Supported by

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