Skip to main content

A small library to convert a text description of math to content MathML.

Project description

A simple C++ library to convert mathematical expressions written in text format into content MathML. There is a Python wrapper for the library that can be installed with pip:

pip install tomathml

This library expoects mathematical expressions of the form:

a = b + 2;

or for an ODE:

ode(x, t) = 5;

The semi-colon (;) is used to mark the end of an expression. Mulitple expressions can be added to a single text block:

a = 6;b = e -3;

Some examples of using the ‘tomathml’ library with Python to create context MathML output:

>>> import tomathml
>>> print(tomathml.process("a=b;"))
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML">
  <apply>
    <eq />
    <ci>
      a
    </ci>
    <ci>
      b
    </ci>
  </apply>
</math>

>>> print(tomathml.process("a=b+2{kg};"))
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML">
  <apply>
    <eq />
    <ci>
      a
    </ci>
    <apply>
      <plus />
      <ci>
        b
      </ci>
      <cn cellml:units="kg" xmlns:cellml="http://www.cellml.org/cellml/2.0#">
        2
      </cn>
    </apply>
  </apply>
</math>

>>> print(tomathml.process("a=b+2;", False))
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML">
  <apply>
    <eq />
    <ci>
      a
    </ci>
    <apply>
      <plus />
      <ci>
        b
      </ci>
      <cn>
        2
      </cn>
    </apply>
  </apply>
</math>

>>> print(tomathml.process("ode(x,t,2)=m*x;", False))
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML">
  <apply>
    <eq />
    <apply>
      <diff />
      <bvar>
        <ci>
          t
        </ci>
        <degree>
          <cn>
            2
          </cn>
        </degree>
      </bvar>
      <ci>
        x
      </ci>
    </apply>
    <apply>
      <times />
      <ci>
        m
      </ci>
      <ci>
        x
      </ci>
    </apply>
  </apply>
</math>

>>> print(tomathml.process("ode(x,t,2{dimensionless})=m*x;"))
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML">
  <apply>
    <eq />
    <apply>
      <diff />
      <bvar>
        <ci>
          t
        </ci>
        <degree>
          <cn cellml:units="dimensionless" xmlns:cellml="http://www.cellml.org/cellml/2.0#">
            2
          </cn>
        </degree>
      </bvar>
      <ci>
        x
      </ci>
    </apply>
    <apply>
      <times />
      <ci>
        m
      </ci>
      <ci>
        x
      </ci>
    </apply>
  </apply>
</math>

>>>

If you are in CellML mode and you forget to assign a dimension to a constant then you can expect an error message like the following:

>>> print(tomathml.process("ode(x,t,2)=m*x;"))
Messages from parser (1)
[1, 10]: '{' is expected, but ')' was found instead.

