Skip to main content

Transform your HTML into clean, easy-to-read markdown with pyhtml2md.

Project description

pyhtml2md

pyhtml2md provides a way to use the html2md C++ library in Python. html2md is a fast and reliable library for converting HTML content into markdown.

[TOC]

Installation

You can install using pip:

pip3 install pyhtml2md

Basic usage

Here is an example of how to use the pyhtml2md to convert HTML to markdown:

import pyhtml2md

markdown = pyhtml2md.convert("<h1>Hello, world!</h1>")
print(markdown)

The convert function takes an HTML string as input and returns a markdown string.

Advanced usage

pyhtml2md provides a Options class to customize the generation process.
You can find all information on the c++ documentation

Here is an example:

import pyhtml2md

options = pyhtml2md.Options()
options.splitLines = False

converter = pyhtml2md.Converter("<h1>Hello Python!</h1>", options)
markdown = converter.convert()
print(markdown)
print(converter.ok())

Supported Tags

pyhtml2md supports the following HTML tags:

Tag Description Comment
a Anchor or link Supports the href and name attributes.
b Bold
blockquote Indented paragraph
br Line break
cite Inline citation Same as i.
code Code
dd Definition data
del Strikethrough
dfn Definition Same as i.
div Document division
em Emphasized Same as i.
h1 Level 1 heading
h2 Level 2 heading
h3 Level 3 heading
h4 Level 4 heading
h5 Level 5 heading
h6 Level 6 heading
head Document header Ignored.
hr Horizontal line
i Italic
img Image Supports the src and alt attributes.
li List item
meta Meta-information Ignored.
ol Ordered list
p Paragraph
pre Preformatted text Works only with code.
s Strikethrough Same as del.
span Grouped elements
strong Strong Same as b.
table Table
tbody Table body Does nothing.
td Table data cell Uses align from th.
tfoot Table footer Does nothing.
th Table header cell Supports the align attribute.
thead Table header Does nothing.
title Document title Same as h1.
tr Table row
u Underlined Uses HTML.
ul Unordered list

License

pyhtml2md is licensed under The MIT License (MIT)

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

pyhtml2md-1.5.1.tar.gz (216.2 kB view details)

Uploaded Source

Built Distributions

pyhtml2md-1.5.1-pp310-pypy310_pp73-win_amd64.whl (100.9 kB view details)

Uploaded PyPy Windows x86-64

