Skip to main content

stream download and upload

Project description

description

Python PyPI PyPI - Downloads License Telegram

GitHub Issues GitHub Stars GitHub Forks

🛠️ 功能

  • 开箱即用,多种安装方式,提供可视化WebUi界面
  • 多主播录制/上传,24X7无人值守运行,高自定义元信息
  • 边录边传不落盘急速上传,节省本地硬盘空间

论坛:BBS

📜 更新日志

[!IMPORTANT]
Disclaimer / 免责声明

  • 本项目仅供个人学习研究,不保证稳定性,不提供技术支持
  • 使用本项目产生的一切后果由用户自行承担
  • 禁止商业用途,请遵守版权及平台规定
  • This project is for personal learning and research purposes only
  • No stability guarantee or technical support provided
  • Users are solely responsible for any consequences of using this project
  • Commercial use is strictly prohibited
  • Please respect copyright and platform ToS

📜 使用文档

B 站命令行投稿工具,支持短信登录账号密码登录扫码登录浏览器登录以及网页Cookie登录,并将登录后返回的 cookie 和 token 保存在 cookie.json 中,可用于其他项目。

  • 下载 Release: biliupR
  • 获取命令帮助 biliup --help

文档地址https://biliup.github.io/biliup-rs

Upload video to bilibili.

Usage: biliup [OPTIONS] <COMMAND>

Commands:
  login     登录B站并保存登录信息
  renew     手动验证并刷新登录信息
  upload    上传视频
  append    是否要对某稿件追加视频
  show      打印视频详情
  comments  查看视频评论
  reply     回复视频评论,默认只打印将要回复的内容
  dump-flv  输出flv元数据
  download  下载视频
  server    启动web服务,默认端口19159
  list      列出所有已上传的视频
  help      Print this message or the help of the given subcommand(s)

Options:
  -p, --proxy <PROXY>              配置代理
  -u, --user-cookie <USER_COOKIE>  登录信息文件 [default: cookies.json]
      --rust-log <RUST_LOG>        [default: tower_http=debug,info]
  -h, --help                       Print help
  -V, --version                    Print version

启动录制服务

启动web服务,默认端口19159

Usage: biliup server [OPTIONS]

Options:
  -b, --bind <BIND>    Specify bind address [default: 0.0.0.0]
  -p, --port <PORT>    Port to use [default: 19159]
      --auth           开启登录密码认证
  -c, --config <FILE>  使用 biliup 1.0.7 风格配置文件启动录制
  -h, --help           Print help

命令行工具 / Skill

biliup 可以作为自动化流程中的命令行工具封装使用。常用调用方式:

# 启动 Web 服务
biliup server --bind 0.0.0.0 --port 19159 --auth

# 使用 1.0.7 风格配置文件启动录制
biliup server --config config.toml

# 查看命令帮助
biliup --help
biliup server --help

通过 npx skills add biliup/biliup 可为 Agent 添加 biliup 命令行能力。添加后可直接让 Agent 执行 Web 服务启动、配置文件启动、命令帮助查看以及常用上传/下载命令。

🚀 快速开始

Windows

Linux 或 macOS

  1. 安装 uv
  2. 安装:uv tool install biliup
  3. 启动:biliup server --auth
  4. 访问 WebUI:http://your-ip:19159

Termux


🧑‍💻开发

架构概览

Rust后端 + 精简 Python 包 + Next.js前端的混合架构。

graph TB
    subgraph "🌐 前端层"
        UI[Next.js Web界面<br/>React + TypeScript<br/>Semi UI组件库]
    end

    subgraph "⚡ Rust后端服务"
        CLI[命令行与 Web API<br/>biliup-cli<br/>REST API / WebUI / 配置导入]
        CORE[核心库<br/>biliup<br/>直播解析 / 下载 / 上传]
        DANMAKU[弹幕库<br/>danmaku<br/>多平台协议 / XML输出]
        GEARS[Python绑定<br/>stream-gears<br/>python -m biliup 入口]
    end

    subgraph "🐍 Python包"
        PYENTRY[最小入口<br/>biliup.__main__<br/>调用 stream_gears.main_loop]
        PYUPLOAD[投稿库<br/>bili_webup / bili_webup_sync<br/>供外部项目调用]
    end

    subgraph "🗄️ 数据层"
        DB[(SQLite数据库<br/>配置存储<br/>任务状态 & 日志)]
        FILES[文件系统<br/>视频分段 / 弹幕XML<br/>缓存与临时文件]
    end

    subgraph "🌍 外部服务"
        BILI[Bilibili API<br/>视频上传服务]
        STREAMS[直播平台<br/>B站/斗鱼/虎牙/抖音/Twitch等]
    end

    UI --> CLI
    CLI --> CORE
    CLI --> DANMAKU
    CLI --> DB
    CLI --> FILES
    CORE --> STREAMS
    CORE --> BILI
    DANMAKU --> STREAMS
    DANMAKU --> FILES
    GEARS --> CLI
    PYENTRY --> GEARS
    PYUPLOAD --> BILI

    style UI fill:#e1f5fe
    style CLI fill:#f3e5f5
    style CORE fill:#f3e5f5
    style DANMAKU fill:#f3e5f5
    style GEARS fill:#f3e5f5
    style PYENTRY fill:#e8f5e8
    style PYUPLOAD fill:#e8f5e8
    style DB fill:#fff3e0
    style FILES fill:#fff3e0
    style BILI fill:#ffebee
    style STREAMS fill:#ffebee

