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.0rc3.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.0rc3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (612.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.5.0rc3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (613.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-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.0rc3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.5.0rc3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (612.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.5.0rc3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (613.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mdka-1.5.0rc3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.5.0rc3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (612.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.5.0rc3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (613.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.5.0rc3-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.0rc3-cp313-cp313t-musllinux_1_2_aarch64.whl (612.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-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.0rc3-cp313-cp313-win_amd64.whl (316.9 kB view details)

Uploaded CPython 3.13Windows x86-64

mdka-1.5.0rc3-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.0rc3-cp313-cp313-musllinux_1_2_aarch64.whl (612.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-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.0rc3-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.0rc3-cp313-cp313-macosx_11_0_arm64.whl (370.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdka-1.5.0rc3-cp312-cp312-win_amd64.whl (317.0 kB view details)

Uploaded CPython 3.12Windows x86-64

mdka-1.5.0rc3-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.0rc3-cp312-cp312-musllinux_1_2_aarch64.whl (612.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mdka-1.5.0rc3-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.0rc3-cp312-cp312-macosx_11_0_arm64.whl (370.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

mdka-1.5.0rc3-cp311-cp311-musllinux_1_2_x86_64.whl (611.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-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.0rc3-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.0rc3-cp311-cp311-macosx_11_0_arm64.whl (370.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdka-1.5.0rc3-cp310-cp310-win_amd64.whl (317.8 kB view details)

Uploaded CPython 3.10Windows x86-64

mdka-1.5.0rc3-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.0rc3-cp310-cp310-musllinux_1_2_aarch64.whl (613.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-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.0rc3-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.0rc3-cp39-cp39-win_amd64.whl (317.8 kB view details)

Uploaded CPython 3.9Windows x86-64

mdka-1.5.0rc3-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.0rc3-cp39-cp39-musllinux_1_2_aarch64.whl (613.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-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.0rc3-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.0rc3-cp38-cp38-win_amd64.whl (317.7 kB view details)

Uploaded CPython 3.8Windows x86-64

mdka-1.5.0rc3-cp38-cp38-musllinux_1_2_x86_64.whl (611.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

mdka-1.5.0rc3-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.0rc3-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.0rc3.tar.gz.

File metadata

  • Download URL: mdka-1.5.0rc3.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.0rc3.tar.gz
Algorithm Hash digest
SHA256 856b91f8348f4c4c16becab6c2cb2faf3520fd448bb256f37d3a1c93cb507090
MD5 ff2ec38a81110f1b3480b9c417d697a0
BLAKE2b-256 e87ee4a9db874aaed21a6ca118182c496c46ab7a93c6871b006ec2e37e82ca59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19286e1587cdecf4cb38c955d23f13c65ea60509129154ba59a329c4f4831dd9
MD5 6a552f47beefd57c2f78840eb136a1af
BLAKE2b-256 c52ed5e98600594de46a36297a0ea146e1867d8fc5a45cc0ca15ed715800a3d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f8b9d5e1f4341647d7ebef4b20d19f3e872eee85e29477457a51e25c344a415
MD5 ade8d1ed4475daa5ff7cdea494901262
BLAKE2b-256 f4b18f85d745b500d97c72b51b4e36f9979db1b1b85326f3cda50fba6f60c96e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b61bc4799fbe7c28629b712739dcc39e220fe2bc12a984ea7b5ce5f0fdf86ddf
MD5 f3ca3cb567e30b86ab072685c4daeba1
BLAKE2b-256 8bcbaa708348a13828d090e669a1fa115aaa8fed3cceb6f17dc48e0e0fbf2576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f0cfc811776d35af9905f8d1a9b251c9c9c6e6fbd9a2c6fd2bb684fa27c4c12
MD5 febe84961aed7d1130c0b97a4d08ad74
BLAKE2b-256 9553591785546e5331a6b3a8dfdf75b36ff45e806aea078d539131496e08e489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05eb22cc0ff0f521686e674dcb2a9c5339746ca30afb42925428f357e88d79d3
MD5 febd3f108055c07fc6ce0045ed2beb47
BLAKE2b-256 8aa76ba16b5ac25ca47b04d474f6fa33ec099ec7af67aa98fec0209543a86fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 590dac161054a0af8b3ad9e70b035acc7b634d1856489a437c1a4e2e028b1f88
MD5 c075a9fcaf8246cfb3cb974d28adc6c0
BLAKE2b-256 fea6401afd622859f1f3b420edfe0a835e630f9639830330a39aaf3c860aed7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00f07987dace3fd8b8b18f67a700f20ae035284ca4a08ddce12f03c413a94fce
MD5 99541ddeffdf51dbe35d43321eee416c
BLAKE2b-256 1db03ac662de4f313fea5ae5238970af55f6f3650aa66d6adbdbc9b63f1a46f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ec83d30cb55e1a903a9a8d35c4e07de0dd1ac75f20316abfe0497b7362b532f
MD5 4b77cbae59dfb7195897a77cc7ae9467
BLAKE2b-256 dcc7ec610a7812b3d163c346b775a38829dfad6e51cc9833be9e46d61a672bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e703f1ed043dc03eae9bbf56ed9d46d29d524a6fa429df987f6c3e43c8c13f17
MD5 327483a4f4c0318445de9b0262af4ece
BLAKE2b-256 d871ac30083d8ad255c0d2851eed9c6cac9f257b7ccfb42fb4d1f7eeacca7af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 049c442d8383a16e324cf729d3256d68514d3ab9e72409ab25010a9f8b21aaf9
MD5 4448f6bb9ae9c392fdc12b4727a2024b
BLAKE2b-256 fff52c621218406c90e9fee29fc85b4262c857d463e1922213f12b06d68cb166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9696ce5efdea3aeb7e922b7a4ac16a5928ed347d4dd8c617008535489a09abb
MD5 11ff9704f0dc6c94d0708fdb5646842e
BLAKE2b-256 563d9fa40851db7e893f62be1f9114bf9ddb86ab6e40e2510544106e3a668d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 687be142d8f539643a2e388173c859ba6159def025df149413767185971acc09
MD5 2806256cb082ce38e50c3344ec6df1fe
BLAKE2b-256 228e25643bde58d64522fd3336401700d4b148a1fcc32ac314d8b54f2326d59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed91334fe00f2892126fc834c0c3472a4c778513693e5604ab4206c7a7326b5b
MD5 9191a2dd796cc0cb223d98ea66693299
BLAKE2b-256 73dce8e371524847da2354eabb083eb745346e284cf22c4986ca3d4474b08e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b84b69d602ed026573fbc43256259b20aa32838fff6bf5c6540dfba631017f9
MD5 537426653ff031516db223126fa6269a
BLAKE2b-256 e8fd25e57e5790a42ca2834781de1ed21898c21e4a10839a3840c5c64b9d81d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mdka-1.5.0rc3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 316.9 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.0rc3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 944062bbce7814c00c8e58e377259bfa878317b5d2d20ac054c93efc78080fd5
MD5 2dbb8b67c8005f95d7dd8b602003b13b
BLAKE2b-256 3b42e30d06f90e0646ac7cd03e69813cb35aafccfc77c39c294a92b7dd5c5c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6012bb78958774e735d2bce625310d4a94e84ce7c07f625591e611c014f3726
MD5 bbeb186cc2362e1ccafbba030ef0e1a4
BLAKE2b-256 3f9c59985e57b5b29ea89ddcc43892fb918837c723e045601575065d27e295c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea5d05813315294e8e50dba81fbc5590eef682f568c18f7a9f7bfece541a1f7a
MD5 af49655a617bdab18dc912d0e6a454f4
BLAKE2b-256 ef6a134c0eeef99bcfb3e51271cea784f99c383b0f1c4132973c06290aaeca72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e919b95f7a175f4e8a0788009755438da1bb1d9a23b1b31987c4534c3665fee
MD5 6d2b7244e9c79ff60b393b775c36ff9c
BLAKE2b-256 64617aa45bf6057d022adfab91448fce59a91e32de0578503b9f901f8cf0b6b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44f0c3e1ca8d705279690d3c59f7ad9e782be91d907c68de456b09a176f41c83
MD5 7d8aa048c7784f1196bd7c31acd668cd
BLAKE2b-256 42334ee1ec19f1fc432a1a3b5d4a218883c94de16f935caea1f3e6dd709b2fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e598a58f69c985653fc3b74ee20ab71e1dd1528bd2f2a14831386929d510b93
MD5 dd578ec855d040deda50f1116dd13b63
BLAKE2b-256 9699c94eeb9b8c5243d600aeffea8567b376a83e90feab7b7515f4ebcd67fbfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mdka-1.5.0rc3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 317.0 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.0rc3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b16455a21078824026b9358a654dab93067a80a5d4718cbf854cbc5b07893a7
MD5 5f40d78650174f7e205d31e94ecd446c
BLAKE2b-256 2c9d40ccac1c0aa29312f83fb33c3f705865459c4e760919a89dbdd1070292da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f0acd26a6b289222b212f273c5310e772623fb949f9410073cb2397ef61762f
MD5 b8d35205371b894955d03e2ccf1ccfd0
BLAKE2b-256 af3415933695415ad5973dff96c55b77228573ac81073074c7905af8683d29a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6e7ca06c9269cb45658674daf10e917703da053f27f8d099aa89b0d67133375
MD5 7bdd23addcb54c98f8a9a19f2e100246
BLAKE2b-256 6cb28fcaf7afbd452df8911a924d48029b90a65719f12362ff9a10bbb6d7f424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79524f991493cc795068a0387038c0dfbbc0d4922ebb15a5a0a14d184b33bd6d
MD5 fa3a1a4ebada021f63773f049d714835
BLAKE2b-256 bc1af913acf66274da272dbc72d486202b0d98c5e3e6848fb8d877e31f055270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39339220cf757ecf59b78420776d46943be0f0211ccad1062f8765253d37f35e
MD5 b31956661bc5dbecfca25d8ba1e68a79
BLAKE2b-256 8c7b1a0273a297f70ffccc8a69ed42f60d7122c17ccd38085927f76ac3265510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb8f77d76f8343bd4c3569f30357107f1135be238eee160281a25799c1975705
MD5 a7394dbb49586afef108810510171438
BLAKE2b-256 262c0416d5877fff12fc9b3a8977fcf019d1170ac2822a26ecadc8b14cbfebda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mdka-1.5.0rc3-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.0rc3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 da30b351baf9fd55d09cac83b47310a3d3f385a51d67b9882c6de088b695fad9
MD5 6af995a1d73de8f82f3a2a7aa8d9acfe
BLAKE2b-256 73bfec4266873b272a4c9b88adc69c3078b34caf7ee9e718ee48a6d2562aadfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65adcc218e3c29107304595485ca7e026e9830cfe221a7e2efbdbae69e2fb391
MD5 0254285ab23a63a837f4c2c0e043d7f5
BLAKE2b-256 d5ba790efa2653394427e936974c976fbc60121d62bdb505ea76def040e5a31a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00d0f4677cdc250d8af7629d96d51d069d2b8ebcf11f01fddbf7ffe8858455b9
MD5 40839fa89339274dd8fdbc9f68bbec03
BLAKE2b-256 e1c972f6dec38d39e702be8d72a73934beda1df6e92c6318c441a0e702fd19dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ed33114c75b5ee44085dae63d2e4325d16e7d0a171b5aff848a2ab45a5b21ce
MD5 da66fe53fd72059bb414e9cf6f715be6
BLAKE2b-256 545af3e9d47b7ecad05556040ad54c04d83ea5d9f74a27181d4ed2efacf6ec7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 941d58e5d4e111783eed96283f58e5f0518fee8aa2842995b278dee3bfbdd382
MD5 509953daab840b706e2e906db52365ed
BLAKE2b-256 d97340edf693a188e3f53d1fa0b8d07630801bfedf9b315fcf359201db2635df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93a875a22dd58687df99f189e9f56febf1f70a11392f38663c80e7c5c6ab39c6
MD5 ed7a965e8c749f0e2f3a68b9735852d8
BLAKE2b-256 c4bc8defe03aa736b7433e34c761b26c6cc50f9fca8e77f4b28177a67c81df94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mdka-1.5.0rc3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 317.8 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.0rc3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81fc552d60191f4623dd3aabb9f57bce4fd89d01b190cdeac91d8598fcc3a873
MD5 830ca0acb4bb6590dca39bc77448ec83
BLAKE2b-256 c62d4b9c2485ae037ac759473d009a5ea2ca7227d1bdcbd189ff7f55c078d9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d20bce8402f480e999eda170af14edb8673dcdc29a5455d3ea941425da33728b
MD5 81bf77e7e8f39d7efdb89f4675f9aa32
BLAKE2b-256 91db53b22ece62c0b8453f0c549ffe41beb7cb8f66342a3973b515459eb3d28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae18731045fd49bbeac3f5ff3148c6e681cdef94fbd61a4307bc64fe6bd378ad
MD5 566e57e632ba8c05808826d4d55ff45b
BLAKE2b-256 d0cbf845bffa2f4c90f2bc5882759df88aa8adc00342bb39ca76507868d2c438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf1b0d9bd9d577e6c8fc45b4616408e70dce89795a5ad8e4a04e218610fc4870
MD5 09108601ae5aea955b0da2395f9de60c
BLAKE2b-256 0582519c56786d9018dda7979ae31922c89dcc003cd0e880772c2ecd8d892a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d3b7aed14f21219af9f0530408ebbb51ec752005152bef1019c0ee693be2d17
MD5 e4f647a4b1fac0887b17d656cb61dbd6
BLAKE2b-256 bfa8913685df71dade24fd0e982775e7cc3591e79e4016fb41c5d3dcdc358594

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mdka-1.5.0rc3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 317.8 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.0rc3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bac5ed79add5a8c157c7021c9dcbaf4696de586b1baa959b6a669ba3007ba71d
MD5 75e817f112f9b2db602d0f493d49f5d2
BLAKE2b-256 54badf4356ce18c4749b4eb5bdc1341a37fd0928800cf2c129c45abd143484dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 756e603d1e6811a31e72010ec27e68a3e7570fb06d9e24fba52b8fd15e7182aa
MD5 21dfe6cf6ece3f392427a9e20f04c219
BLAKE2b-256 a8b30258c36a539406d2699d775d68c514479482b9b5ef76a7edf74cf096f86a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc8a02c2d10281e3f7738b86915840f72d62c96322b12586ec61044b0d61fb64
MD5 51e72ed1e0209863f5ba125fcb26db62
BLAKE2b-256 56ebdb980ce8bc1f576a8ce14c09626042aa2bcfb59a14d8f03533cc7fc61633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d28f518cc906363005a49786515c6759216678635d7449163749fbd134b31e91
MD5 11d73ab4a51398f3d2ad5979b5322070
BLAKE2b-256 fd652fbaa83c92847b55ba5ef9e1cb946ff5493ca4e5dbe5589a2c143430b068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fcc8eddb2ad1a377f4f729901f905359c9ba7598a1ee1d797ea6e6eeb90c5db
MD5 90386e2a0a2ed9e40bfb62adf3da6a85
BLAKE2b-256 36afd2cb38e03e513b48112578bf66d48a770e9865df0d235e69a80db7d800cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mdka-1.5.0rc3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 317.7 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.0rc3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a3825d503d0b42840241e30e741d35c7cea0b366b3ef27ba733e89dd431fd70b
MD5 089baa23cd6a32282a95c4f3bd53519d
BLAKE2b-256 f41e34d0cd440f5cef11fc127e0bb8044fb599daaf9a785a82bd6e033d297251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67aee5865da0379d1d324d7270c4fafef419dacb485ac7cbd6e3df63caad79da
MD5 7203219a050c86c5f42b9ec612e26d89
BLAKE2b-256 f3de63c3e8c30b071534cf4b9f3c9fea6e2ccb8c248f8d6e9e96837005025527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39fd2685ac83006857d826b800dd9f3e043ad6f2995df344f71a892f302701ac
MD5 374a797bda27c7514e40059da8eb27a9
BLAKE2b-256 f146faeb55554c799e7351354bd800c7fefcf899bd33df906752cd6abc1730f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 353db8e7168a47febfabecbff7568e018270b9171d018654513ab2129de3d195
MD5 5848f6eaf5b983667c7f233af8b8a8e3
BLAKE2b-256 78c479e5f3300efbccb1597a305e3ec0e599083470e0565fa846d71fd4f4539e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.5.0rc3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c71b24567b426fa31e139e842871b754f53873dfbdec4c9bfa1f1a391d78645f
MD5 28a4ffee096dab4d83d8fd80702bbfb3
BLAKE2b-256 2347126c5e4d32e30fe608d3824701f1b27a820d412433dc557d5540edcd5689

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