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)
  • preformatted_code: Whether to preserve whitespace in inline code (boolean)
  • 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.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"

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.0.tar.gz (44.7 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (668.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

htmd_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (669.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

htmd_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (731.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (654.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (645.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (467.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (474.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (498.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (668.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (669.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (731.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (654.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (467.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (498.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (668.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (669.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (730.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (654.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (467.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (474.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (666.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (666.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (728.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (651.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

htmd_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (644.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

htmd_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (535.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (471.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-cp313-cp313-win_amd64.whl (346.7 kB view details)

Uploaded CPython 3.13Windows x86-64

htmd_py-0.1.0-cp313-cp313-win32.whl (349.0 kB view details)

Uploaded CPython 3.13Windows x86

htmd_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (666.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

htmd_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (666.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

htmd_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (728.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (651.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

htmd_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

htmd_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (644.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

htmd_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (536.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (472.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (495.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

htmd_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (406.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

htmd_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (421.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

htmd_py-0.1.0-cp312-cp312-win_amd64.whl (347.0 kB view details)

Uploaded CPython 3.12Windows x86-64

htmd_py-0.1.0-cp312-cp312-win32.whl (349.3 kB view details)

Uploaded CPython 3.12Windows x86

htmd_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (667.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

htmd_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (666.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

htmd_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (728.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (652.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

htmd_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

htmd_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (644.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

htmd_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (536.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (472.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (495.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

htmd_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (406.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

htmd_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (421.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

htmd_py-0.1.0-cp311-cp311-win_amd64.whl (347.9 kB view details)

Uploaded CPython 3.11Windows x86-64

htmd_py-0.1.0-cp311-cp311-win32.whl (351.0 kB view details)

Uploaded CPython 3.11Windows x86

htmd_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (668.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

htmd_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (668.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

htmd_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (730.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (653.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

htmd_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

htmd_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (645.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

htmd_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (466.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (497.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

htmd_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (408.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

htmd_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (423.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

htmd_py-0.1.0-cp310-cp310-win_amd64.whl (348.1 kB view details)

Uploaded CPython 3.10Windows x86-64

htmd_py-0.1.0-cp310-cp310-win32.whl (350.9 kB view details)

Uploaded CPython 3.10Windows x86

htmd_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (668.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

htmd_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (668.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

htmd_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (730.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (653.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

htmd_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

htmd_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (645.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

htmd_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (466.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (497.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

htmd_py-0.1.0-cp39-cp39-win_amd64.whl (348.2 kB view details)

Uploaded CPython 3.9Windows x86-64

htmd_py-0.1.0-cp39-cp39-win32.whl (351.1 kB view details)

Uploaded CPython 3.9Windows x86

htmd_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (668.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

htmd_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (668.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

htmd_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (730.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

htmd_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (653.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

htmd_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

htmd_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

htmd_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

htmd_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (466.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

htmd_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

htmd_py-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (497.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: htmd_py-0.1.0.tar.gz
  • Upload date:
  • Size: 44.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6c9036183c43c6a45d517b4c0648d8bdbc967769c080a921621a576154837273
MD5 eb06dfba2ba1762db6a4e29023733835
BLAKE2b-256 43da2a51b5c4a64fd8010d6b391b5f62ce3f766aa8d6fb6dd3cd20de976d85d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5de1851de7df657528a8db23b5e78a6ad67a3ad9723717206f126a3695df1f3d
MD5 c044567aa035882ce846eb759c316569
BLAKE2b-256 11cc3309217f4a47f14c7d8b93ab4070d3bdcb8070bac32658330e55ddbb1218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61393a233da5bc1e3e30cc8c1bfb0a03212d3ca108786b4d55df04be3d1daaf2
MD5 17f107ef71547c179e4050b3948bc7e1
BLAKE2b-256 1e190f647a51b792da2954ecffc07f4002fd69a22f930e2b4befceafadcc63f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5eeb439acd4db69750861a36b104c3991d49f821b7dd46c33e40ec17735ef2a
MD5 3ab7e0b15ace82352da18de69807d0f6
BLAKE2b-256 d267db2ac23994b362b8ae984f4ae1a78b91f71976e42c6f6c4c2c3373567f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdbe2cc89799d4c0b9c63067e50d2532b1f358e3938a0bb82cf7093c50aca470
MD5 99484d34a2bbff503f82524fd33f17d2
BLAKE2b-256 d194761cccee62dc7477823e5ea6ca42ba90fb12e9b1a20de411aeba697aaf22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6ac94acec75aca9c4e069126dcd364782eec69b7b253911d69452c7c72378bb
MD5 477d3bf6d865cfac6f3e64a549c1ffdb
BLAKE2b-256 b3217eec3a1ba62aa6374359f5ef5a2c2041899031bfcba3a8f490cb4002e5f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c075b2a82461e41458d55eacfa26daeead86923dee8daa99ddcc47bf6b292b8
MD5 8f959f2a895cf657bd0e0c73259eb192
BLAKE2b-256 7fde27b6e3739ca6ac5ae60e7164439f8ae9affbafc2b5bacac834627d1171f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d470ca8a2126f323ba966149b3a3f18058162f2b153b2500950c3e5071a60761
MD5 f7bfb001c061d83a541afbb759135723
BLAKE2b-256 bef749cb1a61e7567cc57a59f7dc844172cec3d499b0da4289c3d3a32a08be6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f1d9f627c09fe22550a3818655315594ea5f02f9fb3b2d07b77d76877217ada
MD5 bd67294bdaf9f91183f65cf1db885d55
BLAKE2b-256 f736caab904ee9541d3df781c0bc41485d720b21cffa7deaf15fbab20e38db46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9904a7f7d88b121d299d3c71eeec1742207ab6b84be8e7d45c00ade49d91c371
MD5 766452f85a9a82c00ddcbbe7faad5de4
BLAKE2b-256 b6a6fddd3a4c6f009fe51113e7ff053c42121d1cb416f2e9dfa64a28271518a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5488239f9c8cf5cdf7e019f6f01db54e8a8df3e9ee34c9d20579eace4d7bf068
MD5 1fcfd080b4c594cdb10d6dd11bc801d4
BLAKE2b-256 7acbd97bee3b7b4c1df6231dec22c4694e84bde701d5e26e9e13b8a7c51da8fd

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dae2306afbb7c42e8791170de242fbaa1910baee7a1427efc1cad95053967176
MD5 e958f7bf8d77f1eaae81d0844dab52e0
BLAKE2b-256 b9f231664d74ae9fc06d5ae63489630fb763bfad1466eef00587e56a62940b59

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 610b5c66d6110a273dd32a00050f83889615cecbc9efb664dff549416c6d4c22
MD5 ac6e05d065ecb996741c96da60cb0b8f
BLAKE2b-256 eb04efddaacbe73b54a6ed143879399d93084e29b939e3809a38d0669278e85c

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 287ba4bc316611fdff5b0bf7211e466d6f3c9ffb96ddf788a302a7510f828317
MD5 71622798f284a8e27829870984069c2c
BLAKE2b-256 990b66eeebf99c3c87e11ac083b7a7fae0b97e7525d78b43a29044fda2e23f71

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0031dcc3a820a22dd2d236126ebadb1e7726df12560af8eee5e3d45e9fc40b9
MD5 138b9d06aef43bdef1e680a51a94d690
BLAKE2b-256 cb2b29daf90b151d37fcba2d6af1aacd892bc20c2e3a5b8d0c7df0c682e2a0a9

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a5740dcd4ef0c8ac2185a9fe4bcbc729f738baca20a1522c4a24d896edf196b
MD5 4255a512c7821cf8a6794c3b4c9b033d
BLAKE2b-256 1be97598ba1f830c8ce83b706ac3b016034980042a7372ba2cf0edfbd0a093c3

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4cc2fae477d806ebaf04831c828df166f414d512949db7da0fb003eda014471
MD5 451d0756acdecd74a2510ae56de75006
BLAKE2b-256 3d78461a65d77d19017ca411926aa1eb5e5a3921494e498d5420eb4cb8534be4

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e8b3b35d9581238c6c7eadf535423451b6ca36f99a5106dfc188c973fafc226
MD5 68fea227c60235c11fcd09f836758769
BLAKE2b-256 d5e082c4a33bfee54efeddb5f71c066f1464394c49da30ef071dcd5b4847e29e

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f65aee96c679c271bb8a26d568d4183f3c92d8af2533991bd882ba0803708bb
MD5 22a55ad5d9652432dce420d8252d5f17
BLAKE2b-256 4fcf97f3faaa0cc4fd7c81c143855f1512b7615a279f938529dac4f4b2b1829b

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aed41735cef6871c6c159494a22561c01df2a6709c053cb83bf1f7dd040e5b0c
MD5 8c13c850c860acf17472ed0bd84ef4f1
BLAKE2b-256 fdf157662fc8f76a0aca485ebd0a8007aa732306d0384e0e167f89e3e561eca7

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50a0b720dc59ba40b7e31ad5eed1c683fa64160b9521b3f058cd15e232b13999
MD5 475c4d04537a7dffe945c8f879a9eac3
BLAKE2b-256 5de98227b4820c6dadfc885fd4783b9ff7594796eb5d1b337e7aa48d83e5149b

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd32cc4899e38364f1b7be9581112d75a238e4ca9bf6c9196c0482726b7dbc74
MD5 47877bd14d0995fa1b6445833c5206df
BLAKE2b-256 0acb6bbe1c50d45bab1904412b9242bf617ed42a9ff9b42ea2b1b3614714686f

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b1706b1ee30863ae93a713b45bc0d4b6e91c87f56dd014e8c0ae7921208b363
MD5 b2b25043f3207aecf83b949795fc96d3
BLAKE2b-256 ba320e122a959ca4a3e0b71db3b048188901185d1eaab075a76d7cf0ab7a0c04

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a85d16dc54b532834b4c4386149e6af1c12571fbefafede7b0f06a8965dacde
MD5 878d638c018b316e5ec8d324de799a04
BLAKE2b-256 e06f9817fe0b7f19fd7f1a068a1ed097774944b78f297caa4e2943421b73b7d6

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ed6d28a19ce2709c9ea5a371200f5279b8e21bf6501f18a12a2ca32740afde4
MD5 026631e8fc8549471191e5b20dd9435c
BLAKE2b-256 cfc7dfdce33ed0c6a2ae69395ac028fb510fc03adddd0087f695c6490d6609b4

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f5eded57a4ee416eba28ca35241ae3ba4d01d06e32c795ed951a810b5851d95
MD5 84449fd2712f079e911871b5af1e3498
BLAKE2b-256 930bddce3b56ea8518b78175bb367ac3b9bf9d8523c243cd80f45cd56056e429

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6feb6102fbf749967c0d7c8e1a7eb35ff0ae087c220dcc539cf5707dce974bd
MD5 46eca52303a7cae5bb9eaf4a6c6344fe
BLAKE2b-256 9a8a65715de9ce9ccb62d49d983d543632086b49ab896dbebdb72cd33dd5ecb5

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27bf14ddd417778d0650d8d8ed613ef720d7d9c8fb3a9bb4c73c95b9bea7c7d6
MD5 0bb424f109614c66f95adc2af0940885
BLAKE2b-256 fcf01583c4447a4136a3b5e2b3bee248766af23357a727642531f864def8f9e5

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for htmd_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07db4f71c73e6bd29c72a7ca35fabf117fb8af0d642d2a31cab06c8d57812b50
MD5 11bd8ce248d7609e3c6259d2cf641e0b
BLAKE2b-256 0343f0307831227066406dba01ed606f4931cba74cc24ea663d4de73ba7ba5da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 666.8 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90718e912d805e3a1371fd2c783de61ae494f37ef92514e24af236456bbcb584
MD5 bd564bb05b24e749ad736a8135252e51
BLAKE2b-256 98de55e3c8d90d9d36954c51196ec75b95dfd9ece4c0d30ee7346247c2573b8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 666.7 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db2e6d96525c17db51d2a0dd4fcfc8508d81f58d77268baa37ef77bad24d9a26
MD5 8dba8f93310a9c76ca89fe577bc71a6a
BLAKE2b-256 1e1ebdc861a42c54104175217783cd698e5f4f9654bff81025baab323a878334

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 728.0 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40f387feb33b3dbe8d2864a3307f5fb9988f8bea6df709f1f511027dc8845f66
MD5 d535d3b90be41f24f08dcefa8c83bdd4
BLAKE2b-256 cec0797e6aca5c353d6ad9e59cbec1c8e441d4e6481635c6bed5f812a9303638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 651.4 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78b7b55ff2dbd3d4e13be0f42096af8263de095a51324f485ba7a669ea54a432
MD5 28414402b059805b330cfbde683130a6
BLAKE2b-256 2a815c03456027e97261610bf417958cb70f156297be69487e6b68f324854724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 710316109119e77e5aa9d2595afe3af04822431d3a760f66ab8e032fe5a81f44
MD5 7aab95265de191191188df5cc6e7ab32
BLAKE2b-256 235a7dda335d59ee3861395e75bffca7738348a4d5756d052367a9a7845e9443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11945328b794bf754524735e82eab46e058f76947e12d5fcb6822d13922a9b32
MD5 8e9ad54d61ee42b28a8d08b1da34a475
BLAKE2b-256 9b12e3047a7d8e8ed2917bc5f13062270a6183f3bc00516eeeea40d82aecb7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 517bc1c3c01c1ed8c2f081f69194bb0c324a1bf89985c68a7511d64819116beb
MD5 870d82f810913283a14f9cc67ef523f7
BLAKE2b-256 92bb5749f5eefed4167c85694f6be7d912e8baa5d8fce8e075550df27f759bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d88a6e40e3e6269c87a490faac2f34a1daf5986fc76092159c34af89d7f5165
MD5 1aad78bb34b99ae6619db0d7a0e6cffd
BLAKE2b-256 7b14e12d426ec0ce58fce2e82ffc986f8b80f17fc869ab4f83cf66870e7c1f7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 346.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 797b7c9b07392140276f7161fafac2fdf15fcbcc953d8486a0fe9c2df8dbeeca
MD5 f56b1708035c2f8c2f90bb7c3894281c
BLAKE2b-256 97da10dff91de5552af190276e424a7a0679a01046d8c8d8dc2e901c1c20dd0f

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 349.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 45b77f12d126cd34abe8fb0172c2fef1c1f6d09188fb6aaa4eca9115cd9e8613
MD5 8ab3843fdceb78be0a80580d7d81e985
BLAKE2b-256 901904863d91ba985717e3d2cca5eb9f3934c7f01cb1cce7af659cca693f62cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 666.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4d2f0e7737ea05d13dd04a3600c4d3f625b94e0cbf82c0b5d77a7cc4fa930f9
MD5 23f5e8621dc479e8885c97cc98e9c32c
BLAKE2b-256 88574edc30174dbfc829ebba80795652e6c5913884eb85d1c81d8e1386fc8895

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 666.8 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fc6ba389d0622eccb927620556885b7d7275e45ab11fb6c884b2945c2517635
MD5 f07feda364b660201c7d4501421fb5a6
BLAKE2b-256 c6ad1473dbf05bd84cd541e87d0c5f71abe033f775a7bb7fac1402c83f051da9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 728.0 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0e97d25ae83c579030f8985f06489d86b1270b211aa8a9942aaf90100215c86
MD5 34a76dfef13edb4cc00fa882e4d82b15
BLAKE2b-256 e15492937f25372a19141cfc6c43aad7159f14608546b296af5b303b21e2c842

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 651.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddb3740fba96c39456405a22dfd0ec39ed7734392f88765d31f35d495759f5b8
MD5 34b9033059f20d423331cde5567d69b1
BLAKE2b-256 268d194853db766412b4d889c5b4bd57fc6d8901bb61ee93a6ee2c7ca41eb049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93cef8cbabfbbf7805826a102f97490d95ae4828fdafb6a1a045878105f0f094
MD5 93365f5bf978641ce05a74fd464f2cd2
BLAKE2b-256 06f1ca9f38ddb90c83ea08d59fc43c48f5845ac5376a299ceb72872eb31442bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d57579651ba107b978c239cd58c5d0e4e3378f298c94a6587a44dd18c966c1c
MD5 af8c20c2d30074b9cc7d9f793c29e4ed
BLAKE2b-256 5f35c0b7e6cf6618e6f2390766cb048aee8ed5d2508fb65ce8fefa4f7d6a3bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57ff6797e18420b9cc29d69c324db029f927188ed9cdfa43e092040e652cb9b2
MD5 52c86780d1838aeb63fdc286a6b515ad
BLAKE2b-256 c84c7498973f0e8bb60d7f335dc6b08c9a36d041110d37730e48417ddb94fddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7c67eadb31009b68f8c91a66e03a4d0650b95da5052b35b597839351bfa9ac5
MD5 1f4fe20b82bba88630c6de8a6035157d
BLAKE2b-256 ab646e1399e31366b257e877807d744bff7ca0777a3a6a1ffde8296b81648cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d53d6d842bf23c11b3837318aa41a3fec897ffc987a6a3b2a781d129690ae7ba
MD5 53019c9b38f1e509e6c11b9f381f471b
BLAKE2b-256 6e34b71f3622dc08f9e8a209fca071a061aa605427e90e2626de8d6b898debea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12cded90ef3e74bfdde32a7999aa9e896c3817f7fe4658ce901f5f5e4544df6c
MD5 567d5be862b962f793d87ca080df3fd5
BLAKE2b-256 b0adc5b71dda7baa190d53f2bd68f6f54d86656814722893f47d96d2b05b66ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 406.1 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 625f9e93762c7bb1f77a1e9f3c1e6d481c371572abd1fc4df3a48d856217ddb5
MD5 76fabacb65c8cffacfbef21178544d84
BLAKE2b-256 4c2fc069493bace489c935fbba332694427eadac52d24f6196d65836478466ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 421.6 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93a7428c1371e65cfdc0efe102fdc296e1c4fffc3046f80642e42adc4b63802c
MD5 44af624f3dec04dc780d875976b0e859
BLAKE2b-256 c980e1e7c8938dd53401ec824c11aac3b7df2de8356172979ed7133ea9c33b05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 347.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 85233c0876d508748ec396bcee9857527de5e4ce63ff8569665a28b7e3a08b9f
MD5 05e0284297a6b1477f42fcbf41b5967e
BLAKE2b-256 793bf97ef678e5a1ed8a6d5174f466c830c238de7e12752f234761b0fe9c01f4

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: htmd_py-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 349.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 36a66fe8fed109615119afb9ab9a7089584f688382523149415e991fbcdf04fd
MD5 cd795865ced0b0ca41d577cc8c4451f3
BLAKE2b-256 ca629fd7295fe83273ec33d1da94b165653dfc43c909eb4143c50e61c6fe667e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 667.2 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08ac61cec767d22eb4db8143d904681aaeb37a06d5e02e0ca478023c5d7f88a0
MD5 4c527390f468188917d4536518dd3c40
BLAKE2b-256 6b8f958ecac4130ea3dbe4a8cfffac0fc316ee39731848cbcafa82836184d930

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 666.9 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad882e9e94dc3e4418c8829cec2865d402db3d8dc5bbd559951d391d8e985fae
MD5 d12e87dad39dae8ab5cc84ba20c3e6ea
BLAKE2b-256 bf3b4e2169eee15d2795eee7e4a1bdc8775480884ee4f4ac4dcb4c185a4989c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 728.4 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f538713a7ed3f37a31c3c0a82bdd78c676f213c5e384db13f7706c12e7a9e75
MD5 9061c2e514549a191d2380813fa1178e
BLAKE2b-256 349b2102a4d22edc8bb1505414a18393c189ddc45f72ccbc8b936e7c21a8cb6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 652.3 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b8a01afb709189531092f19253ec674d250fd37bb48ad101551b4ad0006a674
MD5 d03db53e576e2c1aad1b0c9e52defbd9
BLAKE2b-256 3ae649cfd4ebd657bc8f657f19db07e2308f6c1b55c903eeb97d6d27e707725a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eeeef95ad695284780b1bad9ef2ea15ca20bdcba033aa30ecd79e73e6fb5be39
MD5 912f3ed5e80f34b75b770337c85bfdc7
BLAKE2b-256 5bf76cc4284442a5b9e1a60b40add816a7730043a64d859c5fe83963df99d18f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1d263be29ece50c425b307c7c6daa61454203c0ff9bd4143299e4ad2829b043
MD5 51218d9647e9fe7c23b3d5c1244d3e91
BLAKE2b-256 de0bb4bbcce1cbcfc227800d76ee884fc5e7effc787e55d639da5f82385675e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5202e380e890783cbdcbb62f4a376e11eb603ad69001e3abcbc2c8a51683a66b
MD5 3afee16735dfabec5a6e883a8677da12
BLAKE2b-256 7372872ff8ee092d3115ed89622f533ff21b6964f16bf5999486d820fd8c3d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29b18a47ae60fbb1bbea40bbc49b2fe42fe9332a38cdc555d46eab78b893289f
MD5 5d89227e0ccf36c441bf92d2a8532c15
BLAKE2b-256 14a59ae7bb71503e9509a4f5c7982f27f40e509644ff221895658597b46c5b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3a1add9be60f37f1fda388b62c7819aae76c267676413b183b77c34c029e0c3
MD5 a189ba3b29afe9e312340740a7d2aa95
BLAKE2b-256 c4e32abcfc637f788a139fb7a82b05d026ea697c940a9fff72da9b1ed447b502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9b8994cd3da85187d678dc73630cab25c957366c543e7e773dc4643d6116592
MD5 d5754d9eb159e51e6d15214a539ff947
BLAKE2b-256 c6c867a903b5e21e806140f782a214fab4e76651522b474454f39f195ab2f512

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 406.4 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf935a82b4eb1485af30b5d393a12f4b1a4d657b43ae983d4ffa4c5813c4fed2
MD5 f76620f2e13ee45d07f8eb6311f05587
BLAKE2b-256 f84cf5326a85720089f76b544fa9657e2fe3552db20ff7c7389632b7fc9236d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 421.7 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca2ad0eaf908c84e94f668027dc71ffc911f1a890f7a97379ed0003f527fc683
MD5 f726dc6cd5337eaf0eb7cc54ce94b03c
BLAKE2b-256 f96fe91d6d2f1fa9f071d0f75b3dd8b673dd87a718352d43a7d1d5620b1ed8b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 347.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 455dec115b84ac710db5a37a0926ab87abfb55f9a3628bc73316555374f56b67
MD5 1f174535d85f570e6b2157bf60b752a2
BLAKE2b-256 2e5fcc4e9038f7a58cadf6c5423ec0ec8d597d2a9a79f5d28778c0bf053deca2

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: htmd_py-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 351.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 139f397b4f5445b776cafd6c49e06868d02f80a29261eb70d6bd7d7a53f07e1f
MD5 c341da8fbe0ea2520053d6e28ad93310
BLAKE2b-256 ee8ff370e3f0d57e53e18ca2ee2ea67f4d708c1eb48a3f4da46a931a812c1c73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 668.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 971bd759b59cacf7f714896c08fb7c237a829ef12ccc576593514e5d34454541
MD5 8ab30f51057cbecfa518a0b6e8f6bfcc
BLAKE2b-256 862e38ce67e54c83e466ab0d70ec7e3171b9c1d7455863e705dc5ec96a4d664d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 668.8 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47486d1a2d48104115d8ac0193f655a0b9fb563ca97783208553d36fd26bd5d3
MD5 2d1b9f881988c4706054c185134a2cdf
BLAKE2b-256 bd661711b8a006264d3545aaa787f2ac7f85b08f576dac4df56d2d6ba8070e67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 730.5 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fb1772d7cc280c6af8993f62ecfb6b32127c681d69b3b682488a72e3e0f2115
MD5 d92702555cde2a038891b1799455d0ba
BLAKE2b-256 8dbb74ff37b566e9577097a403e85ff0d3d9193418bde20afc0101cbd1e9b6f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 653.6 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d545717be9cc7a77acf15b03b27fcb48fb062be39212c2daf98ba80846d1567e
MD5 16abd693ee93076c9898ded37d7a1618
BLAKE2b-256 78c12f6b23db45b6f7bbb1e12f7c72eed0f327ed0f4c6ca049d906cdd1af5acb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4064e94b6165561c856e9889651d2a6194985d6cb5a341a420fbae0b9a582ba
MD5 3b8efa54f9ad5c712ad9a3a7c071372f
BLAKE2b-256 dc1ef8954f36061201429b71468b1a9c8923ccaa2d9f956b25bf382defa4f04f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be7f34956e1a990867bee40a3ed9fc7aa35248336c6227815be57f8da3a20444
MD5 9ea99ca28516f9d3f07a5e9b2c9e1f5d
BLAKE2b-256 f0be691a2b0a47a1c3d1a47abff36dcae2b3889d401c93ddbfbb75cbe2020364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 895fcd22051f64819217c916a70afd618fe040034afb5b460d38aac6c6fc57ca
MD5 31922d0d397644fcf46fc56feb6d1404
BLAKE2b-256 36f1c7d7c5f998a01f452dae85c71b14e7594bbaecc4730f92242b232e671399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8d162b58446f8cefc2a724a2994894938150fd73649e0a1e1a538cb1f375b4f
MD5 ac42df27b752d00b0ed646b6158d7cfa
BLAKE2b-256 2222c8638ca4100151afe0b1488378dafd10e443963b6b0cdc7a3f49802e8198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40fb9a6d1ea94d99f23e19c62441bcf90c5a2dbc188be37798b3f7b961ac2ab7
MD5 a62b7cca64d364c9e369faa8195fe04e
BLAKE2b-256 863c2d4865087956b325982667dc7244bb1112f4517ffeffbc0f4f54a9e25f78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 00d15bbb63375553a18955b7d47cffb58c4fffff65bd5145e729b146592b93ef
MD5 0dc098ef0a760785d666625237c72251
BLAKE2b-256 614143794d89182f061bb34ce32ec2377a75083ca24ce5b8d1ce9d29103523fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 408.0 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e16090db9d74259061f17fd522302f3b9e1f42a727843d498aed4b95654a4e1e
MD5 9b87e45d21ed31cb1257de556aba67ec
BLAKE2b-256 39a949fdb8383503f9647c6e46759abc27b5b58499980506cf5bc323da048a37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 423.2 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4fddb5f74e25c5224c3ffe67e8d4061d054b8a3ce779421fb3f08e2a47df0bc
MD5 b2cbd16c6eca742d658c62fdf1013f5d
BLAKE2b-256 c42c7ff9679f9d53f3aee6879f88482f8a382400fd83de21803f7fa69f6ef342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 348.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eba32673fd70f81c31bec22ecda51cab3b53f834ea919c2420775ca041e4128e
MD5 8615406a56ca9ae25bb26ed4bd1d5fd1
BLAKE2b-256 6014366f709fdbee9f2fed5ca4cc4f8ae8c85edc601fb35dbafb72824a2a93f3

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: htmd_py-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 350.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 67650a695c09127c9c5d3cae9a9dea78397ba3fd66a3cbc42d9a3ceb310f7381
MD5 f551da09944f5ae44b8b2fafd1342129
BLAKE2b-256 aee6838fcce1beedd34eca9d1b3d4aa1e542804a789b1762231b20a22d20152a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 668.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e5969d465742267301861c50e7c0237954abd80d292b51c3017989d1418b087
MD5 890c1b428860c877083cdea51a9d2d69
BLAKE2b-256 c2a405e1e146dfdbc0e24f8b7042794534c2e53f26f3bc3660a714b3d5d92382

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 668.5 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3fbcf9afb815cb2ab4acb1856046b6fbe9f372ec4dd33f8cf1a7e3214ac13341
MD5 829b9601f0e9cb8319263a91e1991b72
BLAKE2b-256 8c7cf35cef3221863c12fac240e194b98338cc77c8a2d84728a08dfc02885569

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 730.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b327f4ca2920fb0d6a97062660d41fc617177ff009d23b3f705f618273a22b5
MD5 302f9334f052a2c4eb272fd9f6c31090
BLAKE2b-256 d58906a14c5cd3d64e2ad481cd8aedc9093b676ab9679e6c96a9b0b28a508368

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 653.5 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90465f2caa5835f79e3965b198ddf57a6d7f9975fce731baf0e0bd809bbe549d
MD5 6a1b21beb935b971cafea651a42d4ba1
BLAKE2b-256 e75d26baedde230743b7bddd69a4ff1ba533c40d42f49e3579a2876582e587af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98cdea486ce5df7153692b262357491056e8614a6e3e8611989839e0a99241e8
MD5 5d01d32d21b77ebd1a86614e2af7d281
BLAKE2b-256 888eb95d1407bf68e07f8b815d31d06f29b5858854312f525cd3a8d5cc4e3171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a692d347c04f7f77937316d1f2d95dcaa3b3060dea1f82a582877a4dddd7788
MD5 273df679984432977617e7baa4a1cc77
BLAKE2b-256 a4df434140442b05fb59fad6747ea72896d2a4031d360df69ec99327ded3cded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 829c0c397d15a864210af834556895fe34abf8491a54c87588548d9027be6e82
MD5 70290246dbcbadd68c4c9a53d841cd92
BLAKE2b-256 1478f8d89cb842d6a6d802871b93e964ec03c053b01bff5f0575a999b6833f1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b466070af7568499d8292feadc0370f69b4f0aa77adde9c641c134678ed002e
MD5 b67705dfc3e7b60a29836fdfbabdc440
BLAKE2b-256 f5ab128543753641253cb131dca00cc7ae6c2e1ef185d1933abccb0b153b6d08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99aec5bfe3ac83b9ef5ace9bbf1d3483eca6c3c677a0fd3b1ab2a75281878f0b
MD5 d3e774c8345001a6bdf3fe45901fd164
BLAKE2b-256 0ab151d66cc922528c4b9d3e6ed899a96589b6fd98c31bd21dab42ff7719f381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f22965dad1523b58e8af9673690bf5cc168e999ad35517fac9624e222df0f42c
MD5 91a942208058bcde6523f0c9dfdaf4b6
BLAKE2b-256 addebbc26a91d9b928a6576a712d28e410a2c61201d84b90af9021197d90c922

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: htmd_py-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 348.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f264064dff9c77ff6dc15387cb878dbb5b85a1c593f1c081c9020bc71f7bd6d4
MD5 18b3beea73deaabdeacbf71d4e5058a6
BLAKE2b-256 7641ebc4cf756402d27bd779229ceca24163ce033b0869d643643fbaa665f6d3

See more details on using hashes here.

File details

Details for the file htmd_py-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: htmd_py-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 351.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 875af11c2afb265f09c4e99c84b0b6c1bda0539e65999cbacf0ba99e405b9ea2
MD5 ff4008411047caac2e363b337619dc67
BLAKE2b-256 953dc9224b8b4124009a3684e656851a223ead5f7fa0575927b252b5047e0712

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 668.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4bb2342a94be216bf04d40b859e10aac23afc5cffa5cc36d6bd85d388d12f67
MD5 6257157eb3d7dc7526b790b1bff087a2
BLAKE2b-256 0443322c1aeacc6b4f73dceda63f835da341e325b228e6a42e50bca67ae86d1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 668.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc762e6e9d2a380a33d1f316337cecc43fa15a3247adb5c618ae379c6717a1aa
MD5 f371d981f4a3e24a704134f74844749a
BLAKE2b-256 c08a792ca47e238041880781798ae450888b845af728466ff1eb574be7e33a8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 730.2 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af4898dcf7c5f9065fa03b5ecf664d5ceae167acf6eefe6763b79bc312d39ee3
MD5 e8dfd6a35860a15268d17d3714b64e15
BLAKE2b-256 e8f2b04c6ab462734ef0a9360945a39c585920106e9e2b53e9415159d03601ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: htmd_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 653.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.3 CPython/3.10.6 Linux/5.15.0-125-generic

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 553359a65f303647e6a0949a5921813267948f748e5291bd8bca9461e870b7af
MD5 63933e7eb361f12eb6276808b9e84cd6
BLAKE2b-256 ebf598817fc03eb00559bab84e46d2af1879deecb3878f8aed405193e1e340b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d613eb19025185105fe62d9e10b0c2b6d276ec4d94b2824841e300eb14523f7e
MD5 2eac1049ebfc1175a53bfedd1f15ddf3
BLAKE2b-256 00e305812f228be645b2c3b2e104a7f81bf719eac0fa9fd8b5041854f10235f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da252467149d8df4a7c2aa3439c4963e95a4706408c0d0dcfdd04597d721bb36
MD5 148f729062876bb355ab275f574f962e
BLAKE2b-256 7df048533ed4f45b3f54f4ce26c0e81a401c96977f040c83e04586e166d8003a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 742ef8ccb4e3fc3c6c03a041b57a8bada2a88e258da815175c8a310dc5e12219
MD5 f146bf96d2d039cf5602b9adf06a121b
BLAKE2b-256 1229d437ea3f98d2c04b8133d990e4ac7ae08f9598d0bc920efe2b306fec8d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8363a63fa23ec0a42d8f8a671fde271f2f64d913b82f8fee022bcaadb59f7c39
MD5 fe810ed1f6ebc7b2e9154793ee96576a
BLAKE2b-256 644e9787e2714b6cfb1fb4d70a1fb5ede7f2309bd226cfe9c9adb4946e9b5480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b319a06192c1b93c855d780322d6ff42022bd9d9fa8472d46f63c22f7c90e52c
MD5 12de001cf47662c6dbf1b0fb43e4c4a3
BLAKE2b-256 93f7ff47e581efc52e6dd000686345d06c7e1db722f6d8d4b1b566e84b940f9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for htmd_py-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0195c3a63c67cf204b4f31688631c81115750efe47c9634d5c9ddee2e1fc8568
MD5 3406def172a7bc7f3b839c51bdfdaab7
BLAKE2b-256 26aaea6c8908ba8fcf380372db9b832e6920cc3fd988e8aa3e52e62e3e2097b3

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