frontend

  1. 确保 Node.js 版本 ≥ 18
  2. 安装依赖:npm i
  3. 启动开发服务器:npm run dev
  4. 访问:http://localhost:3000

Python

  1. 安装依赖 maturin dev
  2. npm run build
  3. 启动 Biliup:python3 -m biliup

Rust-cli

  1. npm run build
  2. 构建 cargo build --release --bin biliup
  3. 开发启动 BiliupR:cargo run

🤝Credits

  • Thanks ykdl, youtube-dl, streamlink provides downloader.
  • Thanks THMonster/danmaku.

💴捐赠

爱发电 »

⭐Stars

Star History Chart

Project details


Release history Release notifications | RSS feed

This version

1.2.1

Download files

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

Source Distribution

biliup-1.2.1.tar.gz (273.7 kB view details)

Uploaded Source

Built Distributions

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

biliup-1.2.1-cp313-cp313t-win_amd64.whl (13.1 MB view details)

Uploaded CPython 3.13tWindows x86-64

biliup-1.2.1-cp313-cp313t-win32.whl (11.8 MB view details)

Uploaded CPython 3.13tWindows x86

biliup-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

biliup-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl (12.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

biliup-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (12.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

biliup-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (12.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

biliup-1.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl (12.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

biliup-1.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

biliup-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

biliup-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (13.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

biliup-1.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (12.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

biliup-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (11.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

biliup-1.2.1-cp313-cp313t-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

biliup-1.2.1-cp313-cp313t-macosx_10_12_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

biliup-1.2.1-cp38-abi3-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.8+Windows x86-64

biliup-1.2.1-cp38-abi3-win32.whl (11.8 MB view details)

Uploaded CPython 3.8+Windows x86

biliup-1.2.1-cp38-abi3-musllinux_1_2_x86_64.whl (13.1 MB view details)

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

biliup-1.2.1-cp38-abi3-musllinux_1_2_i686.whl (12.7 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ i686

biliup-1.2.1-cp38-abi3-musllinux_1_2_armv7l.whl (12.2 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARMv7l

biliup-1.2.1-cp38-abi3-musllinux_1_2_aarch64.whl (12.5 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARM64

biliup-1.2.1-cp38-abi3-manylinux_2_28_aarch64.whl (12.1 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.28+ ARM64

biliup-1.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 MB view details)

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

biliup-1.2.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (13.0 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ s390x

biliup-1.2.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (13.3 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

biliup-1.2.1-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (12.8 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ i686

biliup-1.2.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (11.9 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARMv7l

biliup-1.2.1-cp38-abi3-macosx_11_0_arm64.whl (12.1 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

biliup-1.2.1-cp38-abi3-macosx_10_12_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file biliup-1.2.1.tar.gz.

File metadata

  • Download URL: biliup-1.2.1.tar.gz
  • Upload date:
  • Size: 273.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for biliup-1.2.1.tar.gz
Algorithm Hash digest
SHA256 9b1ead64065ed12b97b32663f8e10d67a58c5c79b4d61d857e4884aa2aadb520
MD5 01208b139e781c6a58c043a470173c23
BLAKE2b-256 7bb1b27c428976dfb3dd98a8441308d41e9f4449e92cdcd00dfb935c73e36ae6

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: biliup-1.2.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 7a0fab97b38aaaf49e48c88ef923e8a882aa534afdf527dd3aa0074c506767b5
MD5 c43623d6310d9c96ed5be84e4c3df994
BLAKE2b-256 7712189d5c10d3272866adbb08cbe1b47427e29704b16e2333cad7ab8e248e2e

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: biliup-1.2.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ec0aac89d47c8d7053ecdc4821e0071a117b65de88276a3ad487252223cd3953
MD5 684e526c24f97775202aa2b90ff48586
BLAKE2b-256 93c038a849166e5b7cbc2ce12cd1f4b607c77fe7230b916520660e910a47b1c7

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec25b78ac29d84b04f931fe3609bf31a791165b6f49c83e452f719137a02c0a7
MD5 f156f7e5435687f6f4df98f7cccf74df
BLAKE2b-256 b3b9c5b1f3b49cd41fc4080fd57b5cef5c234bf1903f07622011fa4b869370d1

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72d53f269ccb3fbdabf0707ce22e5408622e96b08f06f893c4960c726d476012
MD5 cd06a928240f338c8263246db495ea60
BLAKE2b-256 49cb507bb42f1fb2a48a1e7895b58d2ce17a726132350f5eee492b383c0361c2

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 528ec87a9e28bad58d5957979709a0484179b788cdc79ebe4d4e1a3ce5d00b6f
MD5 60fbdfb2f03accd65740eab00972022d
BLAKE2b-256 fba82d4a94efce020880ba452ee6015f23c890ad7ab32e25b11b554c80ad0f08

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 911c8998abc74160b9056ad7bf84fec25c9530414d0ae2964c66d1cbc37cb870
MD5 63358395e24fb987523f71577ddb184d
BLAKE2b-256 b22459176b63565309fc817a87b6d8f42475ddafdcfef001280bab3412698053

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76b42c276124e3b61628c5e7ff16a363f617df254fd1e8cad9d0c771e90dfa39
MD5 63fdd64584c2fc5e8fb922a658015cb1
BLAKE2b-256 c73222a0ade10c0a909f9b7aa76e8a9baaf18da5adda6b0552d73c4ab0bc3d81

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63a9cb5feec96681db34f267ff47e54e285a182d268ec9d7000f2f1739b3d610
MD5 d6b1492e97bb03f3fa3e6fcea4200681
BLAKE2b-256 422c3dc6895d78a36e1ed47f989c792184fbfd2e7f8aeff29b3ba9803cfaff7a

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a29edf87e62e525cd89ad28d2db09efe282bb4250b295afa00b4af9a441f836b
MD5 829588cc3348b0f91d39d185c22aa17e
BLAKE2b-256 05ec6eec0a8227e2f6b1714c04763052df577ee567c7c11376c478824dfa46be

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9784754c2224a04c6cadd488ac111bbcadaaa14a4dd7d5752483f6be1dfac71e
MD5 a29d64e257be8de91b5edb979387a67a
BLAKE2b-256 0589d2a53226163b9658082093739bcc070579daf4fcd46e12e346f348f4ad04

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 347b5a0ea0986f0fcb3db85a4cf44aefc16d7a1b23380e22207f61cd38e507ff
MD5 c621fcea18b87fcfdf0ed263de7a57ae
BLAKE2b-256 09fc6bf2af86b3681c13df91d094885aba5ee5bbc0d56c9b043d2b947eeb8326

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bbef3d3ab20666fada0a58354e40361318baae5146342a826be2ada564e9da1
MD5 27e29ba98e08e94fc224a9e68a15aca7
BLAKE2b-256 7867f46437c123eb19e1ddc8e67bca98a079fef86cf92bb0d500690986ec291e

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b74df15f9c377796f28d4184db5ddacf7f82f0075512e843f5ec1ea72863769e
MD5 775d25f549cc978af50d3dc9a2db6f43
BLAKE2b-256 80bc004da424b26ef1e6fa6f847e0dbd0f14970a118aa8191c3fa29832a47c73

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82ff4ca1b75ef7464169dccc7dbd7729a6bb03efeea65327388b9deb47e1946c
MD5 c376daae8d84d33cc617f0baca99bfe4
BLAKE2b-256 c036cd3e11d73fde20159acf1c7d9e666530cc966eb9475b3e2fb702a0ed7092

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: biliup-1.2.1-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for biliup-1.2.1-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 a8a9e88ab662476b4d16dd2526067d7bb03de8ec9efc3034e18eb42a48e66a2d
MD5 3bba8b9fdc3b3ffab080509c6c35e9ff
BLAKE2b-256 c06080bba7d90708fb4987f49be1b75487e7893e21fcf01ae837c1e50e4fbd0b

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-win32.whl.

File metadata

  • Download URL: biliup-1.2.1-cp38-abi3-win32.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for biliup-1.2.1-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 59b8d0b4fed4a551d2ebe833a4b9f172979aa1c75f06f4a919a291fa927d82d6
MD5 7261cb48e3310f8bf6d451cd9bb16dc7
BLAKE2b-256 0dde37165290a2f686f904c5784a4b58f10e794e989d9f5b49aa50bbcec052d2

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de79cc25002a89209df19e10c413ab18e19571b07a278d5e7d769fd1fe439573
MD5 a018d445dfa27b5030e1454088573f7b
BLAKE2b-256 c7e1bd78b93c979f7774a61e9c2311c97ea37ddef22284fb409cda9ddd8c45c5

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79d27d115a0702d682ed2d815c051f734b73bff9e49278d22caccd5b442f6a9f
MD5 15247b2986c7cf471020eabda8a458e2
BLAKE2b-256 c1e2b54b2c4cddf4fc08ec2ac7b8b99815e4837ae5dc695404cc41e574a87b3d

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d9e3d9187a0920cbd0f04d6a9ffe14fa47e09ce1f566f8cd1913b1ce2418bd4
MD5 da0e49b82810aef3991cad52f55aa3d0
BLAKE2b-256 f395e033ad51e4b364f559a3acbe568847acb53d3ab50212264f4a8e0ba50ac9

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4930b4131d4496ec29986b33a5aea5a2d952e6dc84bb71f96297152cb6992afc
MD5 0514af141ee4ef5129d2ba4f58a5bc63
BLAKE2b-256 18b432c82ad4a246d707e6550bfaee45fae01009ca922dd9143e46b4d07a9845

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3caadd38672f7f76557b2893e9c3cb2435b4cd79920eecf910cf0a35f60a3946
MD5 9b0cd15a0abc3df6f5bb15069bc0bee1
BLAKE2b-256 6f50aed806b3603bb38dbf4fcf02c4cb3cedc8bee49d207771cd4ae3bbd36b91

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d476c575e85112aadad57d633c61100406990b4938d79bc141601561e6a5610e
MD5 3bb5e106e216e9a8ec686a5f33fac165
BLAKE2b-256 7b22006e7a8a398941f844a7830f0ab4a9c4e233acfe0c220fa18c829a5c8219

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe9334ead602ac3bbcfd94ef91492b39efa17ebe242f7a9e71872f8e623eff6e
MD5 b1b438dab66c610886c987a61922d476
BLAKE2b-256 df4a4eb4096a03b395ce99c93b846c2dfce79f2884e9fb796c31f70f12308d5a

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b31d2a1c7390d5dfc26b6d19c6ad61972f6de3aef02503c402b4fecf93a99e9
MD5 8e8803a4ea020ee6104a94f192f8c766
BLAKE2b-256 6da21201d8aeffa18c6cdda294ef5db6dddf61c4dbf7adf89577f256585c9fbd

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d2efe5be0d2f22b95902a0973904761f457b4c8923b44223e475cedf4627038
MD5 0903bb63a384f26fc2aecd5385117bb5
BLAKE2b-256 7c2f1cf00f074b32c026fad28deb403da19984b4f77545f62114b4d5017fa2c2

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a33a80a1830e1dd5ebb51949fcfbad0e07037cb31ffedbb05398f5ffa4d5469d
MD5 32ba7ea416c2bfd918576957b8d0faf3
BLAKE2b-256 a6f825ad0e8ef75dd10b7efb1eef3ed23c85ab92f789c70d030424ce75de6545

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a5a6b3c8d49b41bfd9d54024d8b86b652920b86959bd700252cfda394f0e2b2
MD5 7efcd32fde03060c0e853dfc1658a77d
BLAKE2b-256 17d7253028696ded9e1f3d913af51ddbb0b9f11b38109fd1755ee74eae89e1a1

See more details on using hashes here.

File details

Details for the file biliup-1.2.1-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for biliup-1.2.1-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b720ee23fc7ba1c5041d4f429d55d925de26aaee51cb018f57f7a891a2e19ca
MD5 898615358fbf35e74c1d080e7a45b53d
BLAKE2b-256 1c5084fa68f60de8ba0702b48444d1816ad8be5399bdc67304ee0440cb7352f8

See more details on using hashes here.

Supported by

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