pyhtml2md-1.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (137.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (95.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyhtml2md-1.5.1-pp39-pypy39_pp73-win_amd64.whl (100.8 kB view details)

Uploaded PyPy Windows x86-64

pyhtml2md-1.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (131.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (137.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (95.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyhtml2md-1.5.1-pp38-pypy38_pp73-win_amd64.whl (100.8 kB view details)

Uploaded PyPy Windows x86-64

pyhtml2md-1.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (131.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (137.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (95.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyhtml2md-1.5.1-pp37-pypy37_pp73-win_amd64.whl (100.6 kB view details)

Uploaded PyPy Windows x86-64

pyhtml2md-1.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (136.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (95.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyhtml2md-1.5.1-cp311-cp311-win_amd64.whl (102.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyhtml2md-1.5.1-cp311-cp311-win32.whl (88.1 kB view details)

Uploaded CPython 3.11 Windows x86

pyhtml2md-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl (643.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyhtml2md-1.5.1-cp311-cp311-musllinux_1_1_i686.whl (702.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pyhtml2md-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (132.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (138.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl (97.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyhtml2md-1.5.1-cp311-cp311-macosx_10_9_universal2.whl (184.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

pyhtml2md-1.5.1-cp310-cp310-win_amd64.whl (101.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyhtml2md-1.5.1-cp310-cp310-win32.whl (87.2 kB view details)

Uploaded CPython 3.10 Windows x86

pyhtml2md-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl (642.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyhtml2md-1.5.1-cp310-cp310-musllinux_1_1_i686.whl (701.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pyhtml2md-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (131.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (137.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl (95.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyhtml2md-1.5.1-cp310-cp310-macosx_10_9_universal2.whl (182.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

pyhtml2md-1.5.1-cp39-cp39-win_amd64.whl (101.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyhtml2md-1.5.1-cp39-cp39-win32.whl (87.3 kB view details)

Uploaded CPython 3.9 Windows x86

pyhtml2md-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl (642.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyhtml2md-1.5.1-cp39-cp39-musllinux_1_1_i686.whl (701.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pyhtml2md-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (131.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (138.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl (95.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyhtml2md-1.5.1-cp39-cp39-macosx_10_9_universal2.whl (182.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

pyhtml2md-1.5.1-cp38-cp38-win_amd64.whl (101.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyhtml2md-1.5.1-cp38-cp38-win32.whl (87.2 kB view details)

Uploaded CPython 3.8 Windows x86

pyhtml2md-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl (642.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pyhtml2md-1.5.1-cp38-cp38-musllinux_1_1_i686.whl (701.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pyhtml2md-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (131.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (137.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl (95.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyhtml2md-1.5.1-cp38-cp38-macosx_10_9_universal2.whl (182.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

pyhtml2md-1.5.1-cp37-cp37m-win_amd64.whl (101.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyhtml2md-1.5.1-cp37-cp37m-win32.whl (88.3 kB view details)

Uploaded CPython 3.7m Windows x86

pyhtml2md-1.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl (646.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pyhtml2md-1.5.1-cp37-cp37m-musllinux_1_1_i686.whl (704.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pyhtml2md-1.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyhtml2md-1.5.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (138.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pyhtml2md-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl (95.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file pyhtml2md-1.5.1.tar.gz.

File metadata

  • Download URL: pyhtml2md-1.5.1.tar.gz
  • Upload date:
  • Size: 216.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1.tar.gz
Algorithm Hash digest
SHA256 44a482c6df0c5c81092b6e7a8ec8e56353c4bf997d72242115c7e248cf4dea68
MD5 7bb4a23772e5ea98fc2c5fb2982843ad
BLAKE2b-256 9c0b603705e11efddc1c9f1aa20406ef8dd8a579bbc62b0b4c5f975a131b38ac

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ec592cde1d2d32bd285e611153ecc9916e2330584a30c3f60c5c8162b2430b8a
MD5 01b7fa4fa1c51ebadd6728fa862c3248
BLAKE2b-256 13aad1ddf4901719cbe7d5b41cabbc8f3b5fa44216ec6364ae245573178538cb

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea5645e2ce13e5d27695950ac6e04f5d151212af6033fc04d1e3e392c447aefa
MD5 23c7cee5383d878006cfa7119114fbbd
BLAKE2b-256 fdc2813b91453afe2f6b7409017466528714fdfc96d5463c2b23a9ddb05634d2

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c719fe1306ba85669ed048f4ae67aaea16ce9655631bb0027a0adfc7a6571d0
MD5 8a9affeb4610ab78ecfc83bf95761ae0
BLAKE2b-256 c3cf0ac46a5fdb5a09d63da04ee30b8ed76abda71e8520c21ac7b3c76044a859

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 735036210f0a0a29fe1db4c0e595de1e0dde76da81905d87ef585a66b60ed6ce
MD5 92c60c1f5e63504446f19eb99c75e2da
BLAKE2b-256 4f7b0a34fc122fd0887c73cd072ab34429dd4edc8e68e2210ca935c1d8e10ed2

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 063787b68db2850e519dbf0a69c4aca41b60b25c8fd46c7758203c35f8e1dabd
MD5 f17e9a60a5d7af28b9b3fd024d10c8ed
BLAKE2b-256 39ef1ca06ffa93bb142aa7f162d680a0ed394dd93213d5934edf9b7cbf9651df

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd6d677a048193df5e5e97c532a92d877f5a7071eb682ca7cae850fe07f47b33
MD5 1f18c9d37bad4e57351087a61da6fa64
BLAKE2b-256 c19771571641a67d9c40c45e192500fccc63efd695da604e72832454006ebb87

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39a4c25863272ad08aad23c1e977a1f5316cdc03c4dccfd33a7b73b865045eca
MD5 8552a54269a2eaaae700d3a6a2798619
BLAKE2b-256 cfdf82c5d1eab9b939e1afce02df0c1ffebb4d633b71ffe7903ae82c33513556

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2ee3eab52a50e695c44c2f98953f3b98ff0d1913b24db1bed2b32e2e6f508ed
MD5 9819a736e2f9a7413cdb087b29e2fb82
BLAKE2b-256 d7bb7110bf760dcac5fed652bdc72c253ebfbe4404ea69129bdede0399c8b8fe

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 26fd2beb8810d0ea37dd54ce5af6c57b1ff82c384125418c3044b00fbe0880b4
MD5 b6db588b01734dc89966dd7bdce02e69
BLAKE2b-256 cec7c18ba7529e55f01d09c3ea89b54115e5e858b5b32fc22393381582c5717c

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3919fe610bc094f2275a6197575d130b99c91134f5a255f2a2ed4d4e72011ca1
MD5 4bfac6a5131aa1b67fe9b3af72964447
BLAKE2b-256 e54efd2eb8a400644ed16287c7f12295e91763b64d0d3ea3336522d98c907484

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e1e7494df84271c95be86250aba0c59d4f36ae639b6ed625053d78170f884ed
MD5 c12db8f7ac4acc6beb87a13c53c5b11a
BLAKE2b-256 799293746df6521f7066978c4480f9dee80eb5efb755d8bf1cc177528fba38c6

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64160f0956064516462ff092eb96e886c6c109bde30eb5e62b973632e08e2ea7
MD5 4ae1c52ef5df8c244d7711af49dd0486
BLAKE2b-256 d89d0f51533600051a8cb1b23161ba7737d8f63d99b2406b7db3212006e7b08a

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bfdf4ce0513b478d33faf602c5922303883c15f344a588a31636c9c4bec2f632
MD5 4b6f7fa499f20b415c51ca4c0b8bb447
BLAKE2b-256 aa6d678afb66f13089e3dc49ef2f26eaf61693184af675140000187ad72bd489

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3184049f3a1f6ce6e971ffc5491507d5bd6261866b2e1f3d96d962bd4ce5fba5
MD5 217669ff8c7ce00f0da7c0a4ebdf03a1
BLAKE2b-256 8d2d0a6c61a3d10ea824c72b7fdbfe43272d05d3358d5c338849c24425b17e3b

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4bffe5c0e13dc001c6d635f8e123fd036cc4d53523e440f6f1da5771727c1a65
MD5 4d1e8accffc4229745ba83d44d4cb34d
BLAKE2b-256 9443f7d01a704a117e06b47154ef402af75e864910035ed495ff7361ff51a6a8

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0566dcdef533815ce7782a6e7af1648df5af481cbf75c20213d8b46338d11767
MD5 8c3ed3a36052d4d3fec228e719095460
BLAKE2b-256 e7e0e33b1f7515d5f6f0f5ddec7fc9848118024e14f58c6c1a56a126623185fc

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 82b724da645c220f6512e71bdcd761c1f3ab7e50b3e68de741d69d50357a233e
MD5 7a9d068f57b69ae62fdf9d3514d6a1b5
BLAKE2b-256 99a7e329a1dee8eb5bebec4c68ce969ac8eb83fbafc0b32d6e0607b9ab880401

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyhtml2md-1.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 88.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 47659d9dc055dbeb7b3b020297acf5fff94d371cec242ad631f8a7140d372845
MD5 33f75b71b12be72f13cc9943ed77a8f6
BLAKE2b-256 67778f73296d0edfe643f37cdc9d4fc13b49ccfc6652593c504e4c9f82dedcd7

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bf59148c9937747f2aa5e74445f18276f7d0b8f033237a710f6e196ca6d64ef
MD5 77d7a733769d2e1fcccef6e37ccc21cb
BLAKE2b-256 53527e01c5e971dfe4a02daf2a4b8d339a0d749955e113959cbbbfa21e949dc8

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eb7d20f62733667c5155817239fe9cd5d99f066164e74f73af612f3090e01107
MD5 04f64ec8b9bc26e196cc3311ae015658
BLAKE2b-256 6ee6cfd9809457f54d67269bbe0f18a4885bf621296a2707b1d7b03e528a6b18

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 613f42da82ba68a284ad79f3cff298fc656d5b900df064e0943c54016a9fb43a
MD5 a92833b7740ef8ab104d9e30b2b4d45a
BLAKE2b-256 7eaec73ac9a874cda799b29b5211ccce67146913d4f103558daf5292c3a66cef

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73924ac93f7705accda96289fdeef85403fbdf0969f5a36efe8c3d8b1d383f9e
MD5 2bb2a1adf71ec87c8e9150dc1becb545
BLAKE2b-256 333f86bbf50c1ccedc8b4cc77027ef4a70949dff0bcdee9fc144568540de4637

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ebaee98474e305b4f4144d04fd658608533555ee02b3b5e57268b6173a22d9ef
MD5 68481e9fc3df801a017f33c0236a026a
BLAKE2b-256 0e3cc500f09c145f92b4d95e157ad1bd3d14a8407f069e9ab34c36a4531c185e

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a77ab90c8e12f926c813e3f49e8253fbf1c7d7ca016eb6344e6fbc8f4bf32307
MD5 87f954b85ca6e6b568057dd88f101406
BLAKE2b-256 e76434ab747a7210022c27f07445190981f0b8632a0e89158172344f319aa1ba

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d31f35d095034f6fa98201a091ff7858e922302580e57bdb2302637022c80c1d
MD5 8e4863a7c6607a8a0b8aacfa212280de
BLAKE2b-256 19d4c975d4a68131dd87f75ec953ba874746aa7f525846d61f288e2495b5d340

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyhtml2md-1.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8fe6803f3240bc74f0b524ff6392918a19e2b599b90e0f46dc0bf6292143c946
MD5 83a8801c21f65be1917f7d65d0372a0e
BLAKE2b-256 55b018c1503fd8cbd0b5fd7cbcbae5c4c1b6b55d1ea75b4c3fe1038d7617b279

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b6f9947c4c583ce29438302a7cd3058ff22aaf38a4eecf4667c65cef9aa4459
MD5 00e810a14d0f7dde8fedb18f40c6fe66
BLAKE2b-256 56f5761d643c08ea64fdc312c289cb51109160726d12e1ef89377c0c26717e32

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 776f977ed8019e7229dff1484c4a97385b2f5101e6aac9b5c128575fcfbe7e80
MD5 ad8310355c69e413254bb0101a66a99c
BLAKE2b-256 eb4c809f299067d5f9de2e7050a7357c30160c4b3e4925d23921b21c302dfe11

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b04aeba803a9b38bea8d52b40d8ab318170d04e688e1ff6b2acdc6fa966081a
MD5 962daec7139c615e71d7e6a7bb8a7509
BLAKE2b-256 9209dfcb40aaf8b4bd099c2908a8add5aff4128c6653bfd61cd81ec0510bf18f

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b3f4750237d6375a42bf14e85ead796d701de7f0a40d0fbf1d8513ddb95e32a
MD5 fb7f52d5d28fd39c6ef5cd6a61819b4c
BLAKE2b-256 9fe42d8bef78f0f21d7b86c9b95ff31a5727ca47dca5c9daf5297ed7565843e4

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b859b3fab96edff465e12050ee36b5c57037b7ce4790e07515e7815098490e98
MD5 7c55e6f838f51c22e8036f70148aa8dd
BLAKE2b-256 f4d460b167d6a2156ae37b0865e705648381bb24ad3f0fdf6f343a1fcfa181a6

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c24deeeeefb49fc2a5bb098452d83ef271b1eecac200de897c2417d87c0e7fdf
MD5 a92347cc849fc6f17e1c9bb425b4fb7c
BLAKE2b-256 74812ace1f85424bdcbf9b8507cd53f7239109bfab2071a9cb13e644b9516f07

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyhtml2md-1.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 101.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 642c9ba91c9270e7d05107c41cc928e950c187358b82ca51a894c6720f3a8797
MD5 bd1121953abb39f95425bf7721f63258
BLAKE2b-256 e677091be5d31acb2333d11c165c10801e99997910c37ebd231df74528ce259c

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyhtml2md-1.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 87.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 37c25718e2149ffe0d43165c801fb0fdfcae9d9ac453a7751c9578a9f8d09dd5
MD5 7fccf0e8c17c4c5d632069ec081615d4
BLAKE2b-256 ad84b9edb9af9984b783addfd04b5b64d6f2a0ebb80f9de90eda3a5249a75537

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c002150c9deb5ddeba7965f557ab4ec77b8d6426f2388c3ecc9a4b28713e8939
MD5 f4e495d06165ce8513a4d2e53f6c6dc3
BLAKE2b-256 ac13b937ae7c1cf6ca2b8de916ca192cfbd71dc4f2d4a5babbf999ce61551e2a

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2755a3c5e0e7dfebfc02780d778e845f05e1a7fb1355e754e896967616c26d2e
MD5 0b717726f215ba1bcccba016eaf464d0
BLAKE2b-256 98a06756515a8a75e64798a8da5662638cbdff53566e915a8fd1f8f8506fdf47

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3752184c7e136d75de4982b1952a342b4ed19c5b433808b4bf925402982e81f5
MD5 d9352c4b3890d62069fc0c7366a99f67
BLAKE2b-256 452dd0689dd38612d7f07f96dbc20b7ba2e672e75ddab91fa9b6aebdf6e3d910

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eac296347c85434667e612440aa998fc4a86a9d237fd96087bde5eb3260af804
MD5 1bb3483658d5f8a505f0d90a4dc8f419
BLAKE2b-256 4b00d300a7319cf795a29923e47438493d21093426941c3435d352e7b20f42b9

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a395765f5f9661fc167894b63090789707babb0c3e9ff18c9e2529e54efbce11
MD5 888df5e9c2c4a0ce71d7928fe3c75690
BLAKE2b-256 a4f7694af750261e9ec85ba28316bc386467acfff7bd035fe30c484c2736f136

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ec63d74cad1662269191ab987d24eac5c479c0e7f7d8aca08cba23b006a491c0
MD5 e4ec8e4ee1392f6be72ff983bbc2579b
BLAKE2b-256 8ed8e843d287867b3fa78a0c912be2b180eb2e521bab3cb983a9dee04ca4face

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyhtml2md-1.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 101.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bf88c04140e73cb06a8b89d41878dde55681861ae731958c45c604f9c4ac51f2
MD5 5f0fc7d672106dace0d8dfd35664721a
BLAKE2b-256 4007c25af1e7450cdb6f45e5785085beee95df6bf508eb49e24760aab992b2ea

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyhtml2md-1.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 58e88b2558fd46a90c9bcf144a09d4537b617f3930191c0fd2d4a3121c3372f7
MD5 b12d32bd4aae4939be14beb8bc4108ed
BLAKE2b-256 69dc95e6b1c13829356a8e6c20d24c7a39f20cb0f795c57a2d1ed2c0030a0c5d

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 51d431efba45c3c07b90fe4d4197998f1ac17fc9ec286ed31c011b60eed0214d
MD5 69f966079ca3e8cd8f15d4d4382482db
BLAKE2b-256 5774c8a2ede2b9e78c990d59449358deebd742cdf2d03256cf1dee15df967529

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4513689b1041e54388db661f9818a60d05b13bbdc05cd43d5f4a678c7f85f643
MD5 5843e81cdaefa79c2d6d3aa9d7476dc2
BLAKE2b-256 9a182bbfab2a3c0957c60919699aa7c1e21192046748c29d0faac9bd98e3ec6e

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6c235cf75f110cbccc35e2cc1e82f36345a55d8c5aee89079d717e833e0213a
MD5 e6497fa65f795a996e9162ef6cb1d80e
BLAKE2b-256 d91234f687ae73f84706e2d025f08fc4d0f87204546e0bb85b9894beddf84a5a

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04bbaaaf6138a74dcd51027d0f12a50599d791605c250b738e6e98f7e92ed141
MD5 bac562f7bc196436880832ed0e424d16
BLAKE2b-256 cada2af535c04ce6bf3e9c10bec8a425cdfcde0848e3321dcca05dc561c4c5e1

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1af312fe9ea853571053adb7e29e064b622f4331df7a02c762ef38e932d432f
MD5 4fc7cb53f525d4cc450e844f116e305e
BLAKE2b-256 f04c8fe1cc06607a50ebe5a6c2dc0b3e008f439808a908d9c4fa2c237166d014

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 747393f01aa912067a73a73ded408ea78de0fb6ab35f5cdbd71755595d8b0f33
MD5 39f1ea4c8b7b858d433231f43912b909
BLAKE2b-256 e845a861e1045f296f1be7230df55ce80a7ec77087f447e01742400240b352f6

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyhtml2md-1.5.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 101.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 87bda3b3262aefb7786aeb95aac21dfd7860a5b35233f9ddc5e6e33efc4085a1
MD5 103d80ca493c35900c126e63ae000fc8
BLAKE2b-256 80781e6a87284be2297db822913ae977b4f4419e8333e2ab0484052032e23eaf

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyhtml2md-1.5.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 88.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyhtml2md-1.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 505b0469f4407efff30671fd24b8cf88d3691a8129cefde8d52e0aaac475cda2
MD5 9a56f5afe7a89511f90b2d7446e2dcfe
BLAKE2b-256 e4c2ee7cf0289374d9393dea541577fe3f6daa16b9b44cd3727d66aa36d289ee

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b4f0c05c614e46783808c9232ade58e95f14e600f01b3f276eb02bdc01376932
MD5 9bca2bc4ca3f0b7f9be7676c4d579a86
BLAKE2b-256 cbfacaf5c8a8404d50bff8a3ff4e5e7538b8087cbf3cea0517f50fd555a43e05

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 972c778eddfaa97683ef55192b947c580e720e8ce16d0355ae84d9f17799d477
MD5 8023e930095bd2e241fbacfec6854a5b
BLAKE2b-256 2bfcb5b5142456a8cb0a6916005caa1db9f664d5fe435775790c83dc14f0659b

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dc44d4c16764cb61be818e5bc17190a579c96d338e496b7c6e6227e5a13a531
MD5 f63da74992f4198d047674355c2b0982
BLAKE2b-256 3696649dcf4f4262c459d7a978d4bbc73b4765439659dcf21e79682e6d64d769

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bf94ad19e80a3441c5835de9041acf52eab6be2b89ef2731c05a097f11959a0
MD5 922743bda8c0e3b1b1bf4ea8b741bcb5
BLAKE2b-256 35947e3e336cef40f760e2f3d80afbcf9111f9bd99e20df6aa32d9a89c1d75fd

See more details on using hashes here.

Provenance

File details

Details for the file pyhtml2md-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhtml2md-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05919a5b0cbf54261377bc9c88a58021ca440db046ba0aedd15a5c609e35ddba
MD5 67d2f8a8ff3811d404b8eea4605f4f27
BLAKE2b-256 d4da4a7c2758d7d0c9a26e6fd0a29d31040cec7c53a730ff8ff2c2133bc67998

See more details on using hashes here.

Provenance

Supported by

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