Skip to main content

Lightweight HTML rendering plugin for NoneBot

Project description

nonebot-plugin-htmlkit

一个基于 litehtml 的轻量级 HTML 渲染插件。

特性

  • 基于 fontconfig 的字体管理, 支持系统字体和自定义字体
  • 提供了 HTML,纯文本,markdown,和 Jinja2 模板渲染的快捷函数
  • 支持自定义图片和 CSS 的加载策略
  • 支持通过 CSS 控制样式
  • 支持自适应控制渲染宽度

安装

使用 nb-cli 安装:

nb plugin install nonebot-plugin-htmlkit

或者,使用你选择的 Python 包管理器工具安装 nonebot-plugin-htmlkit 即可。

使用

API

from nonebot import require

require("nonebot_plugin_htmlkit")
from nonebot_plugin_htmlkit import (
    text_to_pic,
    md_to_pic,
    template_to_pic,
    html_to_pic,
)

[!CAUTION] 注意:请先 require("nonebot_plugin_htmlkit") 后再 import 插件!!!

配置项

plugin-htmlkit 的配置项主要为 fontconfig 的相关配置。

对于 FC/FONTCONFIG 开头的配置项,请参考 fontconfig 文档 以了解更多。

# ===============================
# Fontconfig 配置
# ===============================

# FONTCONFIG_FILE
# 用于覆盖默认的配置文件路径。
FONTCONFIG_FILE: str

# FONTCONFIG_PATH
# 用于覆盖默认的配置目录。
FONTCONFIG_PATH: str

# FONTCONFIG_SYSROOT
# 用于设置默认的 sysroot 目录。
FONTCONFIG_SYSROOT: str

# FC_DEBUG
# 用于输出详细的调试信息。
# 详细见 fontconfig 文档。
FC_DEBUG: str

# FC_DBG_MATCH_FILTER
# 用于在调试时过滤特定模式。
# 仅当 FC_DEBUG 设置为 MATCH2 时生效。
FC_DBG_MATCH_FILTER: str

# FC_LANG
# 用于指定查询时的默认语言(弱绑定)。
# 如果未设置,则从当前 locale 推导。
FC_LANG: str

# FONTCONFIG_USE_MMAP
# 控制是否使用 mmap(2) 来处理缓存文件(如果可用)。
# 值为布尔类型(yes/no, 1/0)。
# 如果显式设置该变量,将跳过系统检查并强制启用或禁用。
FONTCONFIG_USE_MMAP: str

构建说明

  1. 安装 Xmake

  2. 初始化环境

    使用 Xmake 时必须激活 Python 虚拟环境,并且安装 build 依赖组。

    # 拉取子模块
    git submodule update --init --recursive
    # 创建虚拟环境并安装依赖,同时避免直接构建项目
    uv sync --no-install-workspace
    # 激活虚拟环境,请使用对应 shell 的命令
    source .venv/bin/activate
    # 配置 Xmake 项目并安装依赖(由于有大量依赖需要通过源码编译安装,可能耗时较长)
    xmake config -m releasedbg
    
  3. 构建并安装

    # 构建
    xmake build
    # 安装
    xmake install
    # 安装到当前虚拟环境
    uv sync --reinstall-package nonebot-plugin-htmlkit
    

    如果对 litehtml 做了修改,则需要重新构建它:

    xmake require --force litehtml
    # 或者用以下更 dirty 但是快速的方法
    rm -r build
    xmake clean --all
    # 重新构建并安装
    xmake build
    xmake install
    uv sync --reinstall-package nonebot-plugin-htmlkit
    

许可证

本插件的 Python 部分 在 MIT 许可证下发布,C++ 部分 在 LGPL-3.0-or-later 许可证下发布。

Project details


Download files

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

Source Distribution

nonebot_plugin_htmlkit-0.1.0rc5.tar.gz (65.1 kB view details)

Uploaded Source

Built Distributions

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

nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-musllinux_1_2_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-musllinux_1_2_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-manylinux_2_34_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-manylinux_2_34_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.13tWindows x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-musllinux_1_2_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-musllinux_1_2_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-manylinux_2_34_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-manylinux_2_34_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.12+Windows x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-musllinux_1_2_x86_64.whl (10.4 MB view details)

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

nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-musllinux_1_2_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-manylinux_2_34_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.34+ x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-manylinux_2_34_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.34+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.10+Windows x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-musllinux_1_2_x86_64.whl (10.4 MB view details)

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

nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-musllinux_1_2_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-manylinux_2_34_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.34+ x86-64

nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-manylinux_2_34_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.34+ ARM64

nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5.tar.gz.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5.tar.gz
  • Upload date:
  • Size: 65.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5.tar.gz
Algorithm Hash digest
SHA256 5c9fc3ed1d1cbf95711006761d19e7a1dc0d0e8b7989c2e806a2bff3aeff7b17
MD5 b3428ba25e6cc387f6d8b9d3daf66115
BLAKE2b-256 29797f0b60a19132e335cb2d6ec2902e330afc97e82462dc152ae033864acf25

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4562b1b2e2ca257294f52671970c431a4e253aeb8b133d90104ff5bbafacb06e
MD5 c092a365308df232e9bd939195f794a2
BLAKE2b-256 fa032b0493a871217abd1dc916804cbe4e1aac0852d9e54f97039841b472aadb

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0b30fe30fe364f9e4d34a80bf134d79de67bc8550becd095ffeb709cf4105f2
MD5 4d243727c3746e65d270982919a04f09
BLAKE2b-256 b472f39f4b78352322336077cf703a129fb342019fe9633b2cd8185a63d6e2c0

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e591e0083b1364bb7921ece4348aaf6c451572f87ba3df17588b44dd3b407ff5
MD5 bf8d7afd32c8f860709c1ad4662e4adb
BLAKE2b-256 c98c51af35e1e3f03538b96d2d1e6b8c6db8ddb0dd0ac71eac9a25bd71d3f06c

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 eb8276e7058c02e914aa6d72dc8974f221bbe0a153addc8724115ef3aef8f1ed
MD5 806a374aa45d51773af64b47a3af09cb
BLAKE2b-256 77b4b7a6ff3502caa4e8dad5360d9f830abe239beb3bb5f0e676a41537fc866f

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c9c8cd3ede2d2c43160c69faa5136da9d5e6f485aff30ffc7dbc43d4beb1c603
MD5 e3874a6fbbc594cea31e69a030b4ec13
BLAKE2b-256 5b8d9dcc91ff91181eab1f4c3c72e2b6288c07986b4f25cc92305d1c48382155

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8255d25e141be2eae55b24b290e40c8db33d416822ba426789166ca5988873cb
MD5 4080616a2ede9cea8e7fa2cdf0482de9
BLAKE2b-256 159d534f66b60d9538f8ef111e2a51adcd90db8a718f95a988d9f0fcb5e085ab

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 271dfddaab7f7f88a5ae61d401c58aa4d6c334d3fc5dcefb4a82b85084b5df85
MD5 99672b696d521288dee8cc30a5d585db
BLAKE2b-256 ea8418ca0644c94ecd9a6504cedba3ba0585878512ec844858011639ca74b17c

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d6224ed8a05e41afebe2df285aaf661644268dc399e73bceb8999d2c568cdd8
MD5 7cd20ca49973b1c482b5340025243607
BLAKE2b-256 fc48b49732b8a67e6aaebdbf9dc4361052328872f46ad67796315e08f8ad6a44

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ea2a9d524f78b11107fe6736388926ee61f87d5acfe1dd4b50fdcaeaa23f166
MD5 d7503c3e47119316c82f5fd00b45df25
BLAKE2b-256 146285037e9cdc8467eb75dfeaea0519a929bf390100fe0f4a5fa5faf0dcc647

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0cf8e51662bf082d5d89e2c1f3c24463eedcf2516da3e64475bd75914485cdb1
MD5 e8c9b0ceb475fdda51317168245c97b6
BLAKE2b-256 15f93a8e874036e6c73ecf9221d05502d6681fce1268d61e7f379c98cefd4a54

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c4c240d6b9bf61a53230634abc6f6a20f075c8934dbcd821639b78e83fbeb789
MD5 ed17822d766cef0c99b39084a99ffb1a
BLAKE2b-256 dbc3a26909de1e7bffb84108128defe848bf4e16d8a3f40ef7a27f2aaffabc8e

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72b12faf497fce1e50ba121092221073f9db3db5fad21afcd0902a9ef4b8e00f
MD5 d287603ec3c5d84f44c6ddb98a288f00
BLAKE2b-256 c8965e38c12111a71646ffe1f0efa8e7468e89699feda34326d42a4de7b994c5

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 97d39efcb1d82e7f7a3daf2f6903baacadcce84cfd978fef486c8e1183a4dc55
MD5 d0c255c5174db2577d753a4fad935955
BLAKE2b-256 5c1f702efa35ff59feb30799d3a8f1978719facd8bab286cc5f141136b91df1a

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34dd2ed57748bcd7480da3938a3753de333d5c69cf3488188dc139890e8942fb
MD5 be7f5f3eaef2eb2d0b281df61a89365b
BLAKE2b-256 a8cfcb94ceba5472eb10412345840418ca9bf535aad32d7a9c53562a8ca25c20

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c452af6bb67738d54a0d6ba29ba81a4e1117f32c8b3686d1ab33f977c95fd473
MD5 47a915953a02a14256d584c5db712602
BLAKE2b-256 0a310dc54b1469ac81186521a4814d4688923c6e28e19b1d487f569c30f3983b

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.12+, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 30dff5ea120ee64c042112c1bf968de6929ee48e903504ca6e5221ad6d61ba90
MD5 e968d1d0eff281c04eafd96e052322bf
BLAKE2b-256 428952b440b99c40930bf9ec26b5479f6b9355021533b01cd7354b727d36c805

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.12+, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 0a105bcc2714ef1bb07b689af74bda3ba3165a19f061bf1177bf8b5b0a3c9411
MD5 68df97d2df932355b79f955b5ba6bf7e
BLAKE2b-256 859815d572a75544e1bf7901cf465a4f1f5d17fff6d1c3e93c210bd688409630

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.12+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b60f891c21da4ff024773eca695dcc92ae648656c7be8a2f1c9839c052971d8b
MD5 30128c8bc9442564b4a11ddfeb800e8f
BLAKE2b-256 6a13b76bf3fc1f8a2ac48616a6420c682662566bf9965e2d3daec17ca6d4040a

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e8c49e8618fae48b6a499af416fe2725c324b159eec5d6694352d275c7f598f5
MD5 4f0b79dc0ce3fbb3d540fc21e614180d
BLAKE2b-256 bbb714cf8b2d1984c56cc2214665f3d2b382400c8dc423c6642cc1ed31939d15

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4921f529a6eec4b7f4cf3085d8cf9ca2617029e62c43631561a1188f9eadc9bc
MD5 1e6bcd254d0c566153016983b3bd937a
BLAKE2b-256 fdb2750298c5c1c35ec208370494d659437da82635190755df076c7771baaca7

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1c5550490a9efbfbf491f9ab42fadf347af81fc214e113773ff77bd72c4c095
MD5 0ea86912432b985e728721ce83d71a8f
BLAKE2b-256 7aa2b2f20c9a87c4b1a3b88b5481407095b7aa03b7a0811b34325847b0751b14

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 74b35033fd0d23e9d5c9a509b596c522630aafcfc2a2f37c605a9c5b36ce8138
MD5 fc73c91492c2dd638bd65685b3979f5a
BLAKE2b-256 2f962385871a9d23601fb2c8fc933c145b8fb8776edc65d873b122df3eea0f6c

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 ef8348e1433bbfe178e668acb7c46994c0a6cfa2f30446abbf7f8f08ffb25bd6
MD5 a4e3f0b9608b4e1232c210a21eb55c58
BLAKE2b-256 b468330b0a4cc81d82ca382f9a5f464939cdfb3482cf29e27c7f4e40278b5884

See more details on using hashes here.

File details

Details for the file nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.10+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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 nonebot_plugin_htmlkit-0.1.0rc5-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d495d8b7e7fa22f45a21ee4bbd1052fd12a4236aee23396f9e5de71eb66189f
MD5 ee6f3a5d83f25871db6f9f95de4b91d5
BLAKE2b-256 c83666cedb5d3170c24ec3261392c090c830bb921570f9373c2686c26495973d

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