Skip to main content

HTML to Markdown converter

Project description

mdka

HTML to Markdown (MD) converter written in Rust.

crates.io Documentation License Dependency Status

Summary

A kind of text manipulator named mdka. "ka" means "化 (か)" pointing to conversion.
Designed with in mind:

  • Fast speed
  • Low memory consumption
  • Easy usage

Usage

Executable

Releases' Assets offer executables for multiple platforms.

$ ./mdka <html-text>
converted-to-markdown-text will be printed

Help

$ ./mdka -h
Usage:
  -h, --help             : Help is shown.
  <html_text>            : Direct parameter is taken as HTML text to be converted. Either this or <html_filepath> is required.
  -i <html_filepath>     : Read HTML text from it. Optional.
  -o <markdown_filepath> : Write Markdown result to it. Optional.
  --overwrites           : Overwrite if Markdown file exists. Optional.

Examples:
  ./mdka "<p>Hello, world.</p>"
  ./mdka -i input.html
  ./mdka -o output.md "<p>Hello, world.</p>"
  ./mdka -i input.html -o output.md --overwrites

Development with Rust and cargo

Cargo.toml

[dependencies]
mdka = "1"

awesome.rs

use mdka::from_html

fn awesome_fn() {
    let input = r#"
<h1>heading 1</h1>
<p>Hello, world.</p>"#;
    let ret = from_html(input);
    println!("{}", ret);
    // # heading 1
    // 
    // Hello, world.
    // 
}

Python integration

Binding for Python is supported. Python scripts can import this Rust library to use the functions.

Install:

$ pip install mdka

awesome.py

Convert from HTML text

from mdka import md_from_html

