Skip to main content

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

Project description

htmd-py

uv 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)
  • image_placeholder: Optional template string for <img> elements; {alt} is substituted for the alt attribute (Optional[str])
  • drop_empty_alt_images: Drop <img> with empty or missing alt (boolean)
  • drop_image_only_links: Unwrap <a> whose only element child is an <img> (boolean)

These options are in htmd-py, not part of the htmd crate's Options.

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.2.tar.gz (53.6 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (765.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

htmd_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (768.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

htmd_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (795.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (711.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (603.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (533.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (558.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

htmd_py-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (764.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

htmd_py-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (767.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

htmd_py-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (793.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (710.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

htmd_py-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

htmd_py-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (600.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-cp314-cp314-win_amd64.whl (403.9 kB view details)

Uploaded CPython 3.14Windows x86-64

htmd_py-0.1.2-cp314-cp314-win32.whl (398.3 kB view details)

Uploaded CPython 3.14Windows x86

htmd_py-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (765.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

htmd_py-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (768.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

htmd_py-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (795.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (711.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

htmd_py-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

htmd_py-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

htmd_py-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (602.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (533.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (557.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

htmd_py-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

htmd_py-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (479.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

htmd_py-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (763.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

htmd_py-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (767.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

htmd_py-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (793.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (709.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

htmd_py-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

htmd_py-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (600.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-cp313-cp313-win_amd64.whl (403.6 kB view details)

Uploaded CPython 3.13Windows x86-64

htmd_py-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (764.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

htmd_py-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (768.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

htmd_py-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (795.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (711.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

htmd_py-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

htmd_py-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

htmd_py-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (602.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (557.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

htmd_py-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

htmd_py-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (479.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

htmd_py-0.1.2-cp312-cp312-win_amd64.whl (403.7 kB view details)

Uploaded CPython 3.12Windows x86-64

htmd_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (765.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

htmd_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (768.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

htmd_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (795.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (711.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

htmd_py-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

htmd_py-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

htmd_py-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (602.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (533.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (557.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

htmd_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

htmd_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (479.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

htmd_py-0.1.2-cp311-cp311-win_amd64.whl (403.6 kB view details)

Uploaded CPython 3.11Windows x86-64

htmd_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (764.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

htmd_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (767.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

htmd_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (794.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (710.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

htmd_py-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

htmd_py-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

htmd_py-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (602.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (557.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

htmd_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (462.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

htmd_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (480.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

htmd_py-0.1.2-cp310-cp310-win_amd64.whl (403.5 kB view details)

Uploaded CPython 3.10Windows x86-64

htmd_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (764.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

htmd_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (767.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

htmd_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (794.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (710.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

htmd_py-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

htmd_py-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

htmd_py-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (557.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

htmd_py-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (765.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

htmd_py-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (769.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

htmd_py-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (795.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (711.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

htmd_py-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

htmd_py-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

htmd_py-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (603.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

htmd_py-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (558.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for htmd_py-0.1.2.tar.gz
Algorithm Hash digest
SHA256 62e41a65ca2e107a504675b66306ebe0f60af96fddcd6b55afb70ab69d189a77
MD5 7f07bced57c571710edbdf550f5fe1bd
BLAKE2b-256 cb2673ea942a83c0a43764e41dfb14c3fdd4f777506d0623ff63cb2d853730d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dcea31bf30526be366da310f1ac4989638ca33c14e9b31959f84fd5fa98c312
MD5 96fdd57c4c3f1b04fcc6ef304b674804
BLAKE2b-256 a14a27b71d18339a35b263fa019d8865579a05fcdeeccc1673555e09fd61846f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe61728f79d1d69fa5917956adbc6eb59cc6cd9edf9af3a5aa5fe74e739e936f
MD5 43a7f63048b7df94ce3adeb8b19aa6cb
BLAKE2b-256 bf064b171407b2c2b975cc72a57830c00ed8be6d8a1c6243b75b0b17274b11d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f0474ab3dbae23620c791fdaed53cad692972500175357aa374ba7c23c73b72
MD5 b4822737e080c067ef4084d31a07f86a
BLAKE2b-256 5aa1142c16548e7829a4dfb043d05127b6ce3cbde45a2e615d65853f25940f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f650d17d7640d797d43b79aa7b6cd22e3dcad3f503fbc3d6608ab141f7295d47
MD5 a7065718b9fb2aa8b465cf51273ba2f6
BLAKE2b-256 645b667d4fc5ac2a0b515d36ff5669a76b7d55b69ee5156c285f36aa7e66eed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dc8e959d727b985b4b7705154f383734f62a76f5861e1caff7b45c735ee21a5
MD5 31da1f9382e33b3beb219f9d8e304b63
BLAKE2b-256 9dd252de2246e8b1a5af98826248af1812a750b83f0b8adf1ccdfccf995d5ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8423910abbae003b68a8d2b289f03e4b5a78603138e16bf6420ae509f63bdde7
MD5 d8dc7fec03030ecffed8efa0aa782667
BLAKE2b-256 48185be569f39e90a070ac596b7de80235a74feceef8b280e69e5903ca5817f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45c4825c578c0b2c689d190398abca16dff18b9f790186d22eeceb765aeebbb5
MD5 6aae012aedd7b5bc9070f619222b0a23
BLAKE2b-256 b8c29f7d112c4b82ed17ed76e389ef7fcd74cea927feb84e212026414c317810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3c3e7801c66a88bce6a4d0caa0699dd243ebdeb37c22e29992dcd6641cf95f8
MD5 899e78ec0f2310712aa17920e7e7e229
BLAKE2b-256 1b9a6b632552582983f0eff46418cf4ebecbaeb7f7725b1936c4538406764008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0843fd8eb7576ab7ddb39cca88177ffc5543c7c388689ec8d775435ff3e1558
MD5 081908f90a04fcadceb67b4cfbc993dc
BLAKE2b-256 a19a46d0b3793a3f1181fa226368e7ceb087d27c1e8d1bdc3dab6a9664aa9354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b7d6cfc0dc642d163e8377a6093f5005190739c6744751a99396895d4add229
MD5 71ba9a4cec33f5b0eadcebde0b42c725
BLAKE2b-256 6955f9c2f5ee45df9ee3e4c77d893a7388c1f6f7835652643469cd254d3d880f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a9a3436ce70e26807a70572177b8e90a9d1f0b4d0f36dc7c21331d1d950db3d
MD5 05ffaa3f16ffde634358b0af2f569621
BLAKE2b-256 0a8d250620937d56fecd6f315ceb665994f8c09fa4c005c7dc2c64526b349e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abccbb3c5755ef140b4bdd7a51a1c7e9b49b071f6054aba5850621e7ef5f169e
MD5 5ad1eddf522b05c37e49a49207a22672
BLAKE2b-256 7e1402fe68c68ebd44f72398830d082ee698834ce4d6c9ca08acd57d43ba4d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3be06b96f0e6fca9d34ff09a09f71d52c2195b4e936ac51b7eb0d8ec8b06b3a0
MD5 204433f699bc574cc7f17a163d58d08a
BLAKE2b-256 a218d8992cef116d545ddaacb24a0eaf4175829969b02733161243d7ac95f658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3950cc0b4990a36d791812c83bf5a71479348e4250601c59eab5d10ce0db39b
MD5 7dd2ce9cfba6dc796b1e09a6b77c953d
BLAKE2b-256 334f9d9605d542c14aa4a0084e0fded1fe4ce1a51e580fd96b1dc89ebb570aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4fa9acdfc82ecaf956294321b42544b70542779834e4cd13d9dbf2216491296
MD5 c079df6f4b63122e05e446950444978d
BLAKE2b-256 a5cffe49db847914909d52c7e8b0c97f6ed4985793b1d20931162091c52f95e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dae52b753acdbdb6e3bc13dbc2d50a4380169b441836d9430575bfe98825c3d7
MD5 3f721a94f1e18b457375911494217b8a
BLAKE2b-256 1badccfa4acf8688da2cd48647851cfc31de2886c5e13a3b2e9a658853c024d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff38078eaaa070c3af211abb74dd5296726ef4c48ec86fdbb5d6ded8ac840183
MD5 e4535c82c31496ca018798b24d2fbf53
BLAKE2b-256 4afc6f64ea4d5427d17a15b74ef9a59e60c9d0f397821940a0fa35fbbcca8e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1e5cf79fadc2a24af48928278b1c03299ef129e62c1d8cded7329894746e95b
MD5 9a43fb21d27dbd4cf70b54add4470727
BLAKE2b-256 dae784deb017e8c03cf29e56cfb6c875bb55123015d0337413475a2a1e28f834

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 403.9 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8600fa87984d70e42b0b00389cf3e7914a4c8218410e4167b092ecffc4a51be4
MD5 392305998e5c308520ad6f2cedc91d43
BLAKE2b-256 4eda1970c9a749a338018a06d2b35bcf14b5f494680eb3ee39c7095fc6753ce9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 398.3 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 83feccf0fcd5bc9d6067c2dd1bac502b75a6f36ae7b5bb16b53c224f80816a9c
MD5 4c7933c3f449ad10cfac5450b46dae01
BLAKE2b-256 6e7e7f781e96b96d4c1883688562e542f0d53b5bcea613b2d97408a6a52a6f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d7b9f286c8a0f40a7fbfc0d8632472f40864e4373c4e07611907549c1dbf591
MD5 586f2b6028ebf65f92590c91dd2cf78d
BLAKE2b-256 7b26c604aaec413064c5dccea9745ae60f4e53a192fcdc91c2a09c697dd283a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30f5c17c51b2a8fa19a3c46790e53cee24a89f332eb5cd19aef6d84b3ecbc677
MD5 8a3ddeac30cafb61758dbf35321b396c
BLAKE2b-256 aa50dc83777cf58e35f928557161268aa0f1e54a3d581e59280510cc481cc9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f448e37c7fe8614de84ffec98235c0b08bbe3456272c69a9c4bacd4438cad94
MD5 5a1919cf6a4c15770bc961d6661f7a09
BLAKE2b-256 012a6909c06c483c331abb1f71e65b9d1acc7a9bd2967e5848578ce15722136e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e5563d6a06a06ded8c7ddf59b57e0ad224bb11d58159d739cdd17fe7d4ab22d
MD5 52009ac9c8c1b0d8034b1e9160e98d6e
BLAKE2b-256 4792f741862805187f693164c786dad5540266f00ffaa215442df1915fa7eef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8570fc71d5952302887e9a127fdfb2a6eb6bdccbf3a913f34c5c32d737d42a0
MD5 ddcc58ed44e27bf4bfb2454f079569ae
BLAKE2b-256 5b300557a94a267f2a99d6d9a2320d91404692dbddea4c285a2807f0ece585cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c58c489768ef6bd6c240b8a6aa786b3e2be8e4ea01b629156d2b12fa2822a45d
MD5 fe7ff0feee6344456be4c3b72064d8b0
BLAKE2b-256 97b38822c28b002cc0b0ba5780ba5d71417735fcb9c529841694ff0a9398ff30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c5dc2fc8939e955a0c376c647c72bbeeded685a4fb629d85c24207532a3143d3
MD5 abcb06aad72cbc9cef1ea084f51ac9c9
BLAKE2b-256 56dfde3bae25a9bbeab74d302301d70bb1a31c04346709d8f6e500aecaa74c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91c8ce58c1091d02263a61b0b067c152577b11f800b82d6834005699a719f968
MD5 1ba8262c73d0cafedf8bef9bf41d8f68
BLAKE2b-256 8bcf28ae75652a46d5098360e631b766bc52ff721b467a16b16cd6a2bc496401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 430d39e247caa0da74e660479e1f7080d28a1b44430f191203088cc05062d1b5
MD5 77a53d5e726d19438ae4bc8612233ae2
BLAKE2b-256 d6d632f709d69c738b470f38105960104baa631efed2aeb75c9ae7e03844970e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7550aa45cb517330ca86b84a242685c676afce5fdd0cf91671fde3d156c0b9a8
MD5 ed31405ffdc0c381895a5c4db3a57379
BLAKE2b-256 c22791ae35e576a03c7efbff0205ad643db6476789d82d9298d02b6817f4da5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cf7b9afc4f7a39c117ac26ac4d5dfa11f11bb0c9fd3aada587d612bc0822e3f
MD5 b06a94f375a54cddac7a274518f8778c
BLAKE2b-256 9f4f371c8537bef873dbe92c287c9ac653763bf603e0b1735f089a9f6c4135c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8962c99541cd0e74dcd62a98ab811696072f4daf7d3b1c9b46e34325b2b08900
MD5 f620db3f08d0fcba051fb8bc38162c61
BLAKE2b-256 51f8c965ba3d25b3c6c98914dffbe02d081e076dee479f5389fb25bb7664b850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90bf3316ff5493e89ee1c25c1c52e7af24fd29fe81c18232388ee5d5bc1a8010
MD5 113352a499db748c51625f428e3ab65a
BLAKE2b-256 79f2a9d88a52c89eafed68acd1151410aa43e4c2f30bd2c3aaebc4f9ccb371f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 990eff0f4689b2ae5abcc390ac5d84742516d4a3f345f1938bfaf2132808f10d
MD5 f33ad02af2efdeee04362cd4d049b032
BLAKE2b-256 7a70e0527a6b920246038212f03741ccc8437a424f0e61b5acc85771946e07e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ffcbfe1ae994f8e3b119fb4969547cf901e6ae8abde873148d89f42d522cc87
MD5 f738126f57f48e909b19d6e477b33172
BLAKE2b-256 7bda05939f6c994d5c184483d51b299277c423295ca1af740f678cdf6b536d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 599f827afca2c85b9d9c760fd113e37220eb5cb843ea83b5897048882e4e43c6
MD5 c6d3eaf6fd593063fe44aa8870ddfbdd
BLAKE2b-256 b188b91d644273d7737b1c77df7bcfb29a620431e5b2bc1dc4d4f80f05c33c98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfc25bdcbfcbd110a3a21e6d2ae27db2e2248ba1f1e5cbc24f0cd0756c6889cd
MD5 0853c2f30e79fb3cc0fe3e349dbfde61
BLAKE2b-256 16be18ec56ba23e5cc72af05fcab58373126e081b721b091cb64ab4a3395b8e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c72f2172c769b053b30d88b2165b77f39b7cd87f0aa7ee8a564caf02d48b8cdc
MD5 1fc44d906ccd27e3e2fdc1286fa63999
BLAKE2b-256 fcacaafaa8bc8630c840a0b2e4030a676b467a9bbd94af34a4f2d30cfb3d0136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3570c7116a99f787702925f8063445bee0a6764cb4e6db9181fd958e99ae7cb
MD5 38b69e61c80d6a99412330a25ca5c4bb
BLAKE2b-256 26b0bd02bf76617503126595c56587171411deb71b07b90ab4fc107e2d4d7933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0dd5c7f6edf7fa9e4cbd88854dbd0192901a30a5fd0ebccf37ba77eb36221ac
MD5 9937e65e433e1130909f7f5711c1f8a1
BLAKE2b-256 9eeaf7340554c0dd0bbc92d95d69e3ab8dc71e5c3935cb3f0c0a2814605e9ee5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 403.6 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c9dfdc3bf415c87d4aa1217aa9b0c9297705cf141f90b0d04f1acb15c76054d9
MD5 63e04253c48d0e4740bd9b4f21504799
BLAKE2b-256 1d3fcc9823b7b038a0984038203b2c444513a941f24f48a023ed57fc951cb75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa1ca8908273cce748fc30f91d81ab0c223f4e29fc06d1e43d4cd27149eb7d9c
MD5 85e8b55175dc473e98f6b7a9e58e65fe
BLAKE2b-256 abff2af1acb29c253b6ac429658446dfb84858833919fddca3cf3c87ffc95614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd2e96bff5339a602d391600677169b0826a99df0879ce8afb3f9b4ca791e99b
MD5 a19392bafe2d8ec89d433719829c9467
BLAKE2b-256 48044cb1adfaea2964cca24a6f39789af47718d6ca2718e04d9208f39da9d006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2113d7927e480b3e30875cffe8e7ca1ca27092799217dcb77252b635edd3d279
MD5 9e0a59bcf4810430eb78ce9d037ff707
BLAKE2b-256 5afcb17d1b3b18ceb1b14574287e3b2af91b542409fea07a23e96492333b41c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aae211f3eeba9a2640532a4df779ad24685eb17ee7c27dd94cbbe09bbf7f1ae5
MD5 361f56f78c43245632e12a697b7517e0
BLAKE2b-256 d32fa78db74fe9e1a7e038a027cf0ecf884f63828809d1cc49a86ab7e47344a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3adffbf06854e3219b5b459698623ff404f2f92b0780e25e4a5bf641a56bb105
MD5 c598e4303dc150424b50030b4213fc3f
BLAKE2b-256 cdd4a782f0b786d07ff2833e4fa898fab6bf7211461f89c9bbefa23da1458398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c712b1e4097dca383150607d3e548250a81a3e37ef2066a3c1b43f27624a769b
MD5 dc8970f3d2aeeed4a5f188dcd02251a5
BLAKE2b-256 058f3a0bff9435a578203edcf2681d102afad268bcab5133a7f5dbed1deb25a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9310903f784a471c5402b135a03863e786e54279a854f2d24282fd4351fcd1cc
MD5 dbbc9e7046bffe85f7073f98f57955a9
BLAKE2b-256 c0124c77ca69764409917dfe394d4d0a410e7c8b43f80b0f4fdea5aaad03bc2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c21702a2d02f898cee7e1111bf2bff776cea8ad4708454bd42726137ef9a7675
MD5 af06f5a53b1eb7eb2878447b767fec8a
BLAKE2b-256 ee0083561f797c46ed9cb8bde3167e3f5e8aa9c2562a3f84bf968700f005a26e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ddf3a4121c061b4d66fa9d6f2df59748cae1f440f0bca0efb8f4c2ca7e6cadc
MD5 dcf748dc18378c7840cfcad4b54d4361
BLAKE2b-256 a3507b450d0ed09faf2dc407e994c7a2ec6f3e240fe3997bd4d70a1e2dd6194f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d54fe8f97ebb8cd31185bf0884a7f4cafa1a5f465690588190767cdd3cb8df8
MD5 c1f67bf600e2eaf3a77a948f28364821
BLAKE2b-256 7e4b362c7cf480270d9a680f451912996f3feea674287a0507b009af1eac2a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 429ad233988d4b657ce91c23bf5ffa436ea9f2fa077c9a1ae3394d1a6ac46291
MD5 9d6c28476f5789740c14229b10b091dd
BLAKE2b-256 823ca6a347f4a557fa5cbd6d97a4e642f9d4e30082fd01b68f9a7244997c3cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89e8b14bef97d9f680c4046477fc4e1fffb75de231b7e96b00b6f18191ac91ed
MD5 529b95012791dc5b7b29b0693f1fcb88
BLAKE2b-256 0ef73001eccb2e16a392f2e79a72319d1860f356f0a5fe422b945a4e0e20b03c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 403.7 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 faa3b2700e93e7bea93970da57b83ccb330923d151852791c2ae9cc220d106eb
MD5 5b1a58396a02e5c5ad04201548a15da7
BLAKE2b-256 c8629046127cea9110d751b0e7e62908fd7eda778fe9f296fbbd287e80e168c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3955e77e810d474c1416e0d2470582345ece21fb0d22a6bd9362c903073cd30f
MD5 f54ef7cf9ef42536c006ab51950b3b86
BLAKE2b-256 2d159a2cc36de882da490363372c23a94fff995d5307e1c2174c30e673a39d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb54d4528739df350ed1595d4c5841ea56da7b58e8ae6056b895b2cc13d6cc5d
MD5 bd5beda1c936bb0c96b706012ed33461
BLAKE2b-256 44dc55f91b0065bf2f51862897bf77fd3fcfd02da75a552b53eabd2ea31c0bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ec65cf9026108eb018e278d85863d4b6daac4acb1f08fe1d6c6b6c7dad31860
MD5 6367748c56354ee762f468f8a649d04f
BLAKE2b-256 ec3497e2adf297696e759e877dd2d9f2ed67f9e7ea1204ec477ba67ed0f1d675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd5403b4c656bc5897aba8d74058fde3583bad2a45794e4b6d583f8782fa370b
MD5 f32967539fbf98f39286ae586809c71c
BLAKE2b-256 f5d667d06b46f4efb17118266c5823070dc32a083572d156c630987f2a0fcdae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0188e7aa7282503563b80d48cf6205519b661182da1033cc174f96a4f0dc9f3
MD5 bebd6a53a5a10e319fa6bd6dbff1a2c8
BLAKE2b-256 56e10d8edca367ba2e8f9c52e62d4f59a7472af29340f5e4131403d7c280345d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9018e69861168608644783f3f3441dde04077e81de00135b7777d62864cdb666
MD5 c1ef9b4d113e647388ab8a958c2d2213
BLAKE2b-256 94ab115f6cd985d22b2255183586654e2c30f2e3800f6c3171b20f1e267a87a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adbc674d0fa83b0ecac0b0e31c0f710ac99da16a40e5bc93d18458b4c496ccbc
MD5 225071fb54ab2b4652080cf14820f47d
BLAKE2b-256 a0a5aae0e0948095bb473beb09f9e162c8e4474916b5d320fc61a9e8ba868008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96c88f42074189a979f63f216305c5a867a45be5f564d1373bc7a4de11e75f30
MD5 ddcc9aa56f88507eafc4d21b3d54f434
BLAKE2b-256 8ebb7cc943f032e92a1354f1d70558d4fb6621a7e5e3869c3372718fd11fa650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe00c7915f1d3d5e9cb9c38c1ca400b13d0cc16d8d3fefacd1e7097f784317a4
MD5 7ac07e99aa8929fc1b82dd61f94c8d42
BLAKE2b-256 240009527fc59fb00a3804c16b186e532cb5f3b3e6346890cd1feff3e09a3423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f9b18020700612e573dd644e224ea83435761bc6ed8688f4f625258cbe41d6db
MD5 2583c00892838fd08e268f2d78f82b83
BLAKE2b-256 3b380d429fa0ea5afa91b70f043ede19b294eb049bc0cd1985c9e217afe091cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20c60752e04a5e4dcbf96876099e7369b2c287638ff72b2416cdacd8f917ca53
MD5 9f1ffce3077ccbfb7b3460731b86d5c3
BLAKE2b-256 78dd25b7e429cfdd4a5a93f572acaa69fe851486da8a8467f348b6b78917f2ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13a23af95ce769a4ec55dbf4b2bae90cf42fd862266bd010f74a95c62b736943
MD5 7f22b54bcb23e10391c8262fd0019693
BLAKE2b-256 ef2f994ae3539062ccfe40c344b648452b5a0c6eb818431160111c46eeab9c1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 403.6 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf4cb166b8bd45036e39825c658faf7204d1679b6f73f17eee5d49cdc8dde8ca
MD5 812aac8e6ad20bf3ad9610d401338ac3
BLAKE2b-256 f520e8d86ea2b17bb6fab4018a17b2d9025f3db11cdc239b7896487211137f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d9631fdc9d06e1e380599002e2c72740acfe71f1d8b81a8aca6b0cc954d8070
MD5 7ac9f5f66cea3b5df73ce0f13776fb59
BLAKE2b-256 e56ddfe447f11a45eedb61999ade6bae5140477744bc0939dbf8bb926e25d763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cfbccea2336a90ef53cf2227f5b98e08614d2d2c02d725b64f92973221b37401
MD5 472dffa8967035baed53ef9989072341
BLAKE2b-256 4390d71fddebbac6e287ced836423b75d5afcbfeb42239f5dc75e264fd4ae3af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b322aca21c6e1cd0855565e01452bff218cea6b71bf33d33339f27ae8e3ee32f
MD5 d65f31c016261f9a48b75d717953517a
BLAKE2b-256 6107ec0a0367ade52065b1eac88be13936f6266279bd7a51c0e21fcee53f29dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d84214cad1561bd2a2abb5184276d2c5648b291aab165e6a6e9ee103611c9ff8
MD5 974d54ce60b54c90960a46fa9f31d964
BLAKE2b-256 36a09708e8b68783b2eddab06eecd72ab0bb8df9ae0fae0479e3cd1deaf55c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c0190e496d5ee7a3e154fdb718afbfc110526670f06410edb67028fe5cdbb0d
MD5 7af461bcf1d6df7c099dec17cdb0bb47
BLAKE2b-256 46d81d959c05ea088c544314f81ff61642371833685c784596b98daddb1cd0fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d43af4657e9b99938425ef8570afefbc52a6c54489c5d6b17e39c8ab9bcd64d3
MD5 b07015ad93a84895c0fcfbcedbe54de5
BLAKE2b-256 8eaa15953544012c67a0df2bf725a60e5db37044bcc29d70417a1b35d3a352ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 baab70fc224951ccd1a5efde124202ddc8e03b7a60be29e70784744e669b2ebf
MD5 00b0aba819e6d02d08348dbbd4d648e2
BLAKE2b-256 3f1a515705c47b0301539735a42f99e0239f19b64d4d5805932c4b9a6c3cb4b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05e348171ae68e7b68dc4d0aeb5d458d7bc6cc342280910e0fc7987878dc2d76
MD5 37beaeabf5f88584a56805ba07a5391d
BLAKE2b-256 3cb82b73f100b5c6791c886b874232acf70366beb6508160dae2282296b79bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65cec9d33419b62be532e9c6314215f952019066cdd617b71c3d5a47fce098cb
MD5 51410927b14c0521a7023c9baf7c2b7d
BLAKE2b-256 23d5c93ecc94e2cf0dd8f72cb29f5b9ab889757411dab302f344af0e86a5595a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8dcf7220de09307676f0b16366bed91406debc8c186685c9257e1b5d2f61b928
MD5 b9074f5ed97d037c89d50a9b362844ab
BLAKE2b-256 44fd5d026630d88f326fe9d47f4925c025cd0836b596e1fcd372ae6a28384893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aac2c5efb9497783309c96fa00ab75b88f8370c2bbce1b5df9f13367f5792e59
MD5 8c0c5a7ddaac015983bf672ed1b8aa00
BLAKE2b-256 a6ef9cc526ce63ce6e988462f136c0eab04cbc6d645d119d0882c1e79fbce40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bc039ef03c1bb829f935158b45674753853cd66e10b350b343daef3e70af5039
MD5 b67d858b05f384213029366ef3d26cc0
BLAKE2b-256 6e0dbe87077264dc758c299ec0ae87e93cfce1255627074c151654f2c9b21699

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 403.5 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6afcc43bc8aee0e2b4b02bc53f8c22f264d0b8039f5fc453da0b0714a2b41693
MD5 b7ec60227028447a2819c994e38d875a
BLAKE2b-256 78b287da545ff38a8762fd0e0a765de407de93a9e8c21e892be4e20637a7afd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9026faef2db4fc8550f0235b078157bcab1389015ce9b8108b370e9a5798b74f
MD5 20b0fb32fbaaffb8dd71edce32e2eab9
BLAKE2b-256 d638ea5b52c1d96f189548396b9c42bae21f3ccd5df3de960c1226c50f5895c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd3bbcab6d7cc0aabf11eac4d25fcf649dce35106612b25ff0f0efdbd1f63c12
MD5 dcc4ac615c931841581855a3aa6d3087
BLAKE2b-256 be9bd106b7dd4c21972ad9cc748b42668eae06cc6949f5f202d8f3b3cd621fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a71781f2b8d8404623354f51e5329de18bbab8498752eb221f5b78f69557d20
MD5 520eef07a84cc624733074105e27c985
BLAKE2b-256 68425d4556499ea580b5db429e534451bd07e4067fe538952b5a1c2916d27af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57554ad3534c7a1c261b6b0a41e55992e6e4629b319f41b83a1202bb5ba9712e
MD5 70093bd5d06e35845a4b5ee9280e23d2
BLAKE2b-256 e5350bba986314a2a64ef2de0a36dfde1e496e2f0540899122bf7362fd6ace0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da928e4407a5a1ac0faee71ec0638b74c6e8a6b6915c39727cae3f9d5c705b72
MD5 671f1f0dbae7b1e510c34f20b13ab0ee
BLAKE2b-256 d50cc08ad2f98b42baf219e821335f29256084a77e51313933d8af8ff62ff4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 acf3da4e40920e38b214cfaffde20d848b45ba582fb152c859e36e59815c8c1a
MD5 6c842e5315756001038d7317f7eaf1a4
BLAKE2b-256 2ee69b137656519132c423b31d5027bb3a8d3572e61134980a4dc46aa9f99642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f070ed94a149049dcb073324fe204ec62af5da86daa8a29cf0fa95191f1de562
MD5 5bf82ee29902a5799de02bcada8ea4d6
BLAKE2b-256 6b782ac84462e3c6a57c73277ba03f7e90c58311f262e14a3d262c5da3ceb6eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d151b6f2ace525bc017c740f94032047a7b17446970756a31a3f32e82bb3cb1
MD5 f74c0467ec7bbf813d1f10c614753aff
BLAKE2b-256 a728ade53b6218e0bd521e369ba579cfacfb65b2b1a829e9fb2ee9259bd3506b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28bf1cbcc7d11309bd53bc5043dc1bb2b2299e2d9c632e288a9547c009ac2d27
MD5 671663d36d74c850697ab3fd4336dd91
BLAKE2b-256 7ee8f496653aa4af7705884be0a86f8e5c1ff197790d79d41d6bb2c6c3a44998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6835b5a5c33974130da69ae73db87453368a5cf3b65a7a890a8f29f4c2a67a4e
MD5 62ec977c22b742f03bca160e757ed7ae
BLAKE2b-256 ef134f69bd102b7cd90ac1bcc77bca37a5c9ed22da60dd66c6a7fc64902cf05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef8420c45f3afb538ab168b63c789846c4edb8e869793ce3fe0a47c56f066c33
MD5 9919dba67b1935e70deef230de793f96
BLAKE2b-256 5500eecfcc41ca5ab3d77171020383355f45d63ffd5ff6cba0d23498398c4bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 036dea433e501770c11bddb26bdf8dbf58acd2d89e062bf8b66c1896dfd1eff4
MD5 f3eb818ceade6854a645bd952959a1a6
BLAKE2b-256 13693f441a56721cf57640c2fe058f00fb746cc905d04199e459719a412f2efb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb0f4c85955937e0c1a3d7d790efcfb50481f4f8319a8d377dff04c6133d4e10
MD5 70453121af00cc7439258ce90baac042
BLAKE2b-256 6a95e6127aa82b91d598fbf54443636ae1f37057fdd133c5d2179918befb0ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3303cdb065614b718972f8deb586248c147ed328557e00eab3abb877b46d98b6
MD5 4ad54e4cf0b1c2904561bb2dc4dd395b
BLAKE2b-256 bbd962caa0ed26ed26336c9767faa156090dbbf96f881e9bf1f690000309e8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 149bcb5fd5c211d9cdff8678310304b89083193a42ed78323a89b03d7f719e63
MD5 e3923c7f5b03789743f36529207e7c62
BLAKE2b-256 131e7e9646ed3f108e93b430b3f1f8540eed27a3b98ba6a88b8646d3a548882b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07a27e3347b537052fa097de17f330f97fac1a99f6a774bac3e886d03bd0ecf5
MD5 8ea0a23b13c7dd35634d30b44d5f224e
BLAKE2b-256 bf463390fd9e4ddd42317b83dfd63605f6c02c8b31b5a273fcf4304372bd2213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d087d1da0ccbfe677c50d830442ffb284acb8f9a5b237ffd0addf8fc229a82b1
MD5 836c15a8941d0dd11041e62c4b3a2c56
BLAKE2b-256 e5ebd267ad2dbd8c15f5ac328a12abefbe48a4669121a82db743e639c0df2dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33066d07410f6b7b8a105f86d4513637c038692264f716b0c8342e23677cf578
MD5 5bfc302ec6a5ab1807775cae305b3cf1
BLAKE2b-256 6aa405cfd8e04f16ef2ebb2629762ff95e27725fd3c1149fdb3423b8be636d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7196b583ff6407d798bbda4e078c4873b7870f16d79ba265804446ba4a506285
MD5 957cd57aedaf1f4d478aa030d0abc9a1
BLAKE2b-256 2d67802ac06e40e9858b4443dfef29d15422bfa532effd14f739e31162cfb612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45f6dd4a1bb37f3c0a38bb8e095e88312c9641928d4eb9124f0472be426c01ba
MD5 4cd065849560acec5dc993e4a4c2dce4
BLAKE2b-256 62d3704cdbba9c3fff94b9a6935304bded1740224f93368213924aa766979590

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