Skip to main content

Convert LaTeX math to MathML Core

Project description

math-core

A Python library for converting LaTeX math expressions to MathML Core.

Overview

math-core converts LaTeX mathematical expressions into MathML Core, a streamlined subset of MathML that is supported by all major web browsers. It lets you render mathematical content on the web without requiring JavaScript libraries or polyfills.

Features

  • Convert LaTeX math expressions to MathML Core
  • Support for both inline and display (block) math
  • Define custom LaTeX macros for extended functionality
  • Global and local counter for numbered equations
  • Pretty-printing option for readable MathML output
  • Comprehensive error handling with descriptive error messages

Installation

pip install math-core

Quick Start

from math_core import LatexToMathML

# Create a converter instance
converter = LatexToMathML()

# Convert inline math
mathml = converter.convert_with_local_counter("x^2 + y^2 = z^2", displaystyle=False)
print(mathml)
# Output: <math><msup><mi>x</mi><mn>2</mn></msup><mo>+</mo><msup><mi>y</mi><mn>2</mn></msup><mo>=</mo><msup><mi>z</mi><mn>2</mn></msup></math>

# Convert display math
mathml = converter.convert_with_local_counter(r"\frac{1}{2}", displaystyle=True)
print(mathml)
# Output: <math display="block"><mfrac><mn>1</mn><mn>2</mn></mfrac></math>

Usage

Basic Usage

from math_core import LatexToMathML, LatexError

# Initialize converter
converter = LatexToMathML(pretty_print="always")

# Convert LaTeX to MathML
try:
    mathml = converter.convert_with_local_counter(r"\sqrt{x^2 + 1}", displaystyle=False)
    print(mathml)
except LatexError as e:
    print(f"Conversion error: {e}")

Custom LaTeX Macros

Define custom macros to extend or modify LaTeX command behavior:

# Define custom macros
macros = {
    "d": r"\mathrm{d}",      # Differential d
    "R": r"\mathbb{R}",      # Real numbers
    "vec": r"\mathbf{#1}"    # Vector notation
}

converter = LatexToMathML(macros=macros)
mathml = converter.convert_with_local_counter(r"\d x", displaystyle=False)

Numbered Equations with Global Counter

For documents with multiple numbered equations:

converter = LatexToMathML()

# First equation gets (1)
eq1 = converter.convert_with_global_counter(
    r"\begin{align}E = mc^2\end{align}",
    displaystyle=True
)

# Second equation gets (2)
eq2 = converter.convert_with_global_counter(
    r"\begin{align}F = ma\end{align}",
    displaystyle=True
)

# Reset counter when starting a new chapter/section
converter.reset_global_counter()

# This equation gets (1) again
eq3 = converter.convert_with_global_counter(
    r"\begin{align}p = mv\end{align}",
    displaystyle=True
)

Local Counter for Independent Numbering

Use local counters when equation numbers should restart within each conversion:

converter = LatexToMathML()

# Each conversion has independent numbering
doc1 = converter.convert_with_local_counter(
    r"\begin{align}a &= b\\c &= d\end{align}",
    displaystyle=True
)  # Contains (1) and (2)

doc2 = converter.convert_with_local_counter(
    r"\begin{align}x &= y\\z &= w\end{align}",
    displaystyle=True
)  # Also contains (1) and (2)

API Reference

LatexToMathML

The main converter class.

Constructor parameters:

  • pretty_print (str, optional): A string indicating whether to pretty print the MathML output. Options are “never”, “always”, or “auto”. “auto” means that all block equations will be pretty printed. Default: “never”.
  • macros (dict[str, str], optional): Dictionary of LaTeX macros for custom commands.
  • xml_namespace (bool, optional): A boolean indicating whether to include xmlns="http://www.w3.org/1998/Math/MathML" in the <math> tag. Default: False.
  • continue_on_error (bool, optional): A boolean indicating whether to raise an exception for conversion errors. If conversion fails and this is True, an HTML snippet describing the error will be returned, instead of raising LatexError. Default: False.
  • ignore_unknown_commands (bool, optional): A boolean indicating whether to ignore unknown LaTeX commands. If True, unknown commands be rendered as red text and the conversion will continue. Default: False.
  • annotation (bool, optional): A boolean indicating whether to include the original LaTeX as an annotation in the MathML output. Default: False.
  • fancy_error (bool, optional): A boolean indicating whether to render errors as rich Ariadne diagnostic reports. If True (the default), the LatexError message contains a formatted diagnostic with source spans. Set to False to use compact plain-text messages instead.

