Skip to main content

ComVerter - The Common Converter

Project description

ComVerter - The Common Converter

License: MIT Python 3.10+ CI

ComVerter is a simple C Python extension that I plan to use for converting some simple formats to others. Like Markdown to HTML, HTML to PDF, and many others.

Features

  • Markdown to HTML
  • HTML to PDF

Want another format? Open an issue or submit a pull request.

Build & Install (Release)

This project uses uv as the release build tool.

# Build the wheel for the current Python version
uv build --wheel

# Install the wheel
uv pip install dist/comverter-*.whl

Usage

>>> from comverter import markdown_to_html, markdown_file_to_html, ALL_MARKDOWN_EXTENSIONS

>>> markdown_to_html("Hello, **world**!")
'<p>Hello, <strong>world</strong>!</p>\n'

# Convert a Markdown file to HTML
>>> markdown_file_to_html("input.md", "output.html")

# Enable all extensions at once
>>> markdown_to_html("Hello **world**", extensions=ALL_MARKDOWN_EXTENSIONS)
'<p>Hello <strong>world</strong></p>\n'

# Enable extensions individually
>>> markdown_to_html("http://example.com", extensions=["autolink"])
'<p><a href=\"http://example.com\">http://example.com</a></p>\n'

>>> markdown_to_html("<script>", extensions=["tagfilter"])
'&lt;script>\n'

