Skip to main content

HTML to Markdown converter

Project description

mdka: Bindings for Python

Summary

HTML to Markdown (MD) converter written in Rust.

A kind of text manipulator named mdka. "ka" means "化 (か)" pointing to conversion.

Bindings for Python are supported. Python scripts can import this Rust library to use the functions.

Install

$ pip install mdka

Code examples

awesome.py

Convert from HTML text

from mdka import from_html

print(from_html("<p>Hello, world.</p>"))
# Hello, world.
# 

Paramter(s)

position name / description
1 html_text

Return

String

Error(s)

(None)


Convert from HTML file

from mdka import from_file

print(from_file("tests/fixtures/simple-01.html"))
# Hello, world.
# 

Paramter(s)

position name / description
1 html_filepath

Return

String

Error(s)

File I/O


Convert from HTML text and write the result to file

from mdka import from_html_to_file

from_html_to_file("<p>Hello, world.</p>", "tests/tmp/out.md", False)

Paramter(s)

position name / description
1 html_text
2 markdown_filepath
3 overwrites : Overwrite if Markdown file exists.

Return

(None)

Error(s)

File I/O


Convert from HTML file and write the result to file

from mdka import from_file_to_file

from_file_to_file("tests/fixtures/simple-01.html", "tests/tmp/out.md", False)

Paramter(s)

position name / description
1 html_filepath
2 markdown_filepath
3 overwrites : Overwrite if Markdown file exists.

Return

(None)

Error(s)

File I/O


🤝 Open-source, with care

This project is lovingly built and maintained by volunteers.
We hope it helps streamline your API development.
Please understand that the project has its own direction — while we welcome feedback, it might not fit every edge case 🌱

Acknowledgements

Depends on Servo's html5ever / markup5ever. Also, on PyO3's pyo3 / maturin on bindings for Python. napi-rs for binding for Node.js.

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

mdka-1.5.0rc4.tar.gz (75.0 kB view details)

Uploaded Source

Built Distributions

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