Methods:

  • convert_with_global_counter(latex: str, displaystyle: bool) -> str | LatexError: Convert LaTeX to MathML using a global equation counter.
  • convert_with_local_counter(latex: str, displaystyle: bool) -> str | LatexError: Convert LaTeX to MathML using a local equation counter.
  • reset_global_counter() -> None: Reset the global equation counter to zero.

LatexError

Exception raised when LaTeX parsing or conversion fails.

from math_core import LatexToMathML, LatexError

converter = LatexToMathML()
try:
    result = converter.convert_with_local_counter(r"\invalid")
except LatexError as e
    print(f"Conversion failed: {e}")

Use Cases

Static Site Generators

Integrate math-core into your static site generator to convert LaTeX in Markdown files:

import re
from math_core import LatexToMathML

converter = LatexToMathML(pretty_print="auto")

def process_math(content):
    # Replace display math $$...$$; do this first to avoid conflicts with inline math delimiters
    content = re.sub(
        r"\$\$([^\$]+)\$\$",
        lambda m: converter.convert_with_local_counter(m.group(1), displaystyle=True),
        content,
    )

    # Replace inline math $...$
    content = re.sub(
        r"\$([^\$]+)\$",
        lambda m: converter.convert_with_local_counter(m.group(1), displaystyle=False),
        content,
    )

    return content

Web Applications

Generate MathML on the server side:

from flask import Flask, render_template_string
from math_core import LatexToMathML, LatexError

app = Flask(__name__)
converter = LatexToMathML()

@app.route("/equation/<latex>")
def render_equation(latex):
    try:
        mathml = converter.convert_with_local_counter(latex, displaystyle=True)
        return render_template_string(
            "<html><body>{{ mathml|safe }}</body></html>", mathml=mathml
        )
    except LatexError:
        return "Invalid equation", 400

Why MathML Core?

MathML Core is a carefully selected subset of MathML 4 that focuses on essential mathematical notation while ensuring consistent rendering across browsers. Unlike full MathML or JavaScript-based solutions:

  • Native browser support: No JavaScript required
  • Accessibility: Better screen reader support
  • Performance: Faster rendering than JS solutions
  • SEO-friendly: Search engines can index mathematical content
  • Future-proof: Part of web standards with ongoing browser support

Browser Support

Firefox currently has the most complete support for MathML Core, with Chrome close behind. Safari has the least support and some rendering issues exist when using MathML Core, but it is improving with each release.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

math_core-0.5.3.tar.gz (130.7 kB view details)

Uploaded Source

Built Distributions

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