print(md_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 md_from_file

print(md_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 md_from_html_to_file

md_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 md_from_file_to_file

md_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

Acknowledgements

Depends on Servo's html5ever / markup5ever. Also, on PyO3's pyo3 / maturin on bindings for Python.

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.4.1.tar.gz (47.4 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.4.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (615.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.4.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (616.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mdka-1.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.4.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (615.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.4.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (616.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl (614.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

mdka-1.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl (615.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

mdka-1.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

mdka-1.4.1-cp313-cp313-win_amd64.whl (315.5 kB view details)

Uploaded CPython 3.13Windows x86-64

mdka-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (614.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mdka-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (615.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdka-1.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mdka-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mdka-1.4.1-cp313-cp313-macosx_11_0_arm64.whl (368.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdka-1.4.1-cp312-cp312-win_amd64.whl (315.7 kB view details)

Uploaded CPython 3.12Windows x86-64

mdka-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (614.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mdka-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (615.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mdka-1.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mdka-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mdka-1.4.1-cp312-cp312-macosx_11_0_arm64.whl (368.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mdka-1.4.1-cp311-cp311-win_amd64.whl (316.2 kB view details)

Uploaded CPython 3.11Windows x86-64

mdka-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (615.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mdka-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (615.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mdka-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mdka-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mdka-1.4.1-cp311-cp311-macosx_11_0_arm64.whl (368.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdka-1.4.1-cp310-cp310-win_amd64.whl (316.3 kB view details)

Uploaded CPython 3.10Windows x86-64

mdka-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (615.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mdka-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (615.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mdka-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mdka-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mdka-1.4.1-cp39-cp39-win_amd64.whl (316.3 kB view details)

Uploaded CPython 3.9Windows x86-64

mdka-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (615.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mdka-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (615.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mdka-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mdka-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mdka-1.4.1-cp38-cp38-win_amd64.whl (316.2 kB view details)

Uploaded CPython 3.8Windows x86-64

mdka-1.4.1-cp38-cp38-musllinux_1_2_x86_64.whl (615.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

mdka-1.4.1-cp38-cp38-musllinux_1_2_aarch64.whl (615.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

mdka-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mdka-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file mdka-1.4.1.tar.gz.

File metadata

  • Download URL: mdka-1.4.1.tar.gz
  • Upload date:
  • Size: 47.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for mdka-1.4.1.tar.gz
Algorithm Hash digest
SHA256 9b1ed3ecb48cd35ff898da2b8f7b81e60f661665e00d84c9a4dcf760d7694b1b
MD5 1e2be5840e34b0645cc82d9c917fe82a
BLAKE2b-256 672c570b4e255c08fa9025bd597bf80f3dec31d64cd05ee222450777afd9c60d

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c416535c32e5289463cc43834f55c894be0eeb065366b44555528bbd919f2866
MD5 f6ff02f873e13a169f79ab8aff23cc0b
BLAKE2b-256 518af83ea7dee7f8321f5e71a8dc95d6326934fb836a2dd16b0f202232673118

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38a6f1c1aa8dc02bb4d47c46e0840d153b13fc24924a6ca60275f72495159f13
MD5 aa3636e2d52f6d36ea14023ec260dbb4
BLAKE2b-256 44f8fb853eb4c4368d7797317173fd9be16d23ea85bc871119b8a4a543f2021b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c52104d5694755a3fc2cab75d08bbd9d45a30e82c1efde126d605cdada949e77
MD5 d02c1ffc072a55dfc0289566742f9465
BLAKE2b-256 842b01672bd3bad6041a6ee7402c5d58eaf183d398fcfff006c091b80b6e7b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94464a919828403eae2d19a0b6e79af60f503837a67ab563570ea493f6d4d16b
MD5 5d0263e0f6cb6f93e698b9016a336dac
BLAKE2b-256 971daf2c890359c30cf01169eb79fe5ea5f7bf9f195f40e769d30a7bfbac45e8

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69682de2ff86b71936196b0eb1f13daa6ac00435f7d546bc78b9145a5b2ff7b3
MD5 ae2a695e20f40787ef00665cf53ec8f1
BLAKE2b-256 728f8d7cbea981eba3894bd8bb908acdd4ac2c8c964950c52bb3dce67077d1bd

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e48ac799d2bd46b0422bfa6c821440320601abaeff70072cec85db233b5541c
MD5 aa092918aa9ca6c415a2e15f01810644
BLAKE2b-256 ffad17238f436de90831195eb926b6c4160291ebf2db4ba6cb1f23698c33b481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b722c0b4f5ead8915779d7bd3cb61dd1dd86eb4b4e431547af86668356bc1e2
MD5 d81aa68a50fa75e0f06a46d4ce0b61d7
BLAKE2b-256 13cca5390c2f898b7cd8231da90c37e3dbc6340e4e42618f7eca40d4bbb27fe6

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fd433b1d41afe4acb72c59aca0f0c94cee2411cb34c4c7597344a38758c0ae3
MD5 47101fe07fe29e9dd79e96bf4d80be61
BLAKE2b-256 7c986c2e76444fd7caa07ec524946dfd1e4a20f0cb32e82f3f798596991b86b7

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97f05402b7f2881e628d6a8c5b96a7593b9d565593815875805c106dd563a785
MD5 111cd20a5c7c721c63efa7865a292471
BLAKE2b-256 7e9d64c122f0a272f883f88e75db98e6532d5095dbbd3724164d5cf362f961e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8028a6d4f97ca7f11d7366af5ada0ec8ab418641dfaa70a8725f76b3b951dbab
MD5 754e0dc4edbf53c87b4d6eb9ac520c44
BLAKE2b-256 c20a2cd98d274b43ebb1cc107cd48eab7c2f6120e4d51b858f916d8d4c172425

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for mdka-1.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1c0b0c8e38628959e99682d600dfe2595622793550f8072be455e95d8f8cde9f
MD5 26a9172121061e26c8734c0ad0da562e
BLAKE2b-256 22cc69504d4cee68b66c2839b19ccfce14ddfc73dfb19252632395b5858932e6

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 421bb0bd3247802f3412b47b1b8a50a66e55d94ee1a11a9521aee7598caf40a7
MD5 c2dd448cd4785913a4f05241c089e839
BLAKE2b-256 6049d08794364dc45320bc8a4b68fa5e1e637b1b14ae3a671c19d695445fc9be

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed0f358d6d60cfd8baabc94bf15ca1a6641afb2e37e1ed6e1099cec081df4c43
MD5 8dbd2c96e4b7fd9bf86b3a0f7cb38a25
BLAKE2b-256 ecacc273799b42e9fb2b96fcef03d5be00278a14ca98c5a17e21a3d36b818787

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81715edf6f8f9851ac29a33d4bcd8844445b8d1f5d83a1110b37d6acecd2d518
MD5 c5cc37327660cf70f32e88e1780bd367
BLAKE2b-256 64598147fdab94cc2dbc424bc190c95bd7c1d7d64708ac7f360c23492191c151

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4de622bf7904ef6a9862120bbb9b5611a86e4a7b953a8566272e757c1b777d8b
MD5 36ff951fadb76b0605b1974f911f0aa2
BLAKE2b-256 4048d4d26f82a53e7ce5a2edf826fe908f5d0b836f0c0c47d547e9e23d33f636

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbdb5bc57de442e2cf7f97b2f0d3880b85c72c26d58dfa4bfe2917e8ca74213d
MD5 c0958f690ef9fee3340f1e91eb14e4fd
BLAKE2b-256 d161cbcb764fcf5bc9b2aff917d6d05061d445d767ee8258e38c59c453162b04

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for mdka-1.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8e1187e317a85388e27f1882ae3f06539fb81391fa7a1491f584db84fd33257f
MD5 b9b4c4c97b6c52971ecab12e6ab7c612
BLAKE2b-256 870a365141f965c349174792177e12ac428c60cd107ef9b38a58af47ec281f4f

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e55f31f8ced62d46dcededc1da85a716e92464c63afc77caef7f06e178f8f609
MD5 a40f25fa6dbd2b1977add23aa67d0b6f
BLAKE2b-256 f1ddfd83d9709892b784525737b661af0e63b3e60b009f18db5fc6a3e8d0f210

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 109f59e363fbb8218cc7a586bcfe9f23851a296ad7cde74966a7eb55479f6953
MD5 6f025c081c00327f9009f1f1b65727cf
BLAKE2b-256 0a54a33ea4dd4b7f78e7d07dd0f8f0e66cb15c2ce07b77f6e81f1b32993cfd7e

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3129bee837b8fea89518cd098937aaf012e140d809dd2bb0452b31d1ab13b73
MD5 8f919fac915c7a44fbf830b84f0d819f
BLAKE2b-256 c7c06a098adc34409dc81d974a73daa4e6c86d5a199db23cd9d1c8803d715af3

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08e40c1c31613e6960ce29bb6c1a0d1b288361acf40b0da2db61b5a917b9d187
MD5 7200afe63347f4d371c3d9b7733ff96b
BLAKE2b-256 b18638957cc8ffbad5d929494cc508a52966c1b7435182dda6c763bbbe5148e3

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a9ff1269c99e1884e758f2201ea8c17c3740238b45fe62319c15f877bb8a48c
MD5 9c71f54f6f94477b3554ba8dce40de61
BLAKE2b-256 c5ec774712adcf7b1c88c498c6c4c7b2271a809a851ee4cb2d90daff1d1b9765

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for mdka-1.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75138ad3600ecbc8ccd7728bd2088c2f9b77ebe531675fee983fa5e13535f9dd
MD5 b2f1431cfd95db63235c0852d440ba72
BLAKE2b-256 ecea2b856cac121537d30fd3340dd5291b908e0534a4c039796e33863a9abb5e

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80bf7693c1d8f5e6ce76b143d1f6012a6662451251ebdab011cd670dc40680c3
MD5 034bb60c8df8e5bb1525a0542339fbed
BLAKE2b-256 c5d46cc29a730a6f12a5c4d38c6d965c19f27ddc72cce43c203fb9d014b8dad7

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62636efec6136335e2ec0819bdc2f16b7866f0f89a2c55e8853d828c578ce2d6
MD5 a0566c493a3ec41ed280b346e665a4fe
BLAKE2b-256 3b8c372b7c2c8cbcf399ea9b9ca658ddb51561fc59466be0a485ffb44353d9db

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a351376fb5112473209e52c092021cc3d396be324b8bfd4a04bcc2a35412adc
MD5 edd320e6054d38975f13e10741a42f5e
BLAKE2b-256 b1e5a5347f31b48e698d64a5c8b6b96d4703a6e5850f74555a88883ff3682cfa

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53f7dfd37f8d0b8dcfdc725fdba7438ec813b11be5a06913a0e077c0e9212227
MD5 1423bd24e797a80230240403556b1296
BLAKE2b-256 d364fc33a0af9329d7cd45bbe4867af6baa03bd762b26592dad1f59a71caa388

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3899fc6d0a0adbcd526d2ae43d231fa9e9cf0bd9347474e85dbc68e0c170736c
MD5 3734afc30bbfdc810518d35c0b6b0e13
BLAKE2b-256 1bcd3c27f5325d3f61fcb56bead659e8652d4eb5eea63ecf75b006cd14f39ff7

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for mdka-1.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c081b4dbdc297208d46a060fda4a59e7efa4701d26c0043c88d7ce1359c99c98
MD5 097fe4a5e9082a4b141df7a3455cc6d1
BLAKE2b-256 e439bec473dac10f93bfdfd658294eff84d12ee74eeab37b87d86101b2e4061c

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65a68b86afcb0d0bb32890a71564b3d95efbd9d6bc5036ded42ae8334a520859
MD5 40275fb079aa2c3444268b55b11edf8a
BLAKE2b-256 37380135e8d05132bc134426ae5b7b4c383424f25dc95c668a1b443c31862415

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e7732dc4d1b18a1ddf4ae26b608ac9bef99fbb4f2393e3b08baba3845b58dbb
MD5 338ed72974f58a66fc7acd06460d8b3b
BLAKE2b-256 3eff08a15be4f1c081fe1a59aa166c7a8f855b9207bf91f22bf44ff3532d919f

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78ad88a8d645940303f29a0374fe457c9834c23cf76f13a5736647eb49cce2ac
MD5 30a37e78883e38fe634fc317afb21ee7
BLAKE2b-256 36b369b721c751be9fc9b4a7623fff3ee2b3dffe7dcab44a9fb240b258be3213

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 783cd2d4209de673a33cb762f9abd5d7f274f94854d8cef4f61b570d0bd50475
MD5 88a83774aeb2134cddadf77438946c46
BLAKE2b-256 2e05d7185252fc0845724784443afe2339e17c5d34b56a3e25ca8216b20eb8e0

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for mdka-1.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a7c0a6a1f455540a3da2b8c1dc790d9f092460312c3bef8fd6b8e2eb95db8379
MD5 deb6ad11eb0659da82686f43b80597a6
BLAKE2b-256 66fcac3af0091f1c4d4eece74526e0825825d15da95afc5fad301ea46694f1c5

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1992acc2a022632d0210141f31032738a185dc050c6fa0e920db5d42c0ecece
MD5 696d7502ed4769520ed96d7b79d5b58c
BLAKE2b-256 9fdac032d7bdba700bfd6d45d8657a75ceac1e8d4dbb6ce201075434b1e4579d

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d29d30d5544d8774c7560cfa3c0f939510bf530a33d3657f3c5f8def5d66ca17
MD5 ac674f4e55bd2ec2d0d880b6bc7f8636
BLAKE2b-256 d2e8492e9ca4051eee3e3360efd1402373570680346494f4d9e7aacaeb5a5668

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7581e9ab6e239930cae93ed2041abc3bc7bdf83dac318bed6e24e2b1033b0e06
MD5 13772b91335e1acb27b5d60f59fa3661
BLAKE2b-256 cd82f77337469091be9a7ec5c432c0c67b0342379ff64755b222149c2154ac39

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e730e37aa21b3218f5db31c8979c48bef1c202c64f93fcb038bcc00627fd14f0
MD5 ea63082dc4f36f7ce061efef9a3e0583
BLAKE2b-256 904aabd6c8f5021f90c86204b3de914e7a78572e34a33fcfcacf82b34f0e21d1

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for mdka-1.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 40b385511751413d0e5c6757a8ff0bf4949d082ca9e736680e72b54dee25e362
MD5 cf2fa517a4c160ece955ebf4db2e7552
BLAKE2b-256 53334e67bb005fccb4583086b0af26226be81695f561d9e6c407cc30d82546ae

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93890d960f173c8b381434e14fac815db22d0e3fae83dd7144fa83c602b9f582
MD5 a5a34a6759a4709a8a9313efbc350017
BLAKE2b-256 e0d4744114e99b732a13a11b2583329dbeb8eb44f19427f6623c65f9b64d7e1f

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccc6e978d4e78923517f3e68304c2437602a02dfdb75b0b43fbd56787af0a638
MD5 463eec5f88f50284a6c90d4a9ff033d5
BLAKE2b-256 9d4d7b1c003470857016c9188e83dad7dda42ebb69663780bb2e5ffe34acd0ce

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b99bfb285529a40144cf93c18128400a3ed32b010e06fbf91de0f7714ea2e1c
MD5 31f66dec9daf1c0eb6d470deea28683e
BLAKE2b-256 b9f2e9c847f672cc5679234bb180290db11268beadf1e13fef5d7a4ea6fdc035

See more details on using hashes here.

File details

Details for the file mdka-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77f6a40e7870767dae093a3524badb16ecf9761e21bde451827e62526b5ec576
MD5 afa65afd90f27c0dfb8b1f86ebb8284f
BLAKE2b-256 70cb639333e5f99cdbf8b73de85407d738021a6e247a00f3c4c8d669ccd4fea6

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