Skip to main content

No project description provided

Project description

mdka: Bindings for Python

HTML to Markdown (MD) converter written in Rust.

Summary

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

  • Fast speed
  • Low memory consumption
  • Easy usage

Bindings for Python are supported. Functions are available Python scripts can import. For more details about functions, check out the docs.

Install

$ pip install mdka

Usage

Convert from HTML text

from mdka import from_html

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

Convert from HTML file

from mdka import from_file

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

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)

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)

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.6.7.tar.gz (75.7 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.6.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (657.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mdka-1.6.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (622.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mdka-1.6.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mdka-1.6.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mdka-1.6.7-cp314-cp314t-musllinux_1_2_x86_64.whl (656.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mdka-1.6.7-cp314-cp314t-musllinux_1_2_aarch64.whl (621.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mdka-1.6.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

mdka-1.6.7-cp314-cp314-win_amd64.whl (319.2 kB view details)

Uploaded CPython 3.14Windows x86-64

mdka-1.6.7-cp314-cp314-musllinux_1_2_x86_64.whl (656.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mdka-1.6.7-cp314-cp314-musllinux_1_2_aarch64.whl (621.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mdka-1.6.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mdka-1.6.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mdka-1.6.7-cp314-cp314-macosx_11_0_arm64.whl (374.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mdka-1.6.7-cp313-cp313t-musllinux_1_2_x86_64.whl (656.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

mdka-1.6.7-cp313-cp313t-musllinux_1_2_aarch64.whl (621.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

mdka-1.6.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

mdka-1.6.7-cp313-cp313-win_amd64.whl (319.2 kB view details)

Uploaded CPython 3.13Windows x86-64

mdka-1.6.7-cp313-cp313-musllinux_1_2_x86_64.whl (655.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mdka-1.6.7-cp313-cp313-musllinux_1_2_aarch64.whl (621.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdka-1.6.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mdka-1.6.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mdka-1.6.7-cp313-cp313-macosx_11_0_arm64.whl (374.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdka-1.6.7-cp312-cp312-win_amd64.whl (319.2 kB view details)

Uploaded CPython 3.12Windows x86-64

mdka-1.6.7-cp312-cp312-musllinux_1_2_x86_64.whl (655.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mdka-1.6.7-cp312-cp312-musllinux_1_2_aarch64.whl (621.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mdka-1.6.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mdka-1.6.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mdka-1.6.7-cp312-cp312-macosx_11_0_arm64.whl (374.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mdka-1.6.7-cp311-cp311-win_amd64.whl (319.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mdka-1.6.7-cp311-cp311-musllinux_1_2_x86_64.whl (656.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mdka-1.6.7-cp311-cp311-musllinux_1_2_aarch64.whl (621.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mdka-1.6.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mdka-1.6.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mdka-1.6.7-cp311-cp311-macosx_11_0_arm64.whl (374.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdka-1.6.7-cp310-cp310-win_amd64.whl (319.7 kB view details)

Uploaded CPython 3.10Windows x86-64

mdka-1.6.7-cp310-cp310-musllinux_1_2_x86_64.whl (656.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mdka-1.6.7-cp310-cp310-musllinux_1_2_aarch64.whl (621.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mdka-1.6.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mdka-1.6.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for mdka-1.6.7.tar.gz
Algorithm Hash digest
SHA256 83b41b057442bb2ff2392a10d174e012eb1f9474cbc2d75907ae02b865055615
MD5 f56e6a22cac90d7345c5e11349148439
BLAKE2b-256 8ee76d28ceccabacdcaf85f333cca9caa42b57428be47349a1e1b15ba66462b5

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0825fb3d882a4155808b71d2ad89a27688c5720a215e8aca6733d3103117c067
MD5 b548e3241f3b7462baae065410e42531
BLAKE2b-256 456646df7c464bfbbf17ce1e81c30e3ee04df5969c80849179ac202cad5d38e1

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c2a57f2498829b9934297a0e5dcb051e7225c78aad7f565b3340b9f0b78075a
MD5 2a7de7ced62b2187c7ebd8e07d2c0f2a
BLAKE2b-256 3c11506b11deb0ed988338fd4f7d90eb401675da0b5a57a188b41e43fb8a9c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71f82a27374fdcb449fdc8fc9a2e72fd75476d4ee8400de329beff8f87f334d2
MD5 aafe968c92988b9d66365b784459f2d3
BLAKE2b-256 4cad0001f24997389eeb3081bcf978ea96ee7590dd5378ce050e038709b9f01b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 943acd7632769795b5c354ea7653ee6517fd0a1157ff8fd41b6eabe211a1d5a0
MD5 f83bd06b451b879f5246f30e7a334b28
BLAKE2b-256 87db55a66ef3de6f6d1cca29d6b57f2e926ecea61b110344fb511631e7aa5454

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f11d3a90a938eafbc5dfc0066832f6f424d5c6151f18ba6404934a9a7c573f1
MD5 7df2eabb7385676969fd5f1066e19cfa
BLAKE2b-256 3c22f5e00dfd7abed384e3ecad7f18bc49d10010d62be38927b40be28ceee416

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0f5996d77b935276057aac55874ba35f17dc6b09dd149637ed24cf46f266d38
MD5 d83b11c54c3257a41df52a5f7e3240d9
BLAKE2b-256 e9baebd6344efb28823b8748e266f7e058985746a18bce664f924b339357f5ce

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 497cdda62384bbd66b321b10a7e2f88fc1b2c5c96e3ae77238ed8bc4ccffec78
MD5 430fd1692ed66b2927e8424d21a09b1f
BLAKE2b-256 02a225da3524c9a7a822ae7c4c46f298a8287bdb6226bb6bc89fffc47e729914

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mdka-1.6.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 319.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for mdka-1.6.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5cd9f92bd9f756796b3f0f6bee12d45c35b320a068da52e556d53592c67a466f
MD5 d728c843dfcffbd661216dfda8a5a2c0
BLAKE2b-256 9649d015da5256946c55bc1b480132e8cca6384402aa5142127312edbe3b8a0c

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10f2c264226b6576393df9a5775654ce6ef26592d8ea75bb090ce29fdd2fa4be
MD5 1f2d55ae8622955fdabee8023d582cd7
BLAKE2b-256 17f4f59cd414d2bb4b8fb84a3041f6bb14b1bfca91bc5b19fa6565f8a651fa13

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ea6f23e5a9edad297019cd930503e38128fd7544d35abef1e14d89585c83d58
MD5 c8313a088d2747b5cd8d7dd4662962e3
BLAKE2b-256 1392f2d965916d454ea664008d0cddb6a9e19e3c0e5ec7f023c5bd7bc413a903

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5724d69b8c576e81283f342e4b9d19a4c76771388b0efbf09b337dc273dce076
MD5 ec83cbc5cc6e5942b04081c0b839f176
BLAKE2b-256 f8e4d6fa077174fdbcb498eaae13a5bc0f4cd421343549748adcc2f8266ecaba

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76b357d28c30dd072ae797f2fabc1817bea23edf739cda4253ac1dc362ed1c6e
MD5 0cce89ea0a22f7f378dc598757a48e58
BLAKE2b-256 378274472379bda7bbe7aa333f542c8a7c1f2350ac44c9b692bcfa2a7943dea9

See more details on using hashes here.

File details

Details for the file mdka-1.6.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdka-1.6.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd7f0270bed5882f2c86c4347626a730da17fd8d1ffecda72950eb15e3bac0fb
MD5 40d0e9bed95e4ac76d80bdeca0143a20
BLAKE2b-256 3e7e2c7a4dea7ea523e7eb4790ac9b190984cfe7f67fbb7672829d77086d946e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d5816c19d9656a135e800af95e11c7f6541732b81664c12f827abedc5da498b
MD5 0cf7390d3e9345548ef405055d835e6e
BLAKE2b-256 8e90b214c1f9fef1eb51fcb53288c5ad5997e9f2da9240fde427e0a8cc7d5a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01a53caeeeddd1654a3d548fb427620900475787218302b041375408f298f924
MD5 00791c287207ada21305ebaf68945ca8
BLAKE2b-256 2c4a8759eea8167df425804cc8b334d025e9ce96479c089d695667bfdc832eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb077064f1db10772365d584e4e8df9afe621bac13c70004bb714893f12cd63e
MD5 888856c0bc8c8572031e4f10bf116da2
BLAKE2b-256 64662471286d37de81d642efc0671c6538e0b7b0d227833b97f3362be6cb54c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mdka-1.6.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d382907e4537145b14c76e819c651bfcbf10bc933ea36213114178ab211e9fb
MD5 064e9e16b77a707ef6e3ce2777e6cee9
BLAKE2b-256 94325be879fb3f2a337b53e02de4a5c0a1ed46ff3a8fe17b2439f5a2db0457b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a2f8677aed7fb5f65a0da91ca3fd1688d67b1621c7fc5378c67fca36f00a1f0
MD5 cda912b9b2a244725a1a29ed4888e540
BLAKE2b-256 325b5e94ad9cf36019e267e8fd27c031ea6fe852fcfeaf22de87f9e87d8ecbef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b81f2a36cce1a77d6dc0d1c165a11ec987819a5f46f2ff4ce56ce78d768ceb91
MD5 969a4b0f1a15704a27da98de6c6c0033
BLAKE2b-256 2c39b77f5d8049debead6241738da0514bcad5a54ff4d186c13983d0490bb57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebdde06b7033b5e2f777ab3100b2eb83f1be3c0dbda90a52620204ae1187ec60
MD5 6e48965d0ad9d83bb69a4f956a50ef6c
BLAKE2b-256 849f0ef3f100101cab4e25683a51fab25a4147d4391ba3a52af233ab14acb6a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 466066f0da4d79c9914c7dc11d2b2be47b0efb9d01f448e8510587d0867cacbb
MD5 24378b64e891ccc013501774caac7ae7
BLAKE2b-256 f292edcc666ab7b466e9f02d25010b0c5bdbc444bce5da69726ad4904526683a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57476d33cbee525acd239475fd7490904961c73b4666e28f1e1d8dbfee654b3c
MD5 e3f1c2ec4329652324fda74d48270cbc
BLAKE2b-256 c5594c0a7ce526a268674dd8a84149fbd964c376c396ca3c21dc668cc0bb00a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mdka-1.6.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 196643257ca87ad0f20053a422c494defd268badef860232a1deffceb3f81d15
MD5 94f293f1b0034dc0575b6ac5e6c90a29
BLAKE2b-256 c9c8a63546d3bf87c9e901edcc93e1f87b6c97f6d265464c0f95d5ee0eeee7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5d46c0315e64203c26120b54d08a18ec2eb12c96f1ada0cd534090a635c5d71
MD5 ad2e558b2dd31904778fc94a2cfdfe68
BLAKE2b-256 1f91dc7a1f8b2e434b76e25f856d7622f03642bf74f66a7d4fff65333ff7b554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fdcf848874771e8a8b41846483b9b7ba6851d69113696562733a05977dce433
MD5 7e462c33a3b445bfe103b5e457579b44
BLAKE2b-256 62a9d117f82f859cae4e368f35bd2f938fcd9c7bc430ff7379503b38089f8245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95e421ab411d5893d1b68be7cbce2b508f76497d742ce55b530551e3f8826eb5
MD5 c288e0465df0c22a52cbb9ae4c44b5f5
BLAKE2b-256 078b015f469628473343d63412f44f20ea0dfdc8e18279c2a81823916702060a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b4757810c88c8a318222fe4a83f1330f2fcc1498d1f9f505c96301998f4c090
MD5 76504fab409340b6da2cc20a5243678f
BLAKE2b-256 5a2ad80fac52e36b416e71afa9169d43437167bcf4b8475fda02b61ce2bcd468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 691057feeee53c92a84df8e0659b1c5cbafbb56de630dc2e44160f58a5589694
MD5 a1af62af8d89dfbe1a4e6716d6955c5c
BLAKE2b-256 f53e2a936260701e6e7ca317906f9f4f8e5edffb946620ad1c96f927ccaf2858

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mdka-1.6.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 871e36347123770617fd05681bba93db582eece23908c28c2e0b57a695c63fc2
MD5 b43a72b6939fd0d8e395426b146640f6
BLAKE2b-256 a6baff86b1fc065c4b2059a303d9ef0aee0637a069bdbf402188507c49b4893b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c28e1f7219ca54122a25c43274b982c03fc02ceb26954d40d5e580e62a0ce251
MD5 9a699de004af7990f599ac6f36827968
BLAKE2b-256 2dd7cebaa90f7fec0d2a237ab8a9d9f42f2deddda2a03e152e029a84bb5abcab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f2f73a4f1e84092b76be84b693d23f2a6d61ac605ef44c86da0b6da6f453ad5
MD5 4f77261b7c1dacea73ffe84827db3ea3
BLAKE2b-256 8c86d6bbe6baa15e3cef33d5cfb5c8b3d45f6a42c1492038db781b3219aa20ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be0ea1d75ec7df87350a41730d007d76870d7b1c5de4e373e8ff4ba4ad7d75f1
MD5 38e1f20c3728c35d2955fff9d8836192
BLAKE2b-256 4a5e2ae238b9e7ef68e69f184827e1a5555261ee32de3ee3cf110f161d2694d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d7d1b3029876718cefc96a79b31bfe7b475c7fd5a0c156966ea24469ab43c6c
MD5 1fc7d5b89bb3f262779bd9116817b6bf
BLAKE2b-256 641b6d795fe7d82a4ac920e4257ca969eefff7e9c3800f2a4d0afc1c9288ff3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0179e4ea291dd754d9d44089acd251296f8149d58497b9049a5342d40578afa
MD5 61d4070dc7a944b22c12049b3bdd4569
BLAKE2b-256 cc25cf28dccf12da0b1f76d1a89d3012c93ffc3fea5b2e8cbd0d78dec8bd72b8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mdka-1.6.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2ce66c16d876674e1e91f2b9c2de49e4a047ed95a90f264b9d3eed09d490312
MD5 0261c5f94a9ec19efa8e7b3b6c8f1f0e
BLAKE2b-256 09663ffc0577b2e3d59ccd564b5f1580ce1eaba51612aaafc36231b81520bb09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecdee814228106b966ed8feb5e03708b26fffe4d83947d61803300486aae0f42
MD5 ae433bf4378ae040b849c5f457e50856
BLAKE2b-256 788a1f30ab727431ba3ed4e5d3810be2900f9991fca10bb3c1f5c0ad2c5b382b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df9ac514891ded86b2475bcf6e850af45477d2497807f8d2e0b56b3663472013
MD5 dec42c4b307496050998135d05072e6b
BLAKE2b-256 3106488f3d08ff5b97be63b8b6dd8021551897dd439ebc5ee0de5dae9be1ef15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29fe551ccdcfe66bea9f63e0449311745356585bf820450e7395708a0c6d9cd5
MD5 eedf7d8f0ac03e35247371a7c4d64f15
BLAKE2b-256 79e715317a16c64027b1ba3cac1ff6df10ffbfa2a512d6fc72287b11a38babec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mdka-1.6.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dd318d319d122298f767ef5f6540ae68066a6874250152a4cf5124f9710640d
MD5 f9aadb37f4bb6d382ba52c8baa09f5b0
BLAKE2b-256 d12d2dd3b97773aa56de025cb9bf5fe127ced18774e5adec49e0606a824a05a5

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