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.1.tar.gz (169.2 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.1-cp315-abi3.abi3t-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86-64

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

Uploaded CPython 3.15CPython 3.15+Windows x86

yutto-2.3.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314t-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

yutto-2.3.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

yutto-2.3.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.11+Windows x86-64

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

Uploaded CPython 3.11+Windows x86

yutto-2.3.1-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.1-cp311-abi3-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11+musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

yutto-2.3.1-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.1-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.1-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.1-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.1-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.1-cp311-abi3-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

yutto-2.3.1-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.1.tar.gz.

File metadata

  • Download URL: yutto-2.3.1.tar.gz
  • Upload date:
  • Size: 169.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.1.tar.gz
Algorithm Hash digest
SHA256 c1f6558feea22412151d86ef3c415fcc4a6c03dc270171eca2916b5e25ca9bce
MD5 af36e16a99257004451abb145c98d8b0
BLAKE2b-256 a1d60ccde5df5826d500b741ed07c66cc6c97feb92ac36a4dc3cd9d39ab40f33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-win_amd64.whl
Algorithm Hash digest
SHA256 25b3285a4d1f56db63afa9f21437d6d5e6f918845d79bd276156800d40b9b7b5
MD5 5d19a6669b4d6aef0230a590c0e73775
BLAKE2b-256 0b0b0ee174af60ece43d1d8affa0d0433a87ef484b66ee4d970ce5d0af3840c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-win32.whl
Algorithm Hash digest
SHA256 8ab09c2282fda812faf9a7e652aa4200489692d25431f1218c46de4ed2aeefc0
MD5 51c588a6a3a37aeb222dc003357c6331
BLAKE2b-256 2aeded9469c5b08327891d4eab7014a0d364f698bf9a22b3c5d90106845742e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 942a4f6dcbc4a21cd4c9f6039fc73f0cc155df26190cd60c71997fd61e41ad30
MD5 52b144b4b6a0e0d199d4b744e1018764
BLAKE2b-256 ad0140204899ccbb198a67096ab39c9d28a9740ea97a7759926ffc351344bf18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bdbea6695c10a4513268b42cd839c156bbdebee2f4d0739ff82e32f14577029
MD5 73e37c82ca84b5ff4ac01b3f63142765
BLAKE2b-256 0bad0874230c68687fee130ac13d6df194c689d0cb441e3357174aaccfe41e8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5fa5b2ca34998329c28aed6a7e10e28269770bd54fb00e96c96133e49519663b
MD5 8528ec445e1fa73927b6c94978e31be8
BLAKE2b-256 adc983129c927c50a49a7935115b3b584a3abfb48e6a2de025d61a5ca760c08b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c0a6e0ec6843afc7c70f777c3e3337c2b37822fb4fb68016025ba89aa5d9996
MD5 8ec0a987729bd0c3af101d7c72b729d3
BLAKE2b-256 f3ba57c096b8fee4d806607a52a71d29e686e8f98f50900a64d1b6ca1b0dcf00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c5ad6ecb4561308cd8a0a48ed25be0ab2e2fd53f662d62e9f2fdde7181ac8e8
MD5 b4611b9733d5699b72d4263060aa7ab5
BLAKE2b-256 8b6576e78092b770a944261ddaeeb3d15a557474d7a92ab741b871a75624bebd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2c07829adad94b32d751d462fc066f383c56701c40e51927ebb0b697e0b9c0f
MD5 3ccbf24d09da04ad83be2cb499d36a65
BLAKE2b-256 ec0de3f29b0deeff8c9906fac4fbadd32c66b94887a858353ceda32736fb05d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c1c542730c4a5206d5f6196ddb3d29767c7f8e9505c4f0d2107bbdefddc49bd
MD5 c7d290bff751547ad6d4521b467015d1
BLAKE2b-256 ad541bb7fe99566eac72c9f6d16a949d0d90bccec8e63d434fa947780eae2bf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 199787dd188197f9af63abac5da8dcab84a61c7401e665741c7e27a1b5be3959
MD5 9a53a0c9ada63b92950445db7b2ceb71
BLAKE2b-256 2574fea12f7a03952adc4ce7e2c7640e7c3815f1d8c1a19a7f55f5a74f51f1e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01c8121245dd76ad4f2c52ecc33902814ef4ab2be7a7f29db30e8d68184da101
MD5 ad6f836ccea7b444e26c6d6bcf9ab0a3
BLAKE2b-256 8926392c0a1b697cc7b946708b139bf582dfc2568128f71daf5bcfaf8972ccf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0564c7bb33a22f04ede798babf64865a0859719bf945f5a1d2970ff54d8a00f1
MD5 2aaa21c76fc682652b8765f786dc8788
BLAKE2b-256 285bd3749344115979d5cf959faf6f639e19e46c3d76806ea1d155d44d61e16b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45e1960dbbdcd06a0ead78db16993710729fae2b4c545717df7adb2276fdf34f
MD5 00e9185ef09640e5dc265b932faed4e4
BLAKE2b-256 fde7756db88f896fe404703cf3b86fda36c737870f75e71e810ebf4d257c37a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp315-abi3.abi3t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7878b05d07a545fcbd6da5b94864db42ce4f470df4c75731f6688bb34fe48b09
MD5 962474ed95e9b08397cfee6accee5028
BLAKE2b-256 ad7aac8ded07e32cacce27f7cc894986d81b1d9b2ce9daa9e06398feb09cd886

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b6a09d898405a0ff49d81485e2e96800794308ade6e35c032cebf3a7b0f9ca18
MD5 ce2dc40e2740ff763261af6ab6357232
BLAKE2b-256 36ae03d6eb78f419fcac1cc33f784a44f61206456a4afde277c45ae1b6e840e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e7080225e89b3eae3480d4bca77c385d5ab5f8f0f2a5a7883f55a4f983e01aea
MD5 32bc51fe79b71c0f41ed48b2f6fac0c8
BLAKE2b-256 8040d2c013c0bdecd2fde7f4807ac32c349681237800596fe30ff5ad9c409d21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 165c94bd672768d4a789579524ad8fb770e4d5530c7c35bf53f29b0315270fb7
MD5 9f462ff762cb0ce96c0c27589af1a15c
BLAKE2b-256 4aedf6d766c878ed9f07224ad7c31d4f3fea31619e149949f9f9f8f0cef18965

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9315fce1a2c0abf31e803305c99382a7a717b80312b921da096df820962cc2b
MD5 e44b3b95565abbb6f8c68f92dcb371f4
BLAKE2b-256 7701bf109ad5fed3830d493017d75bbf419744830421b5066be16e52794c1a0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 810763e8fe03a2db07ca5b6d9ea61995e8f8d7afff442f9a78cda1b7b1824af6
MD5 834435956368d741739a7c30c160c7fc
BLAKE2b-256 43504175d94eadb826db4502eee29e8450742c10d48efd345dff304d813b1ef1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e833e2801c03d6b353d22288d58f403ee463764535d35e6d1e61616607bdd862
MD5 f422bc992a25ad765e452428b4d2f713
BLAKE2b-256 301f3a5c723cbc5667e16a5ba0a26da13af06acf1a9c2e13a363a4157c81059f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca3f0d05aebbd64297debd050b1a3b1958fca7c085093e5f4332080fa026d4d8
MD5 faf9afbc9ab75ff68f4e38500018665e
BLAKE2b-256 4377527d458c504ef7111149d1e354f0115e5cca933cda970fb37df369b4a683

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5fde806bae04b5c86158d53fd70899a85cf663cd60878978e09e9b160197300
MD5 a968c29dff60489ca9d950abefd9d81f
BLAKE2b-256 dddd8a184f974b5fa6cd9f21b38fab01b91bab38885af49aa9bd9c3ccf1d4e1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ab2c8e31300a2c3ca78014b747617ae895644fb4af2901c0950dcc267c1a3ac
MD5 df7a5aedb760b7a970b9db74607b7bd7
BLAKE2b-256 4f184bfd274eedd91ef7d330ce4ea123a5b07bea086878a16d744c1fec443ac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2c75f4322072333700173c9985152c7bc78435998bf3da17ee8d80f0e479726
MD5 463fb5f52b46046b5916d429da9f8575
BLAKE2b-256 4f39810c09e920fb19d8e20105c6347b0eb64711784f54f0008a5e068fd2b487

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f33e8976c0212146718ef374e3a154ab57cc3ca17fa469d2ae30b108be2a4b0
MD5 eafb81a0b159af06e86ef3099a90d878
BLAKE2b-256 9305f45723db29b3a7248e76e5c89b109b553702a9e273f2b8d0a73ffce1cd99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a29dbd6ec1cd86d55daae2548a0653cf9a27994827c650a9625985f7cab902a2
MD5 b7bf46bbe6bbb1c9a0820184adc2195a
BLAKE2b-256 7128fa77a77d73a213ee597a13da68da9e457b85ad91f4a2765329888d259113

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89d2f35adee46f90d9f786741ee726629cc13370f64cd32be67070cd1256a956
MD5 4440aa01d3e2f476c736070cd676a13b
BLAKE2b-256 9a0aef694dbf7da6fe68176c4ca5ceb718a973cc1a71738c95c6d189f9e71dd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84e844089152b78a627fc3712274f0b927aeae7cbda71438ef8618a647b1a23b
MD5 3638c354de51315fc1608d1c23b652ab
BLAKE2b-256 11470cf2048d73eb6c2a574076d73aff21d52fb5b055d88f2598f7336e9c9e15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 102e118bc6e71196b1e48e2a8edd6687a8ab93541bb4334e502523771a87d8bc
MD5 b43a846ce75b0e7d8c4c657ea8f1f511
BLAKE2b-256 3a5f214e201f5f81c5132fe8847799e919b32a44494db523d4a1925b9e4bed91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 d35a062296451c5f7d6f482d8eb5420920bc1a2891de796888b9b00b0d6923c9
MD5 4c579c0a26b069f6e17e1019ada67267
BLAKE2b-256 ae5e77c447a59fb161fa665e0a9e561379a17478a84a963676ded6db89ec15a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fcf3079ff9bdbfdd6628a0d5a0a1e9a49cfe259622fa2d906f15690ae266e4f
MD5 47c251c38e0c7cb6ab1db7ca2b6f7e43
BLAKE2b-256 7c44a926797333a768a466aec4557510a2186daf7f442100031a6c5f91e6776f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6b4512af259f64446d0bbd774ddbdda6707763ddf1ad0e60fb35e384fb5e213
MD5 c2d8a5e21aa0c6405d23964c24149c95
BLAKE2b-256 16bec3124a0aa9f163dc469ea8c5617bf3a354d82a5c779dd8697af234f433b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 762ad492447e612ce6b921eba699a36382df5793fbbe2abdec4ece009ba29d7f
MD5 d519fbc18e976e7bf06c37389c4ab93b
BLAKE2b-256 b8170a7f6871a72c012acd3debd38e5a37114b0bd7fcc941bc19640a3a4d2de0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43b02b0ee304402c549272e600d7510d28876b7036b7578bfb1ded985c7bbcb1
MD5 9e18a6c922cabba6710ae51b8355003f
BLAKE2b-256 2d8f6286cec8c4aa3105257c8a94e50513fb6fd2cf07e568c4b18b353a9e8abf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b182b551ce1508d3cfdc4452008af55648fb06580dfdcd7cc9ca6838fcda2b0
MD5 b392fa947ee95f538e3e1edc6ba73cd3
BLAKE2b-256 9777f3ad1782e52fd564845aaf2eba557dee14b9aa88b020b704b3ebd3da0717

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2ef5f7f8d29e0b50178e4c3797d19013e8093dcdc615b0c2ce8166ea10cf540
MD5 fec99ce10e92bac3fd8fbd59049ab17d
BLAKE2b-256 daa95ac6be7ddae857ad22e8c831e1cc977feb2831bc4bc42dd68cba499b81c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f416fb5537b6c0849e528db7d781dc5cdba268bda88906ef559b532ae6a69487
MD5 d7f7873bf9edc7369044d99041de59f9
BLAKE2b-256 238db814ec17000e92cd382a5e5e720c7677d2fe9c48ead47e34fea4a8995cbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b06e4a793d5bb846c59c62ca37630a603c469b649261e569670da07c923e6418
MD5 7fca7affc633bd7546393753cd8a9a27
BLAKE2b-256 4750db79ffef9d9461f724d930e7eff794f869cdd2a9bd503a52e16916c080c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a3c25baa356f62b1d5c62912291ecc20cc03b3665072bad1917f3fa3f8c5fcc
MD5 fae1da5e21bf97f518c6f0919f8699c7
BLAKE2b-256 c181d016d227405170c8bc9104a0a0ffbf8bc7ac2763a77e592af84e0e512fbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c18c4aa4a8f48d79feb442b01962671c51ed7acd7968f963453c0ff9f64ed7da
MD5 9864467aebfce2e2e1474ce336112952
BLAKE2b-256 918abe96db4fc9cea1306176b1ab95d1f03364579bb9b6cb93f54b532b801ea3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dcb7d3a7e517b6b656d0f3ad8fb0fd804b28f23da4b806830eea6f5994b8571
MD5 1e37035e8ffc6b6498f1a272751beb8f
BLAKE2b-256 099a514e5f4ecbc290a949fd6e49cf36bb67e520f6aab449fed97ae2de7622db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yutto-2.3.1-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.7 {"installer":{"name":"uv","version":"0.12.7","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.1-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 919a3b22c89d4b9216e089d61f4b718375b128472fc32ab45a7195cb47aeacdb
MD5 0616ed2c8089972b1b6b81d8ec82a742
BLAKE2b-256 f630588fec8edaae39779f8aaf7aba56dd46e4ad4faf99b3aaaeb771de0de188

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.3.1 This release

43 files

2.3.0

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

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page