Supported Markdown features

  • ATX headings# H1 through ###### H6
  • Paragraphs — consecutive lines of text
  • Emphasis*italic* and _italic_
  • Strong emphasis**bold** and __bold__
  • Code spans`code`
  • Links[text](url) with optional "title"
  • Images![alt](src) with optional "title"
  • Fenced code blocks``` and ~~~
  • Blockquotes> quote
  • Unordered lists- item, * item, + item
  • Ordered lists1. item
  • Thematic breaks---, ***, ___
  • Hard line breaks — two trailing spaces
  • Backslash escapes\*, \[, etc.
  • Automatic HTML escaping<, >, &, "
  • Setext headingsHeading\n=== (level 1) and Heading\n--- (level 2)
  • GFM pipe tables\| a \| b \|\n\|---\|---\|\n\| 1 \| 2 \| with optional alignment

Extensions

Pass the extensions parameter with a list of extension names, or use ALL_MARKDOWN_EXTENSIONS to enable all at once.

Extension Description
"autolink" Auto-link URLs and email addresses
"tagfilter" Filter out certain HTML tags for security

See docs/md_extensions.md for detailed documentation of each extension.

Development

Makefile targets

Run make help to see all available targets:

Target Description
make setup Create venv and configure meson
make reconfigure Reconfigure meson
make build Build the C extension and wheel
make install Install the package in editable mode
make test Run tests (stop after 3 failures)
make format Run all source formatters
make test-all Run all tests
make clean Remove all build artifacts

LSP

Once meson is configured (make setup), compile_commands.json is generated automatically, giving you completions, diagnostics, and go-to-definition for the Python C API.

Task Management

This project uses Tigo for task management. Tasks are stored as TASK.md files under .tigo/YYYYMMDD-HHmmss/.

Disclaimer

This repository is being developed using AI assistance.

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

comverter-0.1.0-cp314-cp314-win_amd64.whl (75.7 kB view details)

Uploaded CPython 3.14Windows x86-64

comverter-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (67.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

comverter-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (64.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

comverter-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (67.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

comverter-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

comverter-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (59.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

comverter-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl (62.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

comverter-0.1.0-cp314-cp314-android_24_x86_64.whl (64.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

comverter-0.1.0-cp314-cp314-android_24_arm64_v8a.whl (63.6 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

comverter-0.1.0-cp313-cp313-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.13Windows x86-64

comverter-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (67.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

comverter-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (64.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

comverter-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (67.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

comverter-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

comverter-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (59.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

comverter-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (62.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

comverter-0.1.0-cp313-cp313-android_24_x86_64.whl (64.8 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

comverter-0.1.0-cp313-cp313-android_24_arm64_v8a.whl (63.7 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

comverter-0.1.0-cp312-cp312-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.12Windows x86-64

comverter-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (67.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

comverter-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (64.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

comverter-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (67.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

comverter-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

comverter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (59.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

comverter-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (62.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

comverter-0.1.0-cp311-cp311-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.11Windows x86-64

comverter-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (67.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

comverter-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (64.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

comverter-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (67.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

comverter-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

comverter-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (59.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

comverter-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (62.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

comverter-0.1.0-cp310-cp310-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.10Windows x86-64

comverter-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (67.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

comverter-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (64.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

comverter-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (67.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

comverter-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

comverter-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (59.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

comverter-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (62.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file comverter-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: comverter-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 75.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for comverter-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4243611486165356910085f0606d17e1eaa09b863f9744be3f77e1a187574d0b
MD5 b3d01b4e0c6f1e483217eb3105b2789c
BLAKE2b-256 b3d58d82512eefb9720c9ce9c161c6ea67d6e421e11c56a680e4ecf10ba595ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68db27068412a8f053d44e7c2928f2dcd1dced137fe636d0e09de17a3c8ca611
MD5 4b7f6dd15f2e908576c716705c0be65b
BLAKE2b-256 d5c085df0e3e8bc9a6eac9db1c5e5d5b0b8f7570dacaf32953fa3ddf24db5fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e55980e43c4f41726db25e98e1b4588a4a9d2b8e63ce25765539f9ac2726973
MD5 9eb0db755332699f83cee16424a211f5
BLAKE2b-256 819e429ec9646ebb96e5105869a3d3a81b9bade3564f46f92abbfffb8349d1e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6391ed20504797626566f27fb13e5016f63fd83f5199e99e24c9c94015881098
MD5 485bf0696bcf87a7231d503e91239d5a
BLAKE2b-256 a52c8268fa8d26afa9870275102ed8c81b3203b23f08756b18321e62fb8aafdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3d63dcd20905076e313850a737c0aca4fd103c5a0ec8ffa4881dcb71ab6618e
MD5 b0b69894823eeaafbf5e08828d48351c
BLAKE2b-256 ded7a656ea3c7e4208ec5ef79271e1c78bafd2518b58672590d8f69aa69ec907

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03cdb6964b01af5926c4faa8884503c490b8b5284e43b5d711f95f96d7f279b5
MD5 8e27dec6ef0d40092e445b723b1ad61e
BLAKE2b-256 5310b9907c8cf24181669d11b566255e27b08cc57df1de00b64c2f5b266a3666

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c5b353a0f9a5fd78bd57ed0d757579dc0398ef16aeb3a168d10a7d9787f02ed9
MD5 24f116e619e38d27ef2fcc3373ecf2d0
BLAKE2b-256 d1b6bdd1d14815b6b9578ff486af7470afcbed3799767002c8a9126778d03794

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 1b7496d03d79899e26631ca873429916cddbbb418a836fa5ed5173e35983d66b
MD5 e0dd90d50a7d37221378ee5cc0355ba3
BLAKE2b-256 c6777cffdbb0031192cd886b789612ef71e675e398239f03df2dc1a05a676f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-android_24_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 ddbdd328f284a97ce17332ad2a8e09dc70dd95134fa172e6097e4ff491e492cb
MD5 d5f30012f162fe4e2a87a14314c0ad06
BLAKE2b-256 87ce9c164abc7b40e03ef4f9aec5aaee09d0e073728e9743ac56a512059ccdc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: comverter-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for comverter-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4e5ea625e1f422c14a6b089ba7192488d21561abc4e405c675deae091447c94e
MD5 b68385e8262d9c8cb159509849012598
BLAKE2b-256 a6908b4ef1f7a771f64ae4c0d95f5df4a58161d438c89a34a0bfaf76d2d91005

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 837d846f3a6aa863dd2f2cae73371630043e9307c259668f1c086197316602e0
MD5 23bf22bc1ca588c026842c458f7c79e2
BLAKE2b-256 db7fbff95406abfa9012dcd2a717621b24200adb1b75ed3f45f0551c0c48fd87

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 846a25915362f1677fee0565f99b58e45d6d7f1e0eff8f7d77dece9cb087f607
MD5 693fd15e4908899ff6369bbc2da9cf08
BLAKE2b-256 359ff2ac505151988aeb2c2c5883594b3d7d4d51e3cd03c10eee012b60048d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee05be4279d9b0904170e7cacdd5077366e34d145d070d8c77d60452705692e4
MD5 f4f37babc8a7590a0b66e5399a450b01
BLAKE2b-256 47ddda7f2ab900d14518ccac0a01637ef4e7e59bdc28659604f20ae537199ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5b980156d96f9e2cdb2f8b98562336aa6768a1e554718a9fae2f5492ca970c1
MD5 8444902800ce1cfab6ad8552da5bf8bc
BLAKE2b-256 070d80ec317156d97b654b4487faf30432ce216dd6d5e4eae5f7bb5c1bd4516c

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a641994acc6ca1ea4d3bab9db4d647b68e3ba10e7026a73e4b15ae60fbe030a9
MD5 0b3d462ada9383f6f235518c689ee615
BLAKE2b-256 21250efe11a65d0b712e046639e1688f970d391ea14c4982ce94c0d9bf00a23e

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 893aa774a6a81bcc462f45bdf66c5c68cebeb83764d2ed2ac864db682409498c
MD5 3a0b9f1ef3a85ea0aba935c91df85c65
BLAKE2b-256 e0be3de5118ae65a7eea32559fd794708f70cae74dfff5e5d593bab4073fdab9

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-android_24_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 9c755f5c789935949787ea2c97e93d11961e78616307fc50b2d2b8f44fe27529
MD5 412c746a5ce3c60bc8b0d6d41da6dd26
BLAKE2b-256 223f40e2b50cfcd334dfea1e600dee40f13c254dc71a343cc4292815e5d15aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-android_24_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 83cb831951c36af21dc3d3915a2cf173ecf7aa18aa22111655b83324dbba127f
MD5 d78c6bc6c419b61c5341acd0cc3726d7
BLAKE2b-256 5b3ffefac2412e95081b0e51fd29a54ec9040be72c4044ef292632cc02bfa9aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp313-cp313-android_24_arm64_v8a.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: comverter-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for comverter-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ee3bf7190e2af1f953872ccaf705adc2e0ec8e3a1bcb56188f0f99a6d8ee23b
MD5 46be2477ad54c85c0017eb8d4f39edd3
BLAKE2b-256 d65c7474b58bc5bdfe7b3101cc4c7fec9d5079112c6a7a5309ea0d7c9d1ee67b

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baa560b247c1b871c7af30e83f2fbd864e44385e4b37ea4b5b8065d3aeebcdc2
MD5 0e317101df8510982f3d6f37f8bd98ff
BLAKE2b-256 efc2187d3f1c1da48c62168e9c82f2022f735565f2f64437d26fc1550fe93613

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b232325af2c8ca713391467f643671c03c16bc250739f761690b9b55b747ce24
MD5 4db7abe6473caf346f04f0778c1e360c
BLAKE2b-256 d1a75c5e48383c0096cbf0a8223549015484ad9bef97f310e78e5963cd3bb170

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42211a0707977e4cc245d52e312cf96faa9967006f9fffa8659c2af92366cf70
MD5 34339e870d1ba4c8f1b0fb48a8f2b483
BLAKE2b-256 38a14756c65cd9f0b4c67fe8a95b705fea1e2dec31451755feb8e1ad3cc5e70f

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ad02964f39b7295e8fd5fbd900fac4f38e70f549f7ada55eaa29c652e472728
MD5 2d463ece1a411de52e056619cac5d06e
BLAKE2b-256 8435dd8fa0c06d23a89bf972b9dac758b8afc7f3ceb2acfee03fc9d2faeb9881

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2573fc2d7ac3780953ec4987f2eb0e4714d052ee709efe8ec0b5491f8341653a
MD5 898277af2fec87a4ad2400ae444acfe2
BLAKE2b-256 fa0a616509500ae2e15357915a1f673910056a48f8d1155d28d1a6ed7ca2c4c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b640069a1b2c602e03acbfe80ca188cac0d316846bad1359c43d6f8ee6ffcfbb
MD5 5254023a1fec50f5980e7c97aa1639a9
BLAKE2b-256 3d0b9930ece0fc2bc019ca5ff955cb9394cc499c15f9b94a485718f049df12bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: comverter-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for comverter-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a9c7c182723dae95278aa8f45544f5e36bd5f37f5e3725ca2f8b5f786ce0eb7
MD5 bfa25bb43f2569084af492205c5792c8
BLAKE2b-256 28f831383ce06698712a13ab1f615ec9f003f8e17250bde61b9077eb65c6f64b

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 666dbc5a94ff131fc774ec0e33a9cc1ce53d4f2d5f395e6c8b6c0ceab2eab7fc
MD5 0d27c28a1bcc53a217ce397c9de4becd
BLAKE2b-256 3477832b21c60367439768a10583c0732368c6f876ea73e01826a0530c927123

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24e482bda8e8bca0c9e0ff5a3ed441d6f46ff3467a98668afbe527f5304bd75c
MD5 46ba668e4d707667cfec1533afae623c
BLAKE2b-256 3ab5122354be4633843d314b2a6acb0af9970d0cfbe228071109a072fff9d72a

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb906a4c653963c77169b1bda91de7a186f4a2a06e0f250f0212f08294418b81
MD5 edb1c12870d5014cc3964ac987cb7459
BLAKE2b-256 730500880304ed1df06450b1cd830a6cc0000cc163a5650ad1a17b5ac0b20329

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 980704340765f55e9dc0ff8b8cb4a6327ee7b22d0cfc43587553d83d43908a10
MD5 ca6644a271798cd0720b46d3fdb81758
BLAKE2b-256 294dfc0ed1749ca3e16c30484c622a38faae2519bcc709b45e9109057129f75b

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3cdfe172ba8f603346ddb17dc8337869cd06414084b9c969a8f240cfb9bbb8f
MD5 8770938132680a6f85b614d1dbe0df6c
BLAKE2b-256 5cd2794ceeffa37ebceaae2fa58ba74198170f56338d5612d6779225cf36fba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6bfdcaf6cdda318a0fe9a9c815e0fec36cecb0b4eeea3b6de3d13a11c0cbda0
MD5 99cc21692a7dd6c2195e45ce40e1cc19
BLAKE2b-256 f4acff7615f11971d00b4e265e8768b283e1d630f62e1b53012c59aa685a9bf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: comverter-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for comverter-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35daa7e7bc2bec6a682608fa0e8b9d1a35ee12e0cec5c5cae8d5f72d25e48082
MD5 9557415dbbc38f4b4139d605ca844379
BLAKE2b-256 599255a9fdf5bccf5b710f7af671f83a50ce16b6d45fb2458c4de76161df010f

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c755184b18650274be57bd41f5fd523ff06ee3a505815a8883e94a743ab65e6
MD5 b883579225f93c2d12421afa1a4121ab
BLAKE2b-256 bf3e057a1f985c2e9d3033ec3cdaebe34e7ff6cab7fc7be029ed0b9f0256469e

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a67f2d76caeeaf6685098e60de1c8c72e89d0116c8e03f9c21cdd4bdeb697fd
MD5 6babed33f55935baef11875e58d80b62
BLAKE2b-256 5350e0a3f14a0a3ed52060e63ba7f07135b9e039016d5f268dc82de7a3bca067

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e8626c59e7ea4548636872f4795b3ba829cce4b7a9d30c7e1b2f82a55f6c6c3
MD5 0d18ed19238732a2ec7dd0a011ddc123
BLAKE2b-256 715aea873f2fabb44df3a7a8471cd5ff1ea25aade460cce80b8c3b731b8c4f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2c7ed6cd9615e02dc6bde24868e0f138b26450c05d36d23d7ca7836219cf340
MD5 6586fa6cdbd1223a379514be8b30d764
BLAKE2b-256 cc198b3e1e340b752b858f8a59b9824a1d15c4d33527e057fff0c6a0940d0c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32c81cdab6180f4d788132dae07df638879d993a79bb0a0bed3bb9ca4ceac005
MD5 90a9af4a3372637622a2cbb0c70f8b1f
BLAKE2b-256 10d04048086e17e553cb48acdfff475c8f378ebf5f504f255374c56833652988

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file comverter-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for comverter-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fa92e945688f9b33c7c761141ba7194bdfeb03450b33245884a5cd9db66321f
MD5 04ca16ba53380f5b460b0a2ccaf60a98
BLAKE2b-256 6668b4e90004c377e9a5f9d059db1e4498c52dc0951117f103dcf923301aaef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for comverter-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on MPCodeWriter21/ComVerter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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