Skip to main content

Python bindings for the htmd Rust library, a fast HTML to Markdown converter

Project description

htmd-py

uv pdm-managed PyPI Supported Python versions License pre-commit.ci status

Python bindings for the htmd Rust library, a fast HTML to Markdown converter.

Installation

pip install htmd-py

Requirements

  • Python 3.9+

Options

You can customise the HTML to Markdown conversion with the following options:

  • heading_style: Style for headings (values from htmd.HeadingStyle)
  • hr_style: Style for horizontal rules (values from htmd.HrStyle)
  • br_style: Style for line breaks (values from htmd.BrStyle)
  • link_style: Style for links (values from htmd.LinkStyle)
  • link_reference_style: Style for referenced links (values from htmd.LinkReferenceStyle)
  • code_block_style: Style for code blocks (values from htmd.CodeBlockStyle)
  • code_block_fence: Fence style for code blocks (values from htmd.CodeBlockFence)
  • bullet_list_marker: Marker for unordered lists (values from htmd.BulletListMarker)
  • ul_bullet_spacing: Number of spaces between the bullet character and the content in unordered lists (integer, u8)
  • ol_number_spacing: Number of spaces between the period and the content in ordered lists (integer, u8)
  • preformatted_code: Whether to preserve whitespace in inline code (boolean)
  • translation_mode: How faithfully to preserve source HTML (values from htmd.TranslationMode)
  • skip_tags: List of HTML tags to skip during conversion (list of strings)

All options are exposed in a simple manner:

import htmd

# Simple conversion with default options
markdown = htmd.convert_html("<h1>Hello World</h1>")
print(markdown)  # "# Hello World"

# Using custom options
options = htmd.Options()
options.heading_style = htmd.HeadingStyle.SETEX
options.bullet_list_marker = htmd.BulletListMarker.DASH
markdown = htmd.convert_html("<h1>Hello World</h1><ul><li>Item 1</li></ul>", options)
print(markdown)

# Skip specific HTML tags
options = htmd.create_options_with_skip_tags(["script", "style"])
markdown = htmd.convert_html("<h1>Hello</h1><script>alert('Hi');</script>", options)
print(markdown)  # "# Hello" (script tag is skipped)

Refer to the htmd docs for all available options.

Available Constants

The module provides enumeration-like objects for all option values:

import htmd

# HeadingStyle
htmd.HeadingStyle.ATX       # "atx"
htmd.HeadingStyle.SETEX     # "setex"

# HrStyle
htmd.HrStyle.DASHES         # "dashes"
htmd.HrStyle.ASTERISKS      # "asterisks"
htmd.HrStyle.UNDERSCORES    # "underscores"

# BrStyle
htmd.BrStyle.TWO_SPACES     # "two_spaces"
htmd.BrStyle.BACKSLASH      # "backslash"

# LinkStyle
htmd.LinkStyle.INLINED                   # "inlined"
htmd.LinkStyle.INLINED_PREFER_AUTOLINKS  # "inlined_prefer_autolinks"
htmd.LinkStyle.REFERENCED                # "referenced"

# LinkReferenceStyle
htmd.LinkReferenceStyle.FULL       # "full"
htmd.LinkReferenceStyle.COLLAPSED  # "collapsed"
htmd.LinkReferenceStyle.SHORTCUT   # "shortcut"

# CodeBlockStyle
htmd.CodeBlockStyle.INDENTED  # "indented"
htmd.CodeBlockStyle.FENCED    # "fenced"

# CodeBlockFence
htmd.CodeBlockFence.TILDES    # "tildes"
htmd.CodeBlockFence.BACKTICKS # "backticks"

# BulletListMarker
htmd.BulletListMarker.ASTERISK  # "asterisk"
htmd.BulletListMarker.DASH      # "dash"

# TranslationMode
htmd.TranslationMode.PURE       # "pure"
htmd.TranslationMode.FAITHFUL   # "faithful"

ul_bullet_spacing and ol_number_spacing are plain integers rather than enum-like constants — any value in the u8 range (0–255) is valid.

Benchmarks

Tested with small (12 lines) and medium (1000 lines) markdown strings

Contributing

Maintained by lmmx. Contributions welcome!

  1. Issues & Discussions: Please open a GitHub issue or discussion for bugs, feature requests, or questions.
  2. Pull Requests: PRs are welcome!
    • Install the dev extra (e.g. with uv: uv pip install -e .[dev])
    • Run tests (when available) and include updates to docs or examples if relevant.
    • If reporting a bug, please include the version and the error message/traceback if available.

Credits

  • htmd - The underlying Rust library
  • Inspired by comrak - Python bindings for Comrak, a fast Markdown to HTML converter.

License

Licensed under the Apache License, Version 2.0.

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

htmd_py-0.1.1.tar.gz (45.4 kB view details)

Uploaded Source

Built Distributions

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

htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (760.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (761.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (789.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (706.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (619.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (596.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (512.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (552.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (759.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl (760.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (786.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (704.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (617.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (593.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (510.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (526.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-cp314-cp314-win_amd64.whl (398.0 kB view details)

Uploaded CPython 3.14Windows x86-64

htmd_py-0.1.1-cp314-cp314-win32.whl (392.0 kB view details)

Uploaded CPython 3.14Windows x86

htmd_py-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (760.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

htmd_py-0.1.1-cp314-cp314-musllinux_1_2_i686.whl (761.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

htmd_py-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (788.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (705.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

htmd_py-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

htmd_py-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (618.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

htmd_py-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (595.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (512.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (550.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

htmd_py-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (455.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

htmd_py-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (475.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (759.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (760.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (786.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (704.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (617.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (593.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (510.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (526.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-cp313-cp313-win_amd64.whl (397.9 kB view details)

Uploaded CPython 3.13Windows x86-64

htmd_py-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (760.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

htmd_py-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (761.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

htmd_py-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (788.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (705.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

htmd_py-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (525.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

htmd_py-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (618.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

htmd_py-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (595.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (550.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

htmd_py-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (455.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

htmd_py-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (474.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

htmd_py-0.1.1-cp312-cp312-win_amd64.whl (397.8 kB view details)

Uploaded CPython 3.12Windows x86-64

htmd_py-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (760.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

htmd_py-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (761.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

htmd_py-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (788.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (705.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

htmd_py-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

htmd_py-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (618.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

htmd_py-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (595.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (512.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (550.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

htmd_py-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (455.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

htmd_py-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (474.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

htmd_py-0.1.1-cp311-cp311-win_amd64.whl (397.8 kB view details)

Uploaded CPython 3.11Windows x86-64

htmd_py-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (759.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

htmd_py-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (760.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

htmd_py-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (787.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (705.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

htmd_py-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (525.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

htmd_py-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (617.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

htmd_py-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (595.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (550.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

htmd_py-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (455.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

htmd_py-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (476.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

htmd_py-0.1.1-cp310-cp310-win_amd64.whl (397.7 kB view details)

Uploaded CPython 3.10Windows x86-64

htmd_py-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (759.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

htmd_py-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (760.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

htmd_py-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (788.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (705.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

htmd_py-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (525.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

htmd_py-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (617.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

htmd_py-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (594.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (550.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

htmd_py-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (760.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

htmd_py-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (762.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

htmd_py-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (789.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (706.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

htmd_py-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

htmd_py-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (619.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

htmd_py-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (596.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (512.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

htmd_py-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (552.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file htmd_py-0.1.1.tar.gz.

File metadata

  • Download URL: htmd_py-0.1.1.tar.gz
  • Upload date:
  • Size: 45.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for htmd_py-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c5835c8627ffcb58510241a2a400a87dd750380857a76bc199c448c8876f2a08
MD5 e837695319de263454945dabece86740
BLAKE2b-256 09201830fe81d9c4c19843108189c61ad00f8db2effdbfb58c36173b693c4a84

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 481cc453f92d8ee2c83e081f5fb0df047aff3ec4c9a1e8065729903d9d8fcf7b
MD5 f2631450b532efa4529d41bebec09fb8
BLAKE2b-256 4775ef93da29ce7e9bf8bb37e9825a2874ed8c336c000dd48a18262dde9ffe2a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff30aeab20492bdd0602c8b9afec4c6ef040376010b01551cc906504856a8f12
MD5 c80317bb748eb53ee293e01e061c39ea
BLAKE2b-256 078d90a4ec6bafa111748e029a67a6bd3c1685b2da1ba90a83ca3a2122af130a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efc73235259f2d38ff6b7576a8ac0a087e5b257831f3daff1461a2f297baee24
MD5 2a435b60c5c21624edb5413966bfedc8
BLAKE2b-256 50b343963c8c661dd3e3c484f5450938bbde3700ede7fdfd257791d5f87180c5

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4eceabf404e513cfc87ce3836eed55ff10da05a41fa7906f950d430c974c61c1
MD5 27dc116e96c1a1a20376aca8c4f49dd8
BLAKE2b-256 775275cc28e166629151674e071f0d6fa8b69e5e5a157773bf7739cc13e13f3a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e595f7f58f097175ca20fd6a1d0b616efa7dc21b3afdf2a86d1c3c3aa1f5ba27
MD5 4a36af68516dde0eb4a882a9e36729ab
BLAKE2b-256 cf488684aa8a9e7f03b8f78302a9231c478070702bbe1aaa9c425146b0d36868

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0204a5e81aca736e016bc4f3033fb9d254921389c0c55ec8cfc21548dd4fa4fe
MD5 e567300e583c66ecf2c75ec467cbd6e3
BLAKE2b-256 19478132b3746f334e3b4f9b7341c5c558f8c37e36f52aebe1e7b1cbb3643b4b

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f907a9315db5f53ea137a2d5c2f111664c3b49a5c3a22d52ae975e3ac6621977
MD5 c9cd37b4ee2996ac9ac0d3e78f6592c3
BLAKE2b-256 11ccfc15301b75f8098407a738718a1612f855947aab5d231813d118aeb00f53

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21b4717a7cca72350beb49c5d13e2254be8adb2d6df6b822aa4ad68708916e7f
MD5 652f6c0b3add7d14f18ff44045ebbd97
BLAKE2b-256 4c5480609b174925501d5c459e978ede8ff2ded9b515ab290781c5a6b7a17087

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b52c311fca25d64b83f3d0ea0efc302095e65a564c38bb779e8889d42870f81
MD5 dd51b2bc1affe8d480f3a9fb2bde4b27
BLAKE2b-256 843337ae631fe56cd31d80bbc679e2352671f1227b207d1e3286d51a3cd29498

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c668c003d7a5d340702f76dde128a9c8b40406346b6c1df07a02113edfd2938
MD5 be4b5574ea7e1df1ff064e6862caa0fb
BLAKE2b-256 5a50bcb7b0035ffdcf2ccf19c39e69b5f945cdf0a9ec302bf9d8912f08897df6

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bb386c8a9827d83b736a9d972d718693233cdb1558fecfb36a6e5dfdcdc9a98
MD5 1a6a1a2a998563b8605d8994d29239d5
BLAKE2b-256 7c7a0a041b3ef1ded89b1b17767294e15d19e86c5cc40f74fd1088a5ed82e9f5

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e5e83971b208073da1b9e5ae2eea96acc3e32782f70a2fae52a70340d91f109
MD5 e566ff574b21f714fc6ae792b87623c5
BLAKE2b-256 ad57aa2a104161c8c1ae262605e7410ba12cc21869b43496d8e7f838f431c899

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d9fbe4d18083dae9a25383de1409eaeaf2f01010d349d742e9b3625412029d7
MD5 0f1748a02b7c3fc30ff7569a1bdb39e2
BLAKE2b-256 534e39f7e0c04966f470daff82d732045b2d9e6b4afc62ccb516586c0b68e8f8

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bfc5938214458e4162b613359527177e1d0220d724832107f0fe4f0f23ada99
MD5 a6728bcc8925c0c8624be3b05f717a3e
BLAKE2b-256 053b883dee863ea8e374974c38e940664ff9ce99298e3d0b00aaf7407f094a9b

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91d1e3ba4eaf88f79fdb7f84cbb3dc35a126e5bf2f266f241cdc82bf939cdbd5
MD5 95ba3aaea3184082228feba624e8fece
BLAKE2b-256 c8995002b383d35fc5dbd650e8bc8cd8cc9d7f367acc279af3cf83c1e19e3cd9

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8c39de61272c682b66d00f35946e1ffba589aafa51da290bb2cde2236e7776c
MD5 dd78797edf75292a402183db72524dd0
BLAKE2b-256 67c627e3af99a3bd60de922dbe4e6d7fe6caa2a1f391d7b41934f8a67454c149

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22aa0b6b7c61e19464931744984005690dc48b1baeb2ae2c0178439e88319ed2
MD5 bf0aafdf67bc1bb15b4759a40760d8ab
BLAKE2b-256 c3d2527fda29d27caf2f90e9e2caa953f1a7e52e4d6772e1ae777aebbec7326d

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9ee180319a0d4cd5136ba863e3d4f3054f292efa3f382d6d1ea0928c7496dc2
MD5 6c53164e36441ca689fef282d58382b2
BLAKE2b-256 337d23a2475ff0094722f4522691d01ac0836c2ca0f903fbd48130956b1d68bb

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: htmd_py-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 398.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9fe1cb920e81d5bf90d3e8ae51860896847bce85ee75996013d96e369224a2a6
MD5 2615809be8c2a248f76f474f2eb4936b
BLAKE2b-256 3e95f2ff5995662e6e29a9232dfc3cb31f9068397cdc4101a792ab1395eeedbe

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: htmd_py-0.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 392.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a207ca67e8dbc91a78509333aa93652eaf12291c664aa74daebfe83bb4ac8de4
MD5 4183f8fb9f7d67db3f6fcba2aba9cba6
BLAKE2b-256 89445fca4fa3190fe6c6aa441e54137066d5734caba9f5cd5f52310921166619

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d55f71335b12a9b8636b6b43d7eaae1677c84b241c596c586eb2307ed659fd89
MD5 ad2ac8997f0b9f7e22a036509e19b1ce
BLAKE2b-256 1e409bbcc55b8129cda4b41732499d523791882d81b9ca33822fcab22affc75a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7639a65f2571297dd3f741ac7b06ea68c58426b457bd0d571238df55d9a80db9
MD5 b5e5d9c3fcf9b257d50d8a4c8a787690
BLAKE2b-256 c4c95fa1df2ff12c8d17bc719378ef82f8c3fe9f9043a78fb6f921a20f162404

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4425d0294eb5727deb68b81b144d6614856678b7760f52e86f6030926a061b62
MD5 1bb72aa95e59fb2bf72d6e9b69d9ad05
BLAKE2b-256 a383d803202f285d726fbf911e08004be6dce5df4c480a47a9be152172826843

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a88509a9ae9295a16dec52ab0a8bed1fe712bb2f451bf2e862e626bbd80151f0
MD5 5275b1a5be64932db7d45dd67b06d316
BLAKE2b-256 fd499933889c3608f3aa9697bcf0c6b53369578a962a8459ffae13ecab2cd3c9

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4095ae481c36f8b1a4af50885e261d7152bc60f59e376e3ab7bf96ec7f5cf8bc
MD5 1f5ac27abe61e57724c39cfee0f901f0
BLAKE2b-256 870738d0b9f91d4ca190b0f34af52b987bee7ce64be4ed8d5773c8d8d2b81896

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2bbc4c2e63ef7c02c9b17474797137434a4c3a1ea451297d0292c54d9798777
MD5 b2ffb6c218f5e6056eecb26c5511ee0a
BLAKE2b-256 80e46c2d355e9dcd3b2859efa8d9a5f43c7e5de047d16f2cddc077137b2da87f

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59a211743d7672260fb1b48a6eab616add46d53c352620a08efdfbff1ecff40b
MD5 b1a507a4522ac97235b01e824d817fd9
BLAKE2b-256 6b702444d466aacd3bc2f6cabc98f0cb9b56e654c493e13c006b32a09aed62fd

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f3c7db179f48af8f4a6c2ef763e2152f6628f38870d6c84cb634b524714cf5b
MD5 7a3b233b00fa13c52e52b1815d490002
BLAKE2b-256 963999acc5c36913557bf35c1671a927cecf3bfded45fd216c1dbd77b62bbb49

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09ee2b323675f5780bcb04fc26cc6d960c6cbe82eb7f393d867639cee7f47f46
MD5 70d5707f5fc04701013dd815d3c88fe0
BLAKE2b-256 09c55e7f646afb152c66f296084e35cc758e0e5784d96b593124ef33eb0670cf

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bee97e5e398388404fe44b6937dda31753792a791f2e799169fb370f30f239ac
MD5 9280a1145642f27871993b72ff5ff8b1
BLAKE2b-256 1fd49cf85527f6665374b99cb7ae442030de6e67cd4ca7187c436b45a32e868f

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c8812b73da7aa1e1e022a1eccea20478248ba8d1bce3bf11d820cae04a53bb6
MD5 f71663dda786769bf701cf81496469d5
BLAKE2b-256 01ce2bae30bc79f021a490167590eee04eec1df66bd486d9ef98beca2b892860

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d3074c6b2fc6d943d8752f1355a49f3a9abe1b86807eeedc2a00cb03bab16a4
MD5 914236509a1129d8acf64b3f026e5dff
BLAKE2b-256 f3421fdc3bfec8eb27ac57eef18985b39d248baa05ca9afd935dcfbd44c1edfe

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddcf79b4aa58de6778b1bea42cf109153f948a4e6409bc7208fccdfe782d3fe6
MD5 3428d8fb9b4ff950e5171566af0e4149
BLAKE2b-256 97f33950e6f558423faa40ab222705aab09053119d0dc5eb7a302e07f7cc39af

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85daa3c9a62aeb6040237848ee09c69c70bf361f7f96804a71e67de1a26d7278
MD5 b480f25bfaf7e877e181431fad1858ff
BLAKE2b-256 82f0f274cbf81debcfdc260374cc0633223f7eaaf1d2f983a572cbc103425ac4

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71e63b6086684ecf70ca205140c78fdacbbaa17f0e24fd0fb384a9d261724a18
MD5 a82aab865b188a5ca134926a3f232b98
BLAKE2b-256 708e91795a02f2e2b488c452e66d6414315adcfcf656fa6b4598f71abf9c248c

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e966557ea85b7536d3e58cbf4a10bc0ece3a9f983a4867b41791732ae068ac81
MD5 9c42b2a97368a0f58bc6397d21a6c610
BLAKE2b-256 e4b8439fd20d98f276f5a7d78a8a374ffbe8a0e5f243892e28e0c7a17b27a156

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83d17f2c39cd663bf5ffc2d3aa8f4b6a63e5372b592832292a505dc49692b022
MD5 84fd4016ab75055605c3859c72ff8f95
BLAKE2b-256 0e16e74c80653cac7a95451e2dd452238b888e8e1152b81d57bf5e22f20a265e

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d5167023b41d6a5bdb1510a07c6add8aeb149b1e4f8d36fbb88ddf6ce478ec4
MD5 a60dfc31567521b6ab423ab245753a5d
BLAKE2b-256 2671caf691c4b0fb336d639f6fa7670a91bbb5e4d8e63e04b1fced5a1f046ede

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1849dd3128b10df628f4022b5871b33916064b91f29314a051efa5d77112bae
MD5 702ad2cce1788a01e94631081a14f982
BLAKE2b-256 09481cd7a3526fdefd30d5a6aaafa46dc724706b82dd2ac9edc037ee4630ec3a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cb76365ebf7c4abc1321a88c82e0f3979c0f5a8115da05d8c7297a0d5c980b7
MD5 86095755dbd98d0cb53f40328b79ebac
BLAKE2b-256 7ea71079a43ea6e441209741d4d23d1d59a5b5c7b8f1215b15b1ab7bac4083e6

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: htmd_py-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 397.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bb2171f48997cf3af7dccd5ec1aeda4af79cf297eed190c9972b87f793e90b6b
MD5 bd5fc3a4292c6b145e2ab1e6d3660384
BLAKE2b-256 1198c3b3e8ab8b76c5bfbcc9442925de06baebdb6f6e22b6cbab8f9e3d815b39

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51c50b6e40966fa22dbfc66119d774083622ed17586c7491a778d6c9795bd138
MD5 e11d71fa8e75378c4c1339a81de71e75
BLAKE2b-256 2a05ccae101ad239ed925e71f74035baadc56e895dabeb43a18c4a556a1cb10b

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0232805013082e0ce21ce0e550a58c6338aa6190a86969f00eed53daa1062a6
MD5 4c0f7d3be03be9e7285259b4e0ffa5a4
BLAKE2b-256 2e205114e3380aee09d4cb388203c5981063b079672b2f4fe426327c8f16057d

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 37716d82f3392ab0fd952200b1e9044da6af5569d26af45291ae2ad276b916ca
MD5 732d5eef3b9c881bb020fd579524a8d9
BLAKE2b-256 04241d07aefaf2205b7a7b356ab6a71f22ca30d64f0ed0e307c9beb8c9c0f611

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f08aeda0d438b0235454ca7f143dff36a6422af83104ad4e1db80f20015e5f29
MD5 a24ba2b8e2e3db46e97794907b13b206
BLAKE2b-256 428f8fccafb5e9f9d5a1fec7ae69a5f33bc5487b94209784bee175fc1dc7a90b

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2b017d1c52a9842000121750b5cbf09fee086371e50b1cbd3929ad118e4b89b
MD5 dff9004d4b86b994ecf65d6a01e31283
BLAKE2b-256 e0abc99288a47acc726a4358df9a93e162043116b0423444b91a97c036ddf57c

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4a0963b292f2096b48810e33de8df9c5e63914cce4d35c39126e78ee895647f
MD5 d0e7f69010aed48592cff3a3743c93d9
BLAKE2b-256 7bddb5f7e5691b0df9f4c300b9622000cfe540e4a30739ff0b75892cba1df486

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ea67689cb35764ff428f793fed3cf2da665f5ef9d871e1a1c9b77878207860b
MD5 8acc0e1c7eee7fb629bb19ce8144f28d
BLAKE2b-256 c3b9a270a55f605019609c8844b7a6a6cae94af63565d95faba5431476f4037f

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 896930294591db794409309f60b83478de4e218918c264c576a27749064c921b
MD5 37cbc44b4f869ba0158004fc86aa8c4b
BLAKE2b-256 563a96a1884bf34d2e7e4375fa1506439ac0e1c08ec324818f53bf33bc214bd9

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51fe800e4eb870a387be732235407488d08415850206fc5f50b93defa0203878
MD5 6aa916f296edc2d5c9a7128a6cc2d3c9
BLAKE2b-256 5cfaaa5c78295cbf9096d31bcc0274df19fa26750ebd61a267d2837ae4b2ec16

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c946753d5d9629e770610285b96d5271ecffda0d275eee815db9eaa74ea9551
MD5 873f670b4307f969386754e46e579073
BLAKE2b-256 31db21791595ebd3d4390ffacb749e0734252cf2f935be6dbc1938678be45afb

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50cba9334686f0b8738603a39c8b0310afb78de73b66d6646bf992d6c5e7c17d
MD5 dccb19aec47026566dc0b4cb2a18b80a
BLAKE2b-256 2c453250a6b5023095bd6a5dcacfd8f6d3b47015b2302001bdb59869abcbb81c

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1897783fd45284f133ad8013711f537a4249c88829a09f9bf3f801a87973b758
MD5 6f460c074405c846b2667ccf60947c69
BLAKE2b-256 40b2ac325d9c39310a518d38f1f1c1be4cbe82b802e5ad45d35f7b63d46f9a43

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: htmd_py-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 397.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7fc47a003eb414cbda632686ab136a6af0bc851f3fe7b1eec188057a5951201d
MD5 efd44442a3881e5968b95861589df205
BLAKE2b-256 14491a0da744fcdbd0485d92007a1f8e201d5dd26d3ffe847ef9c2f143f9eccf

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c1c9d9e1ad8ad57babc78b2802643f56cffc7b977a6d15e4892ed1b3274b5ab
MD5 7e78ba6fa56258a490a8f18bfbb705d4
BLAKE2b-256 2ec5423b4d5f48372ce6a037eaf8e6c01195f1393fb3db05ae1b1109bb1cb21a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53f6f8b1b95d6bfb385ca09771b11fb42147592bb5bb165aea9b11648f31f842
MD5 923851f2b621cd5b81e5e6de01133f2b
BLAKE2b-256 8e2ac3496ba70ea951380c6a4a4b7f9913f58a00941880e2e113c0e50486885f

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c0e732bbdb7efa9d684a45432c583e372f81c16211e74218582326d579645fe
MD5 763f58c58e8db77db1841f5978ee0df3
BLAKE2b-256 00af73862f7a00ff19499197d1b53df8407b2a4604514823085e49fef156621b

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 622b6de82a183e6548077118f3351f298dcba25911b0d4f9553305e5e19c6da1
MD5 cb3f35e1904f320287eddd4366bcc507
BLAKE2b-256 0f29bc36adcf76f34613077cfcd343cf53db2c568ba1bb6e5c75bc010742471d

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdc715cf3e1877941b00bd39b99cef94e7cbfabbc6da2b3537a8dcff498e272e
MD5 073f02607372e56ca0ab443fabeb1adf
BLAKE2b-256 07e70ac5bd6004c71b161489f9e756d4d07a28641edc21e74ddc9e96836c49d9

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e9c81251edcf5c49179e82caac2c6f6211b6f8f3bf9a2dcd5f8059b2a9ee572
MD5 921cb5c53cb68044e47187da7d384eb4
BLAKE2b-256 1002a22ae6a7c5defeb693628b8bc6e06bdc478dc4eee1a8ce025dc410a6ff0e

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 463a33e3c3c559bafb06a4d684d9a8aef283dfb1506bb8861e219b6c1a8fa112
MD5 a3fcb7d3bb42caada62e739198c26e53
BLAKE2b-256 74ca6db0b2b3328ca84e3c0338db5d8907694842d0cf9d432a7f8b968fb12d47

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08b519063abeace1796485f106c769c550e5223b33f78eb0bc72a9eefd689efd
MD5 b6f8135949a48ec64f4174e2635780c9
BLAKE2b-256 38c35984ffef4bf255d872e01d02fafba70b1260cf8f3b2f73cf72c1ec569a34

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c79190347d31165390bdbaea9a9df47ad706bbe8fc0217fb8365e666432bc0f
MD5 88f10c5c97336b5718adcfe35123b0dd
BLAKE2b-256 4be7807780190011816af4df4d130273c0193dfbf2a3cae17a1129cd1770c264

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84ec368e9c0ad9c383a3578acfadbd8e51a305b4be98094c6a45a86dcfaaf854
MD5 7681607eba1ac3d5a93b9e65b66ecdcc
BLAKE2b-256 b1a4853147edfa42b97f6d31abe5823f46419c021f0222024ecb6f3f0850c04a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48eb6e5ac40c0a4df17e74ef4f4ca87503e4b68442dc616d3cad6ef04aa96eff
MD5 c9cdbc3a2c17410d517b17f31f2000d4
BLAKE2b-256 d321b5630e40af9c11b138dd85c3d67908b84c98398940a40a968d70f2655fd1

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f35103e5ab33f9d48703552220781fe073ae713c7fbde643295cdcb3c442b4e
MD5 3cfab42ae3f0cca3ea4537775a8a2ab2
BLAKE2b-256 0f17dc8bb40e236bca0da4ddb94dadd882382e59a29ee773c713d7bee8aa900f

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: htmd_py-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 397.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1d0ed1151024d7d4542f98967385669583b25b414ef2fa21d7a2649a3e6ab864
MD5 f77a4d78437ade15c7b5a71a77e59763
BLAKE2b-256 0f085b0ea7faf241a9b9fb7638d40d060ac983ff5de4ce71825386bbc7e78632

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 902b7bf060ade77dcc12b510c53008eb496de7caaa9ac2232499edf31793bb20
MD5 4a07e6737248f3dc4213cfac8738c1a3
BLAKE2b-256 7a23a534bd5987deb49fb283c5249eace0b7ab05651da9c356c9228d5c5c3cc9

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e82e17855c768530654dededa5c4828cc9ecea223ea9e9d316e04dfc788e0ea9
MD5 ed84fbc76b3f03324d847b40c97c7c72
BLAKE2b-256 c76fe525159fb8c9e9271b8425c00af59496e8cae601d452733f1c12052da53c

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e41584eb7a63ec013681a4d86049b37dd64c5fd9f2348599792f0c60be5c70b
MD5 953d4fd5251bb7a0bab9eaf52f34653a
BLAKE2b-256 d6296cbaf346ce7494a4d028fb8223dc42c53af4359e6f14544425b1275ee641

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a833d49638f1b262b1b6681b7edb010dafee25738abf13c1bdd5abf0a517d3c
MD5 fbaab47673f6622eb35cc74601c46c3e
BLAKE2b-256 4ade482bbd549861d2f5ed92e9a2ee0ee3868ec68bec46db7e2ff2bbc6b39f0a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1208ec4e3e5328485a10e51e6e57264366becd56855ed35f8d904744eed04f11
MD5 09f6de2c2b96b809ea7aef6953c88d2b
BLAKE2b-256 2aa5a326a551fa4671f54ee3a134a2710100ca36076cc2545165d7b3ddb9f30a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e201d4a37d81085c3152524e6e7e67e39ad5e8b91bf285d559f30668d25cb902
MD5 227e2c5c2c72903c2ee24e55348012a1
BLAKE2b-256 8453e6c961f31dc722a00bddeccaf9e6365898b471743ed1439ff1c1132fe05a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83f93d429a1907fa171f2870e60ec882117ef3896ce9a38312d4fc23b373a1cf
MD5 66a3c21d72266ea2bb9c18bece066a0b
BLAKE2b-256 2a2dccfdae89a05b1004c7f28179e4f6e15fa393555a0ddf098b59b33aceacf8

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc8abfed165b4d75ff21f3f738f98c9eb09512ff070d20cad888ba723270144b
MD5 16badd66dffe998667405f194812bd93
BLAKE2b-256 d7645df3ffe356e40bba7b9a980c2164dbe12152a0fb06cceff97c4877fb8494

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c89976107f0ca4a1c87edef2ac47539717c5b9b67ae74eda1e27dcd615baa73
MD5 c923d24a9a589b39eaae21d8a88aabb4
BLAKE2b-256 6e91f01d7cd1f0380506c50d7a9aaff1d2a2b7c045078eea76c8a9faab810e84

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 85fc3aa21c6319679acbfdcfdf5cf099cc2ad2cf3e5b1d7f6bb950c7fb570464
MD5 92259747f38de20adf7a8ab7ab2c7dc5
BLAKE2b-256 45a6b508d78f1ecd8261611b547156b0dc6074aaa39fd8cbf734cad5deffaf8a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223208b8de1abd2184fcb5cdcadf695cd67a6b84c15348745eaeef674d1d5eb9
MD5 95fc350999122e5d63c6946c04568668
BLAKE2b-256 a28972f67d0f92cf260e537c244a6788e5e15896b30164f1789c6ebd2247d3f4

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecae0791f0682f032a92709c82fbb00919044cbf2a578c000b4ca9ec7edf232f
MD5 52bdb47bdfd92b068878c17d196fadee
BLAKE2b-256 030b44edd398138b3f24d346a0bb245a8e3fa72d67c23161578d5ec974986bca

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: htmd_py-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 397.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0850ac97fbf9f451433bd14f7fa2128770c1f4624a95a59de7e69f84b9cce85d
MD5 75dd225cfcd7a7da1885f581d9446a47
BLAKE2b-256 dc2d04bfbd5d3c95d1e2b5d946ded8de10408d160ab4c69bb81c0da3d0760048

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2687fb56d19a53970c8b53c1205928c2c5fef0176f309fb503d6598d87ccc524
MD5 783199127f610efbbb315d28754d6354
BLAKE2b-256 debbc02d0be4fbd9414055c24f245cac1f0b94e2fa089ef0ad06d0f692710fdd

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f59a1c246f511feee763514250b42ef4285a68abc4d06d042782d951837abe1
MD5 484e7b7d1ef2f7f2435c84aed914a26d
BLAKE2b-256 c8cf4cf6905f08ac09142a9861ec9f53c2fd6a3989ec8ac0f91c46be2e75b597

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d0f0d994cf0291545ad7ccd10fb9910c045788bb84957d88219cf16f6e7e665
MD5 b3aa7338451f16b9796d8d8999e96626
BLAKE2b-256 23df3290651f264d8f19282d5e4dcfe8c889cbf7086100034e008692ca37d372

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36fa571b8e06b747c5d9d6066ac64fab1c46d4bf6bc73a12e814c789a104c8c3
MD5 e1fef10483297e2f1d3313180072ce59
BLAKE2b-256 768d3baf0cbdd7742fb64d72e7b644cd795579c45ba53a4aa67c1d50e2a7c185

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 187b4ca182d3ec8bc3959c2e797201b27525053261cc866c37a59c3c9bb0feae
MD5 fa2637812fd6dd57844419b1d21f7869
BLAKE2b-256 d98da8ef7561a93b8affb3796960a554f0153ce327dd3c5faa87693291e42471

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddc4c04cb37d5eb36c59be27cb4c75d5ba7913e3fedc31fc745efaee2792b61d
MD5 bbf22bbd97c1a3695a583ca6cf07dd3a
BLAKE2b-256 938c1de56387fa0b726198e1e5ae383e7d4486559021c9262eff5404c2709a4d

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd0f3cf2feba59dfd76034a53ec02316c8af812cfaa6a6b3c6916d1f22519569
MD5 2a1360a02be9a756669b419db79dede9
BLAKE2b-256 2ec8842cdda888fe1a2e83c02f5aed4e8384f851b70346180a357889c9e3d0c7

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8f31cf121b373f241360403e63497e7a803e02e922aa429bbac7d0b138f9a1d
MD5 7027d0e4ff333fe09572bff1082acfb8
BLAKE2b-256 4d8957b441c7a34d528ae297edd1c1eec1a8dc896aeb4f679994baa95731b176

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37a0569f083cafd4b636905511302f0cfae8a9b25d9530ef5d4a56c2ce96e48c
MD5 aa5f245661947fc7525b4737ebf3b616
BLAKE2b-256 0aabe4e3c27828111237f520b7e30b26ff5ae12c9ad480b64316be8bd4af4062

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c651fa7dcfd8eb84421368cdd5f6a3b883d70999015b50444941e3df07fbef8c
MD5 a1dda7df7bb1c9ebbe13b7cfd31649f2
BLAKE2b-256 e15dbbf0000f5adbb8bfc34dd9234642704d9bb7e2f87417d6038c6dee818ed1

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6eb7f755c6d23ff493651be2472ece449f6569da7889d1f336a2b95d006d5aab
MD5 d0aa754094aab74c87da12fb5dbbb2a2
BLAKE2b-256 976e73ab1d44a67385576d30b30c494dcd3ae154e80773499edff5873012d669

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e66fd54483743e21eede9bd065a7be66a4ded436e63fd03d308ca128a7109ef
MD5 cb285381d52f77cb8e3ffc03f0214650
BLAKE2b-256 d88e0fa2e87ce828e05c220dc33742d02fadb56064bb3b8dbed246a33d8cd0dc

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97caf12d43256f7a0345444b7079f8b1e6e5e67ec143d6bf5c95f076b6d62db4
MD5 2b8f06dbb632b83fcd52697d6720eff7
BLAKE2b-256 85eacf9f1a2f65e0f34e623c76036ecb452a5ea5d74f8a73dabea46e49470039

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a5ed522685d885fb978c591c4260e98d546e30042ca9b6d9e4e0c01c9b0bb04
MD5 6989e3f582fc50dc3f5592451d6e3534
BLAKE2b-256 7d17068202fa4f9c0f5e9dd955b16b47194240bd845dbd6797f73df903dfea0f

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41c81d6f9dc2ce0c031373a8732c439492322dd0bca96da30640b81542ab156f
MD5 44485beaa312c0f7d276b3c39042a8fe
BLAKE2b-256 bd615e0970b37046654bd9a5adf48ecaf7d46946a5633eb0b3b92b260d7edeab

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 878821655cf0e482474d7f05a0f58dadb49ba0dc1f5aba21c57addc3a4663ac7
MD5 d86fcfe43e7a292c9e7994fc774b48b6
BLAKE2b-256 c03e1a4a54693abebc1260867bb5bb2dec7734acbb9fba207973e5f4cd430585

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55e2619dfba53f668531d13601ab27fa525fc5ead5489e73b909f7fb764b1198
MD5 5b8192cf39e66938781c0f4e5f7dba58
BLAKE2b-256 b1a714c48030f7baa1e73f4d5fcaa43d2b0324e22acfc89a226d51a072ea15b7

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea369192cc5dc70c881798f58dd721917964c22e682ef3bfd88168770adc382e
MD5 08d101a7f26e5ce5a1d30392c53ed5d7
BLAKE2b-256 9b83b67308c18173fc18f01cbdd04cebd553dfbd2115d61d48d8f83ed25983bc

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f395eec15ebc0acaf7e137387e76fc4b6d9b736979cc71dfa87fe1bb0108fe46
MD5 1e53f2c2fbbcc657f007b3f1b6d4ef8e
BLAKE2b-256 a5ccc17029909d388c14ce699183da5b7dd8fe983be61d29a7ff4b891a24f57a

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d84909bbd26e01e9e0a0a1cc49c4b650a1c577b7995ceb3cb70817f53798e39f
MD5 af95df76a7d9540b9ab5c815b3ac3f81
BLAKE2b-256 26e0355c2f97af9b62ddb7a2fd4f43f970a5a67318b05ebe4717207ef60d9549

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