This error messages tells us the on line 1, column 10 the ‘{’ character was expected but ‘)’ was found instead. It expecets the ‘{’ character because it starts the definition of units.

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.

tomathml-0.0.post1-pp310-pypy310_pp73-win_amd64.whl (119.4 kB view details)

Uploaded PyPyWindows x86-64

tomathml-0.0.post1-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (154.6 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tomathml-0.0.post1-pp310-pypy310_pp73-macosx_13_0_x86_64.whl (105.1 kB view details)

Uploaded PyPymacOS 13.0+ x86-64

tomathml-0.0.post1-pp310-pypy310_pp73-macosx_13_0_arm64.whl (102.7 kB view details)

Uploaded PyPymacOS 13.0+ ARM64

tomathml-0.0.post1-pp39-pypy39_pp73-win_amd64.whl (119.5 kB view details)

Uploaded PyPyWindows x86-64

tomathml-0.0.post1-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (154.7 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tomathml-0.0.post1-pp39-pypy39_pp73-macosx_13_0_x86_64.whl (105.2 kB view details)

Uploaded PyPymacOS 13.0+ x86-64

tomathml-0.0.post1-pp39-pypy39_pp73-macosx_13_0_arm64.whl (102.7 kB view details)

Uploaded PyPymacOS 13.0+ ARM64

tomathml-0.0.post1-cp312-abi3-win_amd64.whl (119.9 kB view details)

Uploaded CPython 3.12+Windows x86-64

tomathml-0.0.post1-cp312-abi3-win32.whl (107.0 kB view details)

Uploaded CPython 3.12+Windows x86

tomathml-0.0.post1-cp312-abi3-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ x86-64

tomathml-0.0.post1-cp312-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (155.3 kB view details)

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

tomathml-0.0.post1-cp312-abi3-macosx_13_0_x86_64.whl (107.1 kB view details)

Uploaded CPython 3.12+macOS 13.0+ x86-64

tomathml-0.0.post1-cp312-abi3-macosx_13_0_arm64.whl (104.0 kB view details)

Uploaded CPython 3.12+macOS 13.0+ ARM64

tomathml-0.0.post1-cp311-cp311-win_amd64.whl (121.3 kB view details)

Uploaded CPython 3.11Windows x86-64

tomathml-0.0.post1-cp311-cp311-win32.whl (108.1 kB view details)

Uploaded CPython 3.11Windows x86

tomathml-0.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tomathml-0.0.post1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.4 kB view details)

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

tomathml-0.0.post1-cp311-cp311-macosx_13_0_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

tomathml-0.0.post1-cp311-cp311-macosx_13_0_arm64.whl (105.1 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

tomathml-0.0.post1-cp310-cp310-win_amd64.whl (121.3 kB view details)

Uploaded CPython 3.10Windows x86-64

tomathml-0.0.post1-cp310-cp310-win32.whl (108.1 kB view details)

Uploaded CPython 3.10Windows x86

tomathml-0.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tomathml-0.0.post1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.4 kB view details)

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

tomathml-0.0.post1-cp310-cp310-macosx_13_0_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

tomathml-0.0.post1-cp310-cp310-macosx_13_0_arm64.whl (105.1 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

tomathml-0.0.post1-cp39-cp39-win_amd64.whl (121.8 kB view details)

Uploaded CPython 3.9Windows x86-64

tomathml-0.0.post1-cp39-cp39-win32.whl (108.5 kB view details)

Uploaded CPython 3.9Windows x86

tomathml-0.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tomathml-0.0.post1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.5 kB view details)

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

tomathml-0.0.post1-cp39-cp39-macosx_13_0_x86_64.whl (108.4 kB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

tomathml-0.0.post1-cp39-cp39-macosx_13_0_arm64.whl (105.1 kB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

File details

Details for the file tomathml-0.0.post1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1b083727002491b8585ae9bb6bbd3233f57c9962a1f46db85d68b8a0fa9d63bc
MD5 c73c3388b649814b7dbc14593182c528
BLAKE2b-256 e2d6178344d773b72247342ce1361624dd1b27be1c7a0ca879d9498e8af8d7f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 848b67dcf908726cdb74587d22029acd6b47ac226c8445442c992a039709fe89
MD5 584ea285ebb03d67e80fc84a9d4f824d
BLAKE2b-256 7fff668d1dca9dc37ca8fd06209dc88d4fde2ced1ce928796a7cce0ac2e09c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-pp310-pypy310_pp73-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-pp310-pypy310_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e6c5db710265519093cbce53efc22e07dca8255cc18ad0940e5c23f74d061413
MD5 ed4a3a63f82e1457710c6d139bf10b7b
BLAKE2b-256 5f8786ba32c1d7f697a38e9bd5ab8d21c451091209592ea76ee1e2d6356a26a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-pp310-pypy310_pp73-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-pp310-pypy310_pp73-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-pp310-pypy310_pp73-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e408d9d706d1ad509225fc5bdc978a505cbe90e8e252bac4eb67f615ec40f442
MD5 27da0c3a111fcc5f5142cc55da2b015b
BLAKE2b-256 4ba5820a791b67c3bebc80f73e1be12bfc9fd6d2b3c1ae3c4e60a69f0ba38cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-pp310-pypy310_pp73-macosx_13_0_arm64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8590212f4648617481e0a6dd1e17dd223b73a6c7447cd02941e6d96ce9f9a886
MD5 9e6ffab8d0b958988eb16efb4957dade
BLAKE2b-256 d0eaafe4e988ff6199a5fd09f44ae3e512f60e7a6dcb1416d330a8c7054a2749

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b48a37bcc51298e309b1a29a91ede3e89f25c213f80c24a43f785fda9b24f45b
MD5 d6aee0a3691ff1508d9f7ab0bb9ed898
BLAKE2b-256 85dd755a0f60c3bc76df166b08bfb9179e26d058de3af8767bee56176ea1c31b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-pp39-pypy39_pp73-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-pp39-pypy39_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 dbe2e347df9494a1404075343441983862c2f27cd6cebeac87eaf56c6e1df25a
MD5 7047188b197d26c32a973ba9c0374e23
BLAKE2b-256 28fddc1fc1d3a2b887432a16b3c99c382bc1ab3a1fdb75fbca70334e9df8b913

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-pp39-pypy39_pp73-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-pp39-pypy39_pp73-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-pp39-pypy39_pp73-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c7cc51971fbc463de32abe3611cae7257bf5efde3c81486f6812e242a64aa3a7
MD5 e4d8f314537f424eb64ddec2299f61ff
BLAKE2b-256 2d1127f86ff439a98ee5d1ff60e335ed974687f1252dd159dce07c49e4d41c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-pp39-pypy39_pp73-macosx_13_0_arm64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: tomathml-0.0.post1-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 119.9 kB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tomathml-0.0.post1-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 639c86d9d03e4dec1f9f727b24bed88ece1e12e8c716be9438fbb059a188c9ba
MD5 45efff0d667081d347fab1d5b8b1492d
BLAKE2b-256 5dfe3a709bbc05953c1da772aae9480fb605435dc0555603e327c49508c87621

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp312-abi3-win_amd64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp312-abi3-win32.whl.

File metadata

  • Download URL: tomathml-0.0.post1-cp312-abi3-win32.whl
  • Upload date:
  • Size: 107.0 kB
  • Tags: CPython 3.12+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tomathml-0.0.post1-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 b31c4a86e67e9847902747f1c28d5c42e036b9727f4e9bc3a207dcb02e0176c4
MD5 10a9978b7e2581cc78a7b338c53242a9
BLAKE2b-256 828511bf9e49d35e59730d69e0b2ad43abd977a5be85f7a6e97e2817e89083dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp312-abi3-win32.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp312-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cec503d5f3cb745312d1484a65702ef6188609c6ddc11faa4a37cc3c4055c414
MD5 e24443bec14fad85dbe85214bf5251df
BLAKE2b-256 ca1a8d7794bf5cab9ae6c3d3539044b48b9cb71c19bc3aac6b125951a3540303

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp312-abi3-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp312-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp312-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a67b68e6dfa59adc9391c25ea5aaaaf2d7bcfcb5782051f055b3bfc401f0bd0
MD5 4eee52828e19271fa20e39478535f30b
BLAKE2b-256 0ee4df16d0e2a4ed5d185132108b19d2caf7b227c49d011e0636dac817e4b18b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp312-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp312-abi3-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp312-abi3-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2c2d9f24107d864cc0c611c0b92d733b4b952e440a397f2dcddb1165293b1f3c
MD5 08d44c66721320968b6801ad0fa00f67
BLAKE2b-256 30c8df2ef2ef942d15037736c77c86a98ce09f48f7532db268f254b87d2c847e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp312-abi3-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp312-abi3-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp312-abi3-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 cb42ffb94e0218460cedb7932eb85791cf1b152ca04fc9e79df79ae5db7d9280
MD5 96d3da6888232537f91decc83bb71477
BLAKE2b-256 fda9234a2e66e4e0ecb6652e190989b75958d3a1eb234fc63064aa423330183c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp312-abi3-macosx_13_0_arm64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 208b8ad0739609e59ffb69844006e9cb27d0fedb715cb3659ac97870d8d31da5
MD5 5cfaf13177bc1fa60081366f8f0996d0
BLAKE2b-256 dce3b11e3fba012f4ebadcd76bac509d8b0b4a4ac60ff0dc9e9077ca1ca4566f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp311-cp311-win32.whl.

File metadata

  • Download URL: tomathml-0.0.post1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 108.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tomathml-0.0.post1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ca43ba0e00063d4c36657a689394ed6a874917b73aab978e3fcbd08397fa86c4
MD5 058a9d64aaf36904b3662ba1b052fb30
BLAKE2b-256 d342d6d5f9f7aa570df282b37b5f46e266fc460fe8c3c31050faec6f2ac17e46

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp311-cp311-win32.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72064a7078cc5c7086fd849501cdc1d876713fbf54dec51d7997629bfc5af06f
MD5 fe2058d82f2a1ee7f896a56952cad09a
BLAKE2b-256 3d4eebfd8dff40ef87fa87799a03d4ef5c83b495e5106007ebbe5aa4be2b8f9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2664d5f585457bd6a6f124dc25a357968fa489d373dd557e4e4b370361cdcf8c
MD5 e8133e0ba0fd4efd7376a9b60a87e578
BLAKE2b-256 979ff828993ab4da6d7f4e49646d4c54d2efa24a9a9167e6b25ec119c736d9ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d6bfc9e2151fc555923b9f0e5e09ec72534478557b0bb6a1f9219ad2ad40d9a9
MD5 298eb1d45cf5e80222f8abe1bcb09e85
BLAKE2b-256 61bac492b0c52a96ff16bb749e47fac0c39ea282831cac017fb0a75213bf7f0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1a26756ba6d083ae3e53aa495c85a4e976157ca8c19d5b40237722872f40b1be
MD5 9ed58d30f5132a65382917d7f1375318
BLAKE2b-256 159afda615409f324a9074147ee5ecfa0fd54c1a5d420c1513502b9a9b5cfaa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03b090789e8f74c586b1ddbe84f013e6edc6b5e835b5712b87156dd976d19d16
MD5 6ae62e5117cb7819bcfd716e41dfaf39
BLAKE2b-256 1a904d8a02eceedc88af6a2025ef4e13036dfc07637700a480aae113c9da74d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp310-cp310-win32.whl.

File metadata

  • Download URL: tomathml-0.0.post1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 108.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tomathml-0.0.post1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 258f3d550e07ad0d1e3dd6f6e28e0a7c01d6639e67e8f495c6ee0be3ca27d973
MD5 27148f106e1f2b10c57dfad84ac284bc
BLAKE2b-256 75d07b5a0c54f3cc5c24afea8bcd9812360314fc72e331f84ddd947683a116e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp310-cp310-win32.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81ed4d0d592520f69e431a3b0b91cad8500c36d4e45eb59e49d0ab040eb44882
MD5 0ec26e4b0a95ee0b3618c2344e1f9c5c
BLAKE2b-256 0cf66ed08714a426008b00b4d1c83858a117d7ae953d4d14f0f32ad717d9a541

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ac937ab8754619555e9c339b2890c4f452701f051df8432ed4d219e663442de
MD5 392da31f98ef8ff15a7e74ff13cde083
BLAKE2b-256 6f1384030056a60996f3cd6c13fc9ebdb3532962482bc367504fa8c84807e923

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9d63f93604b10282acd087e5d28ba75a0ed5bc75ca5e74ecf63f6ff6c417a135
MD5 37d2a71a808e30005f6f1ec60de2ff92
BLAKE2b-256 b90d79cd349da8be60829bfa876afc0ee98762528a70f926233680215983e68e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f9467922b542f4694799f6ad19500a4f81d195f42ca62716632338ab59dca269
MD5 1d41cd3f055423a490fbd06b2cd43baa
BLAKE2b-256 f85f35699456858a2919f2822a63f0239ff64d582d8bfb0d5af318ec0e7f1b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp310-cp310-macosx_13_0_arm64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tomathml-0.0.post1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 121.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tomathml-0.0.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c3b53bc43357784355e318112dfe55fcbb0960c3f03b03340dc28f846d6aacc0
MD5 543e24276ba2fb69dc952a64519ccc3c
BLAKE2b-256 f70269d50aee3c07233be9ef8d08882515847b8001336b24e56d67c6561aeb30

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp39-cp39-win32.whl.

File metadata

  • Download URL: tomathml-0.0.post1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 108.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tomathml-0.0.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c9d29dafeae2af3997851a04fa7199b49feefcffb58294cce336d469be206a48
MD5 ea860e22971b9e88c483ea321203f8a5
BLAKE2b-256 9f9b91312823542643b10789abed93dde8bdcefc994084ddaf688b9831b310ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp39-cp39-win32.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d807c40d893721e28d90a611339b2781036b1bd28f76663ede5181fd431e120f
MD5 0e96fc48fec96372cd7260d9b5a6a644
BLAKE2b-256 12a827e851afaf5f7a5ae8c3f206debc9e5355f8c34d0d8f55b33287843398d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37e7423ed0c53f89e59cf73b846612de2b7dc1577169e8c81b8f9f7ac9314585
MD5 de03a8f89a38dd89f5bb1a8e9534cd3d
BLAKE2b-256 41d88780ae3a17d8ebef98eaeddcd1e2a8cc8b25157ba7acfd036e0e1e6d4534

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7d130a94dafcbefab7641b6dac8796516231c3089b3429a323ad836b202f9580
MD5 adb19395e1c0f59a365de4c956a71ad8
BLAKE2b-256 3e6e4640e3236adfd4ac6da413c1a8cdde0e0a83608cb923343c84cd2a70ddbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp39-cp39-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on hsorby/tomathml

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

File details

Details for the file tomathml-0.0.post1-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tomathml-0.0.post1-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f693303d1eb53a9ed166bd82f2c1599946b62479329134b8bcb65f13f34eb19b
MD5 5a3ead4767d4c19db5b879c9ad9da304
BLAKE2b-256 b5150e7faa2f849ad7b92dc56d478b3a11a656b4218554540dd2f7e06c913e2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomathml-0.0.post1-cp39-cp39-macosx_13_0_arm64.whl:

Publisher: wheels.yml on hsorby/tomathml

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