Skip to main content

Fast C++/MD4C Markdown parser and canonical Markdown serializer for Tiptap-style JSON

Project description

marktip

Fast C++/MD4C Markdown conversion for Tiptap-style JSON.

Installation

python -m pip install marktip

Release wheels are built for common CPython versions on Linux, macOS, and Windows. If a wheel is not available for a platform, pip can build from the source distribution with a C++17 compiler and standard Python build tooling.

Usage

import marktip as tm

doc = tm.from_markdown("# Hello")
ast = doc.to_dict()
markdown = doc.to_markdown()

doc = tm.from_dict(ast)

from_markdown follows GFM/CommonMark by default. Pass cjk_friendly=True to relax the emphasis and strikethrough rules so delimiters next to CJK text still open and close (e.g. **볼드**은 parses as bold), a non-standard extension that is off by default:

doc = tm.from_markdown("**볼드**은 강조", cjk_friendly=True)

marktip targets GFM core syntax and canonical Markdown output rather than byte-identical source preservation.

Development

python -m pip install .[test]
python -m pytest

For a direct local CMake build:

cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release \
  -Dpybind11_DIR="$(python -m pybind11 --cmakedir)"
cmake --build build
PYTHONPATH=python python -m pytest
PYTHONPATH=python python scripts/benchmark.py

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

marktip-0.2.0.tar.gz (92.9 kB view details)

Uploaded Source

Built Distributions

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

marktip-0.2.0-cp314-cp314-win_amd64.whl (392.4 kB view details)

Uploaded CPython 3.14Windows x86-64

marktip-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (215.0 kB view details)

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