mdka-1.5.0rc4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (612.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (613.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mdka-1.5.0rc4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (612.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (613.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mdka-1.5.0rc4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (612.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (613.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-cp313-cp313t-musllinux_1_2_x86_64.whl (611.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-cp313-cp313t-musllinux_1_2_aarch64.whl (612.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-cp313-cp313-win_amd64.whl (317.0 kB view details)

Uploaded CPython 3.13Windows x86-64

mdka-1.5.0rc4-cp313-cp313-musllinux_1_2_x86_64.whl (610.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-cp313-cp313-musllinux_1_2_aarch64.whl (612.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mdka-1.5.0rc4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-cp313-cp313-macosx_11_0_arm64.whl (370.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdka-1.5.0rc4-cp312-cp312-win_amd64.whl (317.1 kB view details)

Uploaded CPython 3.12Windows x86-64

mdka-1.5.0rc4-cp312-cp312-musllinux_1_2_x86_64.whl (611.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-cp312-cp312-musllinux_1_2_aarch64.whl (612.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mdka-1.5.0rc4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-cp312-cp312-macosx_11_0_arm64.whl (370.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mdka-1.5.0rc4-cp311-cp311-win_amd64.whl (317.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mdka-1.5.0rc4-cp311-cp311-musllinux_1_2_x86_64.whl (611.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-cp311-cp311-musllinux_1_2_aarch64.whl (613.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mdka-1.5.0rc4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-cp311-cp311-macosx_11_0_arm64.whl (370.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdka-1.5.0rc4-cp310-cp310-win_amd64.whl (317.9 kB view details)

Uploaded CPython 3.10Windows x86-64

mdka-1.5.0rc4-cp310-cp310-musllinux_1_2_x86_64.whl (611.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-cp310-cp310-musllinux_1_2_aarch64.whl (613.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mdka-1.5.0rc4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-cp39-cp39-win_amd64.whl (317.9 kB view details)

Uploaded CPython 3.9Windows x86-64

mdka-1.5.0rc4-cp39-cp39-musllinux_1_2_x86_64.whl (611.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-cp39-cp39-musllinux_1_2_aarch64.whl (613.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mdka-1.5.0rc4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mdka-1.5.0rc4-cp38-cp38-win_amd64.whl (317.6 kB view details)

Uploaded CPython 3.8Windows x86-64

mdka-1.5.0rc4-cp38-cp38-musllinux_1_2_x86_64.whl (611.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

mdka-1.5.0rc4-cp38-cp38-musllinux_1_2_aarch64.whl (613.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

mdka-1.5.0rc4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mdka-1.5.0rc4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file mdka-1.5.0rc4.tar.gz.

File metadata

  • Download URL: mdka-1.5.0rc4.tar.gz
  • Upload date:
  • Size: 75.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for mdka-1.5.0rc4.tar.gz
Algorithm Hash digest
SHA256 d872645f3dda9ffdbe096d10d0d9ff47b46eb19fcffc7675d29e0f10794dc294
MD5 4bf43403c6724e54f2646b845eb48fd5
BLAKE2b-256 b3db990a1541ec68c2bc657511b72ade072a4de53466fe0a3d8421c786e3d28e

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49a9fcd463e678eb57f47b42c9c0a08258ccd006f863192ea114bd24ecb43073
MD5 260c132dcedbd0fc58c03b6304ad4c60
BLAKE2b-256 3eb97a2c2505ad382bc8e7e14b0523fda63b38558429122581d8002ab306852f

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32eb8ba6c33887b129cb82f37e24689b3e8eb5e614a46509f5d9c9234eba36f0
MD5 5cd798e080691693d0894568ad2dfd82
BLAKE2b-256 90547b6952de6a8ead1b039bf9fbfcb62dc90cb7a530fde955b4596380190618

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4633532adea0070fbe4915e82bddf71a0837d40daf4d9f05b801b2c06b868ac1
MD5 4b6247e63dde240e35902d91a97428b8
BLAKE2b-256 00b902255bd96a45007d72bc4613063106d5f75eb5974a54042cb5b194f9783a

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b76367681284209a8bd8f5867dffb96f1a8878514163c77195097e7f7af7de52
MD5 71b7b1ab5e167be1c40b1e3b73eb23e4
BLAKE2b-256 a8e14daa692e572227f32e4de56cfe58c0d19644ba1ef98f13545872a4994fd6

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47d6d94150c5ba0a494c3f72b42b8341e3ffc244a4e011e5ec84f6cef8663672
MD5 b1f70a21596dc9f82ad9f1fad433ed11
BLAKE2b-256 21e4c9f7a99f71f41ecb056804333747baf0453e8958a4a44e36a0d4e537103f

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 350dbeb1ffe6f50b64d6869847bb082cf045f73361ac93dc9e51b71e53a4dc95
MD5 6e0f0090c04793d32fd4e59decad37aa
BLAKE2b-256 f4980a9da2504d5f32261409117687198b86ed383fbfb01fcbf9dff4b1719025

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c8fff01d8c5683124d8ef3ceedf5330ad6949c764e653af0387f371165c5ede
MD5 91b03a55021419ab202d8465a030f515
BLAKE2b-256 b0686ab1fb2f31fa802c94b39b135ff7f5e479cd64207fc11a7318d4edd74b9d

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b4a068024fc2a5b8246826342027d5b40ba6b948c774a9ea5ff8c74ae79d6d9
MD5 bbb085405fd0bdd7a03cfc405d1fb416
BLAKE2b-256 d4396ff5772def3c865914e461cbef730c4e4c2b37b1e84c2003a71e02cf15c3

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bead204810b84736ec7188798dd86bb8ffc04f2132640d70d822f18cbd5f79b
MD5 b19ac46b7b4f05d185fdc9f34962b9a8
BLAKE2b-256 16fee4a526090e8f202cea0af6118f9f691ee92eb3e70afed3ec8b3179b3b0ad

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b9095f8837aa79d69741105e40b16f2a18347e2419267209d37585d5461e725
MD5 12e34eafebb1d4937cdc9e450d380eb8
BLAKE2b-256 dbca698d4f4b63d9fb4956e806e4e6f94875e9836790d7a5f7cdcc0e63ef8b55

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 736b3b54d55f455467910e2ff06ee94bc0a991a2b0bb368592222ddcc08053f4
MD5 ca73f9bfc8c811a83a11074dd6cb0b5e
BLAKE2b-256 9d1933b09eaf321833ddc9d1b199443a9d5af7656aced3d1b564c463101bcf67

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a11f472bb468004b7831d459bcda65deb403537a60c4ee49c8a4b57bf4cfdde
MD5 f50857b6e4174a45167cb31a6f4e5f78
BLAKE2b-256 9323e6974ebdf50b442fa6845052a6f3a98795ff80ec1916e0136dd8a40fc3bc

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03cfb6bbb8d677882bef302e35a7f3389df710165564d2300c4185d0c406d5b1
MD5 e3804b215d95cfe1a78cc7fbd2defa3f
BLAKE2b-256 408e865a0f3742f793f046e7dd3a610493d2e560d2e1aaf8135f50031b92822b

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa00e0532465faa0eacb4fbbe0fa7bc4e0257ea5cb92717aa9b8ef9778fde9c6
MD5 580fbe7fe3cc439876485678600f1f79
BLAKE2b-256 e05483662ac09a1115937f28540043b1b3298358667470232b01c22adf0fc20e

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mdka-1.5.0rc4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 317.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 359e07e6d82d266b5ee9882cafdfa978e34a7dd022ef6051e92cf2cbd92274a4
MD5 140e6b3188bf95c1b5c1d83c7a629920
BLAKE2b-256 f462ae8f99d7a99ab0620aae3e028b57b9766bb16beba22381923216a2c8cd4b

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 580366fef0f5f618439e7f2f996bbeec9c4ac1015daec53ce750814fffae8cc1
MD5 558907ff0b1ef0b319180eafdc00de8a
BLAKE2b-256 a8ae43c15b038e1e3d05d6d9560b59685dca597b03ba666c35a41b7e25612bc8

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 490b4f5b94e1475fa5b95ad43027a264d3a24380af05fb17caa6c7a5c5e4b6aa
MD5 0f8ae994e0b849bc7262562ed3df8fec
BLAKE2b-256 06e41059d437f31e48a5a9954f11fe7c7cd56242bc7914f1b9166ece6172b49c

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a1a418eb81821bfa26dd31374ef3e79cf1c555ccafd9490dc8ae1c440cc31e4
MD5 5f33b34d7d425a8972d759ee3b9658ba
BLAKE2b-256 c8c5e56e87db58d16fdfdfd1d0e196d814e19f602a51f6c75d6c74109cdb7d49

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a93173b7b2cbe7e183abb96509a97819f8db5bfce140681e84455fa194df739e
MD5 a54433edc1025a6538a0870014a5dc72
BLAKE2b-256 337d496e1d32790bf285bd707e964b43b1324e13efe410666bdaf0bb3e1217fe

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efa710303131c421e544ecb6499edbe5732cea574210bc3fbc62774254b48c70
MD5 a6ee432f3d166c39b77bc1c1740ba7cf
BLAKE2b-256 c3b7104a48c65e732e4d9fe4010290467ea635e5ea99f77b9a5df87307b35ba8

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mdka-1.5.0rc4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 317.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for mdka-1.5.0rc4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a5d6350a20b9dfd619e405a54172abc457032fe6558e63f476ad82ebf6a55143
MD5 7bca2333d0af7d1521aa856102e924f6
BLAKE2b-256 ca0c306bb77a5bc6bbb729e61e34c880a7e5ef056d5fea50b1231b98f9c4d217

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e62a801ebaffb2bd9e6e9c0818fc3d0675be95c88cc7647147942d8ca6db5c0a
MD5 40b4c739da373f508ba977a7b7163336
BLAKE2b-256 a529e28e6cdfa1dc48bac07616199048bc9f63608dc9e39026f2aef936407a08

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89afb59a7aa60bf1d6bebfc0b64a4a74b720689aad7fb1b4196ffd2bdf28b777
MD5 62754410940c2d737750cf9605192292
BLAKE2b-256 c7ea59a4db53785ee50754a668f3253b950060c3d8ce69233e165aacde34aa70

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e555d24369f8468c38275d60b0750fa94dc2c6f2579ac5ea6a5a37e7a469e5f1
MD5 215d82ba3e095d768952d5f64c85a806
BLAKE2b-256 f5ccbaa7fccc891e983590e785f653d5f8643317f0e719621a24dabc960e8cca

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a559e9a3bb5fd99849eb1523a194ac23874493510ece23092a07375d1644f2a
MD5 2b8c6c85d1b665b536487805097c8dc0
BLAKE2b-256 6548853e0393786660db816c092a5243f3a92788f383051605497fc5a660ab25

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85dcbc160a4fd5d08733f5fef91e0a4de6739f57bda32ed18c28eff78b1354b5
MD5 25b4630e60ded6b6a1eb22efd0b55713
BLAKE2b-256 4a045861f4e631b0ddf23b1f96fa1340ff705a379664f141507e69c94c4571e7

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mdka-1.5.0rc4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 317.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for mdka-1.5.0rc4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e0335d0706330cfacf45450981c8931e4c5477b43fd8022b2f8fd156e20871de
MD5 3107ca98567c83cf95e505b60a77255d
BLAKE2b-256 f042e2acf675331a44c10945dbf859797f7c1cbc990b762499137491d581596f

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fd9e569b84725b751b8a53f47d4a40a8783214dcf9683076b31f4d5ad674b92
MD5 b3391490100b9576d7e1a4fafcc1e7aa
BLAKE2b-256 de4d9e4fd4723a46757e77684f081fe8f573549a603a717e51eda7c9ef9d99d1

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39606667dab5879cbaa3b7af3acd4377b61b5baf766d131d87b203c07a68965b
MD5 c086697264500f45460550db16dee061
BLAKE2b-256 29b9f24af6193a4b1c73af5c246f726846b6ddadf1c559a805cdff69dea6e5d6

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9052c3153daf3727d469b2c1b3c7b31743cf54a1f52503963901d097e4694b73
MD5 35aeab1794130af963e5a3c4087a738e
BLAKE2b-256 518a339fc2f5bfbd76d1c9cb3bd695688a77f8b92ec8eb7ddab1302b32c925f9

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c408609de2622fcd76157860b3d58d44b2c994c302de50bcda1cdbfd54494cd
MD5 054891c66209e95c4b19644c8b3da6d0
BLAKE2b-256 280d61b2e73400ec5b79f941eba09d9bf4f498acd46c02e3e3afce9cc1c46133

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a9ccb243954b1d07ff6be75645023c33a652d064fe8aefec80dbd1088faf340
MD5 c56ea7400de4a2503ac436c7c720ab53
BLAKE2b-256 5149ba6fc4698fcc9ea3f32f217dc4f260c847d0da4790c49151b139fd2657b1

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mdka-1.5.0rc4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 317.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for mdka-1.5.0rc4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4f88d5cb1ed064e783e87696928fee59306c0eef67f198f7b1ddd0022eded934
MD5 537daada8016a7d7b57b07b3a9883c33
BLAKE2b-256 191c1fd67a5134505e968f74cdb86dec84a7ef12f514c6c55c5d97f4583e0771

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da8cd2dcb5ae98cae29fb10d0e3a053271eda1f074b11fc905cfe57e92545390
MD5 35e6c3ddc23d1cc9dbe241b59b169c9e
BLAKE2b-256 5abecb2bc678718f98c29f7410a5302302712e735458e634472768589b4c6054

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f13526207cafaa7657e32bdd81dfb45599abcf90d9e1bb493735581dfe03525
MD5 4590a88ba69c14742c7d344186316af2
BLAKE2b-256 116718c77bb5c9def57c9b1dfea296e0b617362f32f9660c8bf914422060254e

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54e2028aab2b182058564536b9e71fd9df9cd3f2633be757ff370eb889a71b07
MD5 268bda9e9137c259607e89b25cff771e
BLAKE2b-256 c93b4a4f75fa2ceb17a0cc7c4402d0173447af0d2a94eaa44038876d901bfb8a

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34b415493ddb6fb82c16588a4127e6f7a2bc345da5a075cc10a17acefe241f7d
MD5 f160ded9b0f5217ab55803c7dc73ee88
BLAKE2b-256 4e203f9906c4cb1eb371c9078bda0bd8e85a2a1b792942ec0ac901c2a1321cea

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mdka-1.5.0rc4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 317.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for mdka-1.5.0rc4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ce617a210ad045d05ac5e5b1e1576191e2edf61a89fe745a7d86a70d4a9dc8fd
MD5 e748d25cf1eb4900ca5cb12dcd4e34e3
BLAKE2b-256 ab36c62477cc1a99074f7fbc270f1160ed0d61af574c5c8dfc76a862f08ff91c

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97acee0f730edab60adb2c5b41eadeec2785385b4fb9b5531a08ce718e172b95
MD5 a3539e2b55829a0e7623f910e2d8c278
BLAKE2b-256 ea74c63d8154b1c13abb71863ae0929bd1011d6af5dc109144a53a9d71f53203

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44661dbcace1860b973cc0275c48ba8cb4770bd1907ced594a038b06c85132a9
MD5 b8091a11fb0a612f3caeddab2e06107a
BLAKE2b-256 859289d14e77afd3718489dc5079dbbf55653be1e048bf8375640ed657eacbbd

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7977475e27ffdf7e52834a62380fda06532a28e3198d6d5a5612bbfdc002fed6
MD5 b1f68eaadf55ad728899b0792b902efb
BLAKE2b-256 e6a5ae4915754213cf88f9cc016ff907b57caf90c684128cd7aa7da7b3bb50b5

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b89777c9e41f9ec8a3e5c87a63e9b63fefbbf55643d659d27f69494745d762a
MD5 f815562ff38e41b044131170f9160654
BLAKE2b-256 306e483715d064bf81022f449b261c3598f11fa3f69f0244d8b79fd4f3e996d2

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mdka-1.5.0rc4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 317.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for mdka-1.5.0rc4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5820bfef6e6638aa53d5cf77d1d7e6a47ba59051d5d5c539b7ef0dea63568b1d
MD5 0b6e1608f184785f614d4c4bbd23f14f
BLAKE2b-256 5b965c1533ddb23db3b75d052046ef26833e1cb9ae577f9a63558d57b5e1ce0e

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 212f86ba61362e335a0839a07c1d4a7b3bcd7cce20d494204cd79bbfabb1df1c
MD5 e8e13a2307888c41c7ad5692b916db67
BLAKE2b-256 2f70a57c4fd89b82f89160ad756347b9f735f89f5064d56ba6e713ca5d0eec40

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a4ff54a8018e6401e24c6520356014989d65b8a756201da09ce198b25c3c3f7
MD5 c63b3528cef4651da632c50fc978033c
BLAKE2b-256 0293b82c99030794b45b747886c68a6e36b7a993a927b53e325990f085b6850d

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c50d8c45b7cef00da509b48ead8f6f0e0790a35d17762207d8252ef9c8d3e7da
MD5 3c2d9ef689ba621fac7ce849a6e86f5b
BLAKE2b-256 45d5b03d4fe33c51cb1584fcf916cf8f2f536d6f0732cc82d9d2d6ba378a4b0b

See more details on using hashes here.

File details

Details for the file mdka-1.5.0rc4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.5.0rc4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 965d58d83e145ac79bddb638f762b2658643d27f8181b4b1ab5670b5bd81d529
MD5 cef10beafd2f7a9e980dc261cb7dffba
BLAKE2b-256 2f6cedb26ae3e0bd5fe62eb973705f35715a46b56ad62d9fad183b5d3a149bb2

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