math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (578.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (599.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (644.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (536.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

math_core-0.5.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

math_core-0.5.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (360.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

math_core-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl (576.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

math_core-0.5.3-cp314-cp314t-musllinux_1_2_i686.whl (597.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

math_core-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl (642.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

math_core-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl (533.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

math_core-0.5.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (356.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

math_core-0.5.3-cp314-cp314-win_amd64.whl (239.6 kB view details)

Uploaded CPython 3.14Windows x86-64

math_core-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl (577.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

math_core-0.5.3-cp314-cp314-musllinux_1_2_i686.whl (598.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

math_core-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl (643.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

math_core-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl (534.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

math_core-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

math_core-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

math_core-0.5.3-cp314-cp314-macosx_11_0_arm64.whl (327.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

math_core-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl (576.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

math_core-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl (597.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

math_core-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl (642.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

math_core-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl (533.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

math_core-0.5.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (356.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

math_core-0.5.3-cp313-cp313-win_amd64.whl (239.5 kB view details)

Uploaded CPython 3.13Windows x86-64

math_core-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl (577.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

math_core-0.5.3-cp313-cp313-musllinux_1_2_i686.whl (599.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

math_core-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl (643.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

math_core-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl (534.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

math_core-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

math_core-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

math_core-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (327.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

math_core-0.5.3-cp312-cp312-win_amd64.whl (239.9 kB view details)

Uploaded CPython 3.12Windows x86-64

math_core-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl (577.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

math_core-0.5.3-cp312-cp312-musllinux_1_2_i686.whl (599.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

math_core-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl (644.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

math_core-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl (535.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

math_core-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

math_core-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (359.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

math_core-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (328.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

math_core-0.5.3-cp311-cp311-win_amd64.whl (241.4 kB view details)

Uploaded CPython 3.11Windows x86-64

math_core-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl (578.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

math_core-0.5.3-cp311-cp311-musllinux_1_2_i686.whl (599.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

math_core-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl (644.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

math_core-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl (535.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

math_core-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

math_core-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (359.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

math_core-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (328.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

math_core-0.5.3-cp310-cp310-win_amd64.whl (241.6 kB view details)

Uploaded CPython 3.10Windows x86-64

math_core-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl (578.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

math_core-0.5.3-cp310-cp310-musllinux_1_2_i686.whl (599.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

math_core-0.5.3-cp310-cp310-musllinux_1_2_armv7l.whl (644.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

math_core-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl (536.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

math_core-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

math_core-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (359.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file math_core-0.5.3.tar.gz.

File metadata

  • Download URL: math_core-0.5.3.tar.gz
  • Upload date:
  • Size: 130.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for math_core-0.5.3.tar.gz
Algorithm Hash digest
SHA256 132e590cd99c584603874554b15f38ef8e944d33985e7631b05a3a350f351812
MD5 8cadeb898a3b8476c72d4873d50fe87b
BLAKE2b-256 9cbc90253ad41130cf8690fe17ea55aa1174ea1fc83620984d4d2716ebb502b8

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44eff9d925ded5266babccd1fba3aeda549f6b90c3388146b841f8cf3c4651c4
MD5 894626260c33c6b3745653f8688abd53
BLAKE2b-256 e4ea7e4d86b2ce1b3753bdeac07ee928cc86d8d03c88bd987d028d88aafce8e4

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 825b768b935eaee65875ec8c9616c7b73892bb560c0be5bc9e5b389985b17546
MD5 8e26ae003f85df643d1484664f9fe210
BLAKE2b-256 88c6cb1af1704bfe4ad995c559f37e877510a5feb6ae2e8bc5792fecc1e16485

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e8040a1eb2ca78f0e9eddf4de162763071a06eab077dbdff1f0edeee856b9a3
MD5 cf14d27d367343e95027368ae5ea07cd
BLAKE2b-256 656b1b72f833b7f40d032f8fcb25a753f22e8d39fe4d03081798da100e1b934b

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d919877ad22c6e6aadae25269fffff1a14cb5f93b0ac4965cccdbf861bf73a9
MD5 976d604be642f00b39d1a429761d8c1a
BLAKE2b-256 a6575a59f66880daddf6d06e0cc2d4e8ce6489cf911a811f23d1f1029157482c

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cf123c3821e77c761d4d3805c772fba1ad3161479c00e190f55339217a869b3
MD5 9f180ab038687616e49b758287fde52f
BLAKE2b-256 1da12239e1401e57c83be8f3b761fe282f2ac1b5ed6a2d3626efdb51bae358a3

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 453c0a3aba744335e760f9ceaf9aac446d72d0c8304ac2a856a73e2a26614f9c
MD5 b2b18a361dc0131ee571d3dd1788aab5
BLAKE2b-256 df043f9c5e3db9a48e959e8f5582a317459a30f9e950b3d0041caefcb20c9a4e

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdcf2d39923782bf9cb15fb941e933e41d0199a704457749587b549a55986da5
MD5 258fb91c0a62c461be4ecf755e0f8e45
BLAKE2b-256 76a1cdc9a3b8c0de2c8421a1c9a67c455edee304b68391759e17e9085c280e7f

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92815328a0a07000d08f5e169fad8b5d122a4300f52baf1bd6e315f76c2e4698
MD5 b2ec686ba68a22a62607dbe9e1abc9f8
BLAKE2b-256 881ec9eca615ce306a744098aa06c6299154942aa077d7125a0567e597089ac7

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 30d196e817ee15d0af526772c1fac2e36f1d8998f2826422bd8a49705a120cf9
MD5 92b860b51480955c5bf9c7155f58bd81
BLAKE2b-256 2d34519db1d368af0d10f4453beb909e891366b6826e62f616f905dfe1c2dcc7

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2a67641965262a8acaedda73d046f9d6c5bd64aa79603fbd8de9ceb4d3820b8
MD5 2c31879ab9ef41c142a03c6aa9fa138f
BLAKE2b-256 2630c8dc5e143aac7c0454ffefe01a6abb01bd219c4cd0692f1d757b0b1a32eb

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28c04ce77b01576f133208d9847c389aa34e41b4310da64edd4786b3d174868e
MD5 47ac4d48b3f1f735fec32a74aaabc04b
BLAKE2b-256 76742bd2cb55728dd3a4d6c634a17d13743f8a169e8464a2965f989086f01bd7

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e3345fd9f76246811e12bbe54129b4d68cf4a482bd040dc8af2ea4066da45a57
MD5 a7e219f37b558757da4a22bec97cab56
BLAKE2b-256 23f78e02c5a3ac787dde0f29b590fea5a869e0e12d19ba2f25f30ddcbeabe2ad

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45793268f59b37f758340b86bc9740b592a90ab88ca977baec33424dc9f17462
MD5 d5b519e42b4a120546729997b30af710
BLAKE2b-256 c86743e06a76a01677a0a1c5a30a40aac382a1b3962059f21823baf712d7ca14

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6284d2758444b0e16db8ef6c549b596eb8cf5e10f5dd91c5196ac0ad0623778f
MD5 95a824ad15cf9cfe2690bd4ca9b1a630
BLAKE2b-256 a24a3ae3a0d5887e6b6f593f550744692d3f8d03f6203848be5452246b77478a

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4f1305b265af250e5d48eed82e73261d5ea6a2cc8779ef6c927b93dda21a163d
MD5 753097a6e1d83c8fbfe5159f410d59d7
BLAKE2b-256 b13ba56592761f5f5755b37f7ccca10384f17d4fa9873e077ca94de6ad78c80e

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 352d3c05d9f7a0acdf4fc737e332019fd92aadfcea948542d5cfa51694012585
MD5 63abe629f984776dea5267080b43209e
BLAKE2b-256 3c7192a874ed6877d22b2e3bf44d3c478a8da0fd0578723d573b730e03f753c0

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca5063f460d745a51b60c4b261cbd6fd1d4423f15edc16fb501839444e0dc847
MD5 60c0cefe9928456b13acb79bcd612a11
BLAKE2b-256 935db2ef4e067ba3da3cb96bb1159d841056faf2c02e70bf5d3866147c967d56

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35607079f41f65bd8dd0c5ed993e228d14c80791ea7a45ea94f9ff89a05fc679
MD5 27b94bddd44b79381ccac7c200d244db
BLAKE2b-256 fe62470bdb7bb64cfc42b81910b90ebdc2c4e3437f4abd2852923c675e608262

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4f1033f69c70f95d46459e54719dc2107682668665ed4b23a884230739a58d8
MD5 68483e98fd1f12e3393a80e3eed0b98d
BLAKE2b-256 bd458d7fffe5763255374b24629a3f562c82c9926a527fe14545df34cc084817

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccc9f825103aa96082868e565a8ff93618790fca812f061adb1600d5eb61ac58
MD5 d557b7de10d4d733881b9eff5a8c54f7
BLAKE2b-256 9da8efcb73faa81edcd629944e37a59f38b44c747be6b4f123b7464663b743b1

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc3d12eb9e44c5cc936ada0d5556fd9ded6d32caf587fc674490186032bf14da
MD5 d95270dc827747d2a6838f0f161616d7
BLAKE2b-256 b8c900e5d98c65eaf215e9b0408ae48d88af9d3acad88342f0299edb8777afac

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c518c5b156981e2ce29fe9f3b29a00ec35d3dba6fb9e06e9aec5c08fae017d76
MD5 f241fdaef42123c83c91b21f4e9105af
BLAKE2b-256 a80d7463e1d1d56068d7e95f714c8070eb9f47e0c635d6cc0002f84dd46ae107

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 554b5d803c104cd9f33ed450aa3f198f458a38eaec506ac7eeec690bd15eba9f
MD5 c90f06dfd591df26866e3b7da8623238
BLAKE2b-256 a23596ca1bc0027cb4a58a768d46b8ac9f44d09462f7328a9be74fe7f4064583

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28cef665f1897d0306787d331cfca25401dcfbe356a712f9f75eff247c9b6613
MD5 b3c89e7a1dd1e2957b337b53afeb844e
BLAKE2b-256 15f6fd6e34fb39d5afcbc4b42cd4a2ccc0a8c04c7610205583aa31c597410edb

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 db873523e65787924856c38a53cd2d472b7c822a488d6e141bd0d043357e854e
MD5 d97d3297bf448e0bfceac88d7f1349a0
BLAKE2b-256 1cff04ec1125d27dc4903836cf2c97ce516213389f5c71ee409ef40391263cee

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ded8af93c17a8cfac3a2f63586322043f09701e6a2882d148e6d751f3cb7d6ba
MD5 ec1aa93d033034bf39afc5ec546aed87
BLAKE2b-256 2db8e72d68a35628a171515eae5f8562c2e7406565e9391d2a43d5a265024d54

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e13b6bb4495d437f269ede1458d29a2ebe5143ec67c78f5a6379e3b65586f2c
MD5 f8dc4234fc0ad0bf1877d24a59edadcf
BLAKE2b-256 8cc89ec14a395aa9e6c9f3ebf7ca7ac1e593702c4f5bcb06d07a06cb505ca858

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f2489726f0fb5548c883252621203e9910a3c69f1d5bc7dc8d87eb932504670
MD5 f05eb876c988af1dc40d895563a13ea4
BLAKE2b-256 fe6a5e84a19a805134e1b8b63290abbd9e5e15a72c86f3a03c1e9f81b75690cc

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 957acae967e0f29f7e8b9ac839e3cb6cfe96fd229668765a0d94459d41e422fb
MD5 7c92430fb5a171fc373b42d9a2b285af
BLAKE2b-256 009c727a4e2fb91eb5933d481bcfb7ad6f4d8be36e866c3abaee3a47c55afef6

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9365af3f5f50713c5095e37e9870827028272570ff278f2915897809b745828
MD5 9293eda45520b36f1c711c6327b855c7
BLAKE2b-256 2b68c44fa1a9885e62f5add5ccfec4e114a6ecabfb5648fce5dfaf58db26fb68

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9493dd4cb76319d26ed4ee55606b376adb358939451ab057d93a92a3927af97b
MD5 9d1a48ceb8190dfbaa3fb3e91b7d44ed
BLAKE2b-256 14e102a799681166657bc6f9e1bc5577a9eda8bb49ee236c90de2ea3ecee494c

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dee1351bc62011d9251d79e842e9ab401719fec4fb209fc737c7dd09bee9745e
MD5 6c01648acd08ae72be83e35f05afb671
BLAKE2b-256 c5a480d7f7c56698a5500799fccfea55c839036c5bbfee9d05551a78ad82302a

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8725e6a468a9f6e3c68075d6c71cd8a7bcf9272e14af6b120376df244228f2d4
MD5 3ee262d52a95307c0bc628ba8d19162e
BLAKE2b-256 ab1d63d458aab501d59715d4011b14dc03b08450a13e0e0e39009b809ffc290e

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 442dfbaca47f30ab7174d7aa283dff4fad37dcb84cc75ce47c7ea15ce255b0cb
MD5 4bd32aaf14443768ba860f80601e9b2f
BLAKE2b-256 eb85af0e71516286aaf910704aa14fe2cc096ae30acef64df35aa8c02faa936f

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56ea40b54227d31d3d2388874786a04e96a58c0c56a365955af208ed2cf1dbbb
MD5 256457225355e3dd8340010fb62c8051
BLAKE2b-256 4e43b74c92ced921557ed878b9c73b5cb836aec2f08299a9337df6544f4383c0

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08f57fd6bf9f4b3d064886749316abed302a31c0ba03560d9e38c2700da6843f
MD5 f77cffc3e73643750ec2c10498cedac0
BLAKE2b-256 11b73ddc209b8e4bf87cef0bd2f9d0c51f08b01294ee969d0424a55d39f8fc3e

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5aa793ef1e08ac3962e958d45a8ff76b44fe43f3fdac6d85cc779e9764ff4572
MD5 a51d539c8da817b98426529f9adee26b
BLAKE2b-256 35001f4f546affbdde79eca1ddd15985be459f60f3014fcffd644e02162a5313

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d77e515f1272b801d5780935e64848c5e186972ba57451d8d993f2e69c1b7d1e
MD5 5c5199348d5a73f57aaf41c44dba61df
BLAKE2b-256 e3222848cb986ab9f039f7ce598943f8016aec486ba7e8bd78a8267054a280d3

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa71e52289633ef02b9ad95b0f48c4cb06224fab479ced10ef2a513aba2ef438
MD5 5512fa3af4fd0626a42c80da3a87c0e3
BLAKE2b-256 57b50c4c4fbc641fa46ca4dc272a7214c8db57209317aeb30ebaa5652b60f0f8

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05c4a41e97d4c12b31cb92e4e9ee5f01b48ef3a620df38c70c191b5a259d5023
MD5 f34e10831953bb16e99f97f7c6132c6d
BLAKE2b-256 4589888dce47ca4b0240df0cce8b784d3ad125911db152edb1e99191b9c51b27

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 780dcdfb23be87a0fddedfbbf4fd90e27ca6037b46bc622b03ee86793f345a9d
MD5 ba9aa0f238f45d9cba0ec05f22dbfb28
BLAKE2b-256 65a02164268c5cd897b35137c7ddee6111bd02e0804c7a08d4cef2e596a5f612

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddb2d4b7a07b03581283ab4997bc07df6afcac026a3abded5397a9afd0da85c5
MD5 d08fe73c31a448928a3ae14e5923136f
BLAKE2b-256 c19138b4463097b5f336d8c5173acf4420737393ad229b6c14576ac2217895f9

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b20cd0f78786a4cf0424b0cc0e0fd59f1bf447d23ccd8c443eff7dd0daecdc30
MD5 3319a0b1a668104393e636781d0151cc
BLAKE2b-256 a5a47bac926e38002a0f0bba22ca2fa8f95d10e0269501e7b1de47da9b38fc7b

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e2ab4dfb6e5badc8c998598677b8274cbaf96bacae8d97b6a33fc18eb72336d
MD5 15fb4c5888f328c23940e141b2711572
BLAKE2b-256 9d5f1d9f614f48ec99f55382d6be861aa837a2823ec1a1dc451ff2305ffc4811

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86af9959169c9ec2048550ec34734de7abb490b64ff71eea42f406dadbaeb8e3
MD5 ae28e47ce0eacff5f9c828f02fd8a1dd
BLAKE2b-256 fbcbd67ccf3ffdf67560f0d6ab97ff8d21788edbc945544793fd3ae946106063

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e95a2a651548124cf50a5be38f0c9708d05e9012851eccb4f0cce9b28bf8a4d4
MD5 f41e339f50027675333db00a3c6b4938
BLAKE2b-256 fd099d31dee3ec03f5efa99898ef10708e3310311e32deee5fb9b3c6b5780400

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0967c731b0dc709b706f979f1e91e48831f139952c703018c4b4a07a49ba655d
MD5 ee0210825eace9e0f723e44d0cea10c3
BLAKE2b-256 16e602599e49d7f2f51dbc8bcf924dd2809688abec59ba1cbac0c8d620f87bcb

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bd1973d4a43d40faf3408e8699ebdf29ec7b72c71e9104ba5e23130f8a4f716
MD5 bdead7e64c61616b459f5c5afd599ee5
BLAKE2b-256 94e3f6eeca4beab84b2bda41875a6f0a95583268589e349ac99ef43819f98971

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e009ce71e8af61db04147b87708c2e523d0c21d3a3252842e948dc395ccbd50
MD5 0c1ed9a838122e0af7b2458180346b4d
BLAKE2b-256 aa387a4342b0f752fd4f465addaa948dc52416807b37146f424883a6f4e628ba

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2df04264ef535996bffb12793f804164c2d327c76e6801a908da7b2c9a221de
MD5 7d814383400902a93fb57553e5d0b909
BLAKE2b-256 3371f7538177a0389a8388bdc600d2ffc9497537a980bd76c523b971107863ef

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18ed3388eec25e94a76e10f190c12087b70f82b4815eed3640e5a0c3323f338e
MD5 17bbd958dd01eb9b0301ab622e361d4f
BLAKE2b-256 945d2d15a6c469e0c7328957f2b47aad7fbddeeb3ceedcf1a82d272dbc82b6b2

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bec642024d7a1982f9f4df4175fa70dea68aaee598ee960a8ae77b505131bc1
MD5 50f0f233d69001c85dccdf2e92436232
BLAKE2b-256 c72751820d3d50452ebbfb0915b2b61a3a0ff17be5ecd615b1dbde4db0259595

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f4785f1094e668470b2f7f3fe6301bcecf1c49758bcb3589aa78f14982d7bbb
MD5 3d55e2042c3795181ea9d692eeb994bd
BLAKE2b-256 9df216b08ff3e846e18741ad71b444f9e6d762eef259ca87e3bae295fec329a9

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a8ccc38401a3a0c77d2630c169ae6f37d6e16edfe7f7638647eeb1bc84c97d3
MD5 7906ce8e18bad8b337f8ca0db44b236c
BLAKE2b-256 be82eb9b701bb7bc04a1619d138c56f875d753c2b3750acea9266e6f7ad603a3

See more details on using hashes here.

File details

Details for the file math_core-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for math_core-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2555848b44622be708cbe839be79f8430399c6a19beb865a3704383b58483a71
MD5 272aeec7df825b34a9e074302bb78341
BLAKE2b-256 a52e3fdd207c154442c2e2d8e76b3a7867e4b73d07ae0d3e489400896015ba20

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page