marktip-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (169.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

marktip-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl (180.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

marktip-0.2.0-cp313-cp313-win_amd64.whl (379.5 kB view details)

Uploaded CPython 3.13Windows x86-64

marktip-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (214.8 kB view details)

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

marktip-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (169.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

marktip-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (180.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

marktip-0.2.0-cp312-cp312-win_amd64.whl (379.5 kB view details)

Uploaded CPython 3.12Windows x86-64

marktip-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (214.8 kB view details)

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

marktip-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (169.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

marktip-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (180.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

marktip-0.2.0-cp311-cp311-win_amd64.whl (377.7 kB view details)

Uploaded CPython 3.11Windows x86-64

marktip-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (213.2 kB view details)

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

marktip-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (169.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

marktip-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (179.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

marktip-0.2.0-cp310-cp310-win_amd64.whl (377.0 kB view details)

Uploaded CPython 3.10Windows x86-64

marktip-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (211.8 kB view details)

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

marktip-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (167.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

marktip-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (178.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

marktip-0.2.0-cp39-cp39-win_amd64.whl (378.1 kB view details)

Uploaded CPython 3.9Windows x86-64

marktip-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (212.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

marktip-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (168.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

marktip-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (178.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file marktip-0.2.0.tar.gz.

File metadata

  • Download URL: marktip-0.2.0.tar.gz
  • Upload date:
  • Size: 92.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for marktip-0.2.0.tar.gz
Algorithm Hash digest
SHA256 58041dd693613b2032ebff513281aaf01c3b97ecc92938843696e8d4a47e7507
MD5 081133452e75c46b00df5a721358ef1a
BLAKE2b-256 4bc1634c5ce2214b9f06689312f2fae567dc2db9b0bb6b3bbfc2d15042c5061a

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0.tar.gz:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: marktip-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 392.4 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 marktip-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 823730836428aa199837c5129820924c190b261fa4a59fde961913531e00f0e7
MD5 35451190b17ff4c02ede7b8209dcd8cc
BLAKE2b-256 31e62fb85a54c161d3e8f942479ab25f3445e75b49e7a21dd0465f98736ae617

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12dbfea4b5c1edd2c903a8e947b140fdf252aa8a2ad7f58a8c1171099ef09d0b
MD5 bd95d1058a141c1e62cc086dc8a6fdef
BLAKE2b-256 7c26947fb3457d7445a80e8f5dc71330fc0fdbd66f01d03794a267a20c795e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0db0362804736c7a6aa6ef2fcd27854dc0576538c6bd3c5cbd044c8da95ad467
MD5 7a806d807cc04c16dee94dce08f017dd
BLAKE2b-256 f670addfac3f4d8c943c0d99f417e0ed6d50fbd926a5d61c32115009f323f7a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 123292170867c50e521c81ad48a33f817069005934ce6402c7e9f70b138a080a
MD5 d57cac7354950863f8a1197373ca1ce4
BLAKE2b-256 31178ea0e423e268f5594e5f62b267629c3ed23d71a87d9baef404037359efc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: marktip-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 379.5 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 marktip-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d7fcf3a234c1c5a35985691fb0ad846900f09d63abf1cd08ae142c0ba226fda8
MD5 4a9340ac92b7b51131bbf21dfcfd2dcb
BLAKE2b-256 8ac9c227062290758836675127e588c6c1e5ca3f0da78995922de81e9bd95c3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f819262e609835ea3e39d83303ea3b2c955725ec708e8bc9a86e38be727d66a1
MD5 4f698b70ad6127ddc3c216087ec40e07
BLAKE2b-256 49e240cd95dd8f413e21f9a39b83212f548a82ca98f41077be618aeb16dd3d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6075f1bcbd98b9877898ec20b049627fa262e4558a03f9e7bf6d9ec4f11e5928
MD5 0e8398fd78f6dbbfa5ac21420c0e7e13
BLAKE2b-256 16854ae2a52d87267439a09e2c0964d751225300f5cdf8216a19d0526bf9cfe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 98d4e9f9cd5c6c7c825a81d876beef81e832e4b44299c02cd7ba559dc5600545
MD5 220f4a74dd973cce716f074f83e3f831
BLAKE2b-256 91826ee662d1fbad4498db348811c70538e96022a320e497b66bbbcc33767b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: marktip-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 379.5 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 marktip-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1265cbe92e0acd67444f832cc2037ba87a7a81585ab6f4c2804ff226f7492d09
MD5 7dc02c7ae531b49bdb0c7ec8d39085c9
BLAKE2b-256 37b5ed227802bd0f2ac0587db3c87ed5455002c83b7e6ef6eed916e6e6a011a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9997f58689871606feb9cb098bbd1a5c76fee0c5acc7cfac8b36cf0744ab3104
MD5 ab62fa0974a7c8d57f72065b9d28b823
BLAKE2b-256 4f630fc2450225953456cc38dc23eba583a7afd906d29c2b18516e24784e0840

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4bfe9e9593249baed6eadd89f423689ed23ea7480db5e990c73b5191bb17035
MD5 c08c2125fd4c8204645cd8b8f6d2283d
BLAKE2b-256 f82131003e1a580ddb82a0ecb12508a870f28a5e6e9f55e81a097219e9f983a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 453f90d8e16d1c612e5fd9a1ab28e47c62d5edd88be956aa3a199b8f0bbaadaa
MD5 679f2598acb225b7104f69380de412d6
BLAKE2b-256 1821793af671da0478de074bf0c351cc3e18731ca3d97c4af2d4536af002c9b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: marktip-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 377.7 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 marktip-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75826946807bf73eb663a05f65324944421b40b445c40db4c55c3f103d1dea36
MD5 4f82af99a14cd97b2e141c7678803b7d
BLAKE2b-256 c565df251698bd5db38d70d4775599936a66269bbb563f7157854d67a175388e

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5905de3979fb33b726a0d9ef5c514991844c3728127044d6d7f497e22717444
MD5 7d509dce277d6a2cdda245a75c772e77
BLAKE2b-256 382a07cab3ac473317a91c04bafeb424e46cdf74b65e499a73e072476c534cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 212898ebe5ecb5100018b8670326a2bdf41ba7dcf67317c8f86fed69f773758f
MD5 84b7c06a908e94740a981b1cc6104ddd
BLAKE2b-256 3c7cf699a2cbbd683f7ac0c632bb22624c303c709f10b1c58a5168ec1b10c50d

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98425e466a8e57653313cae5c703994e6799d27697ab2e6cdcb7e562d324dbba
MD5 ffa88abae00842b7122ddbaefc8fa14e
BLAKE2b-256 0ba088e57de11db565b4a932ac003635463a97624f7fbceb48704f4efbe4fa5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: marktip-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 377.0 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 marktip-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6f9dea261fe4430814b0dacd1c9002ae813f118fd82e2b9a2f8811833d5381ad
MD5 0094893d58ebd41227a1652bb83f4f60
BLAKE2b-256 f643c8d16765b72b4cf7bea413f210c731fa1c565dac3c174b8f885665de976b

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c146a61c8af37f0bed2ee4e54313f95f2f96b1cd4e3b299195f45ac3e0a21979
MD5 0864bc485ae19af1e945942f298b8cfc
BLAKE2b-256 b311eb148ab637fa2f4c53753c4494db300c7f677db1ce8a95ba921265b3cc5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 666921b949cb40740f0f5e96d3fef1716edf6ca3bd41dcdd1ae26225f1e62832
MD5 ba1d4b9d0d64ad112f3c087ee9adbe63
BLAKE2b-256 c572f764d06913253c0baf2faab353e32e8d8f61124de32270212bf6595001f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4025f45634ee0c16c06f0f5b1e66a7fd21d78f6a7bfd453d14b7239ab8fe0eff
MD5 c35e16b44a83a830d7477ebfef046d35
BLAKE2b-256 3485cc8f73cbe82a292e406801ea7d9c5be5061e77caec94a6990ab2dd761a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: marktip-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 378.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for marktip-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6bb63d3e93a5a4196d737ae7fc9755139cc8869886050475a5336fabdc3a42cf
MD5 4c31b9e93739ef40527e659948b34a1e
BLAKE2b-256 22b9fe7a26981541ba982552baaf3b4843bd839b134ee5526c9d7dcf4ba08990

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp39-cp39-win_amd64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49dce167730a4c0862873db8b18a7dd65b88ca5023c3a0e99cce5810f1c84b7f
MD5 d18cad25f613a47638908f76bd6102aa
BLAKE2b-256 c6e7178bb1904895acd4e9acc620b0f110fe463dedc3ba4e97f14ec32351c3b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b007bc5754b30c17f4a31a05a8191dd06acaa0e629bdc3b88ad0c5f0938801d
MD5 e54a5fad015c688a737e584f2c3a1416
BLAKE2b-256 80205f6f6b5866b8c9037664d1c82182b1fd6536664f180a70405c937ec73c5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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

File details

Details for the file marktip-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marktip-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 317cc73d7e76d299795f03fe27c259e6aecc68ea5af4c8e5556789318bcd38b4
MD5 c63fe388a26edd44a9a75b1b9a4b1a86
BLAKE2b-256 3c8d7ae002d7d0af41669a13f6c0db4e546a3f14a6a3e53f9dd065f4d30cb94e

See more details on using hashes here.

Provenance

The following attestation bundles were made for marktip-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-distributions.yml on saneaven/marktip

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