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.

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.0.tar.gz (125.3 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (524.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

math_core-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (546.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

math_core-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (587.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

math_core-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (485.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

math_core-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

math_core-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

math_core-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (522.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

math_core-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl (544.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

math_core-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl (586.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

math_core-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (483.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

math_core-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (305.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

math_core-0.5.0-cp314-cp314-win_amd64.whl (186.4 kB view details)

Uploaded CPython 3.14Windows x86-64

math_core-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (522.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

math_core-0.5.0-cp314-cp314-musllinux_1_2_i686.whl (545.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

math_core-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl (586.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

math_core-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (484.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

math_core-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

math_core-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

math_core-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (277.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

math_core-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (522.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

math_core-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl (544.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

math_core-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl (586.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

math_core-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl (483.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

math_core-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

math_core-0.5.0-cp313-cp313-win_amd64.whl (186.6 kB view details)

Uploaded CPython 3.13Windows x86-64

math_core-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (523.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

math_core-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (545.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

math_core-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl (586.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

math_core-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (484.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

math_core-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

math_core-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

math_core-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (278.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

math_core-0.5.0-cp312-cp312-win_amd64.whl (186.9 kB view details)

Uploaded CPython 3.12Windows x86-64

math_core-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (523.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

math_core-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (546.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

math_core-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl (587.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

math_core-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (484.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

math_core-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

math_core-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

math_core-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (278.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

math_core-0.5.0-cp311-cp311-win_amd64.whl (188.3 kB view details)

Uploaded CPython 3.11Windows x86-64

math_core-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (523.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

math_core-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (545.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

math_core-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl (586.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

math_core-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (484.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

math_core-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

math_core-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

math_core-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (278.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

math_core-0.5.0-cp310-cp310-win_amd64.whl (188.4 kB view details)

Uploaded CPython 3.10Windows x86-64

math_core-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (524.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

math_core-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (546.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

math_core-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl (587.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

math_core-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (485.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

math_core-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

math_core-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for math_core-0.5.0.tar.gz
Algorithm Hash digest
SHA256 4d7cd59fc1c1af0137a7d953e903eacd4318f14b91b62bb20b8d7a995ce7fe04
MD5 96f920aac54e4450362f490f74374269
BLAKE2b-256 a587ba34221ea17dc7ff198839df223c2ca43dcf825402241fc8ea1d9aefb12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 734adc71127114b19bf55d9dff2f72c6de201f2e45cec869f47fd84bef200b49
MD5 50e2c685ca52e3b27fdc041fccaac346
BLAKE2b-256 6e2e3bea7a7801256e45c82bdf56ca9fe733e99120e17413633a07b6a5bba7d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7c5e0fb683a19d13448c3c82e351fbadd9b814b57112b2449d5b8e41ad46ba1
MD5 60b1aceb5294b9c47080751d45a14b14
BLAKE2b-256 9b0fa3281136dcbfc59edbd5eb932fce93280321b6834fd20282192215cc57af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 610c2285bf2841ff1a8410768eedb038288c72e032ebf2ed21188a89d3870b38
MD5 52f1826f633f89cda1b185a605dd6019
BLAKE2b-256 15fb71848cb666dde1df6c14d35ed66bdda264bc9346bdbc0b26b9d25d214323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2478dfd094770f9098a34f09616b348d0439ba1f98c69c9511e4a19c05aa052d
MD5 a406c1e671b56b21214f52c3ab669cf9
BLAKE2b-256 820443d5f32234ab168ab37c96e63f2fb3235729c71efe4c08cd26fac5ffe50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e69912a12f1cd17c53e224b824748099badf6a7b5f35da3a90805765423222d1
MD5 bb7df49223196d2831851cc5fa503085
BLAKE2b-256 d7e7beaffa265fa5548e3122f32ff66fccfce817714239fc96b9b11d545c409b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0988502dc325cd0dc3c6a5db4491efc586f6e95cc7205b0c6f39e2f62216094
MD5 f5618c970e238503f8b331d6e5a89445
BLAKE2b-256 113d86604516b3f12571137c1cf0a6839aa9bc3800b0e3025e6e0b688dfd95e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 273307bfac353cb81631af2a9d5048bbe0c6376aab90a48a851512ce5323a0d8
MD5 238c73466c0e2fa19bf81ef2f995dc05
BLAKE2b-256 25698ddf9168e52836a60dd6ed4e3f597bde8822c854c3a1474febd681ba199a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 478cd2661836356febd112080d2f69da107d212a38f46c329d86fce4330c4f53
MD5 df2503fdb620a625d84254e3cc05a9e5
BLAKE2b-256 87e859ff54072a25dc69861be65564f8968faa8dcf9ecbfbfb8142ba73ceb4a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91fbda74ddd98f07f09694868233c750b8ac15c41324d3c5c703566fda447cc1
MD5 f6dbe237ae40c703b86bb84bd10d9c3c
BLAKE2b-256 4fcbd9f5908dfdc060a4f9a5a78870dd6a6a0de0c0c52a322545eeaa7cdab6d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b99e040483d3f5ba3e5a89896b02b8b313605f428f677e03c7276a2c53fdfada
MD5 ec80de30a9dd70f5fd988a32139e0563
BLAKE2b-256 cbf7a257da8b7bb5a1ab933218c2cf3d0e84fa38e4fad037eca99c8754ad58ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f1cf9bda5f9937930f40284749ff0a1f53dd4c22e4860d1af6dcf6511da3209
MD5 353749624622900821e003299447ec39
BLAKE2b-256 c6a8ccc746faadb568b3173d78e3f2bb986a298c0b383867ace714c598ee3fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1a1a0d18ff5d06c2b0da4625acd7a3eaa9551736cb95074e0dbd69d429b04c33
MD5 b51f3c017985e5a63ddeef9601f7dd01
BLAKE2b-256 4063ac88d9481a8345f937257816afd960a34294d2d55e86fb1f0957112e1524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9887a500a698cbca51fc00b1b3f84a5a640beb19a97d661af0c680814abdb738
MD5 d0471c049fdf12ccc1e8015802ec7d62
BLAKE2b-256 eda454046efa4251736c0d06ad740d7b7154d0eb28f46385e42c73fe565643a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d51189cb02484f35fffd05ca0838fad332f297e157548b3cc5faac66de48e686
MD5 bddcbbcec2b072d0cac05725d641c5a1
BLAKE2b-256 ed2872902aa27991a5a96938e8d09653a9b33aeed3137f234a7542eaca8ee073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f15db1dde7b44ddb2ee774c3e877e1240fc3751602f3434d17001bb4a3804f91
MD5 9ac7cf7398605d12491e6778913c0502
BLAKE2b-256 cc5074afdc732465e8027310cd3603036b9d093306ec60bef822df774d24a12c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 377d8bb655b15a75176f314acc106ed09f85d1ca38c852bf67b9d2369c65e458
MD5 469161d78a8232542cc2541f909ecca6
BLAKE2b-256 f1f63f364507e60a405cdd095d39fd0b9b697941510302723825035e20844c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 273d3dcc26f17eadbc14b9e26f243c7134b1dc80f500988faa6219ce4ecea416
MD5 bff8b7edf0e784618f4d81738b0636ff
BLAKE2b-256 21b2461715d2d7af19ed6c58a519f49e00879066667014f32c917c3e73cb96f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a074972a92f46a8e7dadb671225ef98408511b0a9762e1731b2511f1fc269f1
MD5 aafb55e5441a45d40fb834c166a21d72
BLAKE2b-256 3a88b2e70769c084f42acbf7bb304a83519c0d20e3fb9207fc4fa8e9cdd3f183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd84d880261a2fa6c9f9b5883ceb5a190c6e5fb4050026e4705a29f0356903ca
MD5 be81c5efa899da8abfee1f36e88c6b2c
BLAKE2b-256 157ceea06175557c3ce072d5bc3bab8b0714bde17e75e7d55aef09e544b978e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82953056971eacd9998a47956259cb47ed671583362b6f64019ac6199cd50f6f
MD5 1ccb9fef3eb6b7414d794492ed477272
BLAKE2b-256 4a248d2d15288b5e5ef312350fe83ef856510f8ec01f9d6e3ff99d834dde68a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c9b5c9d0708d96b509656e40c5ae564702b37e80435f596d9609eb7a8c990c4
MD5 7555088d819adbc31e883ab03b415c8d
BLAKE2b-256 3fe227d1b48f01a8757dc428802101790d19ddd2fe365fa89de0beba1e35eaa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0583951d253d7c8b2f01c215dbe5ae867235ba72f8738c9275e63fecea87de6
MD5 86ae7fbc4ef92e1136fc0cb9450f59cf
BLAKE2b-256 dbc7b97e5c283a03f7bc0cb1c560f157380fa3bc880943e592484a1b4603c009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0900480656253ebc7c568b105c3bd384166f4fae35cd81736134d791bbb94e2c
MD5 7bb345b7ec4f38882de7779d76bcf571
BLAKE2b-256 2f61f8519b82f19448631e47d434d87e141fa89610f87b84611f04ad9e753039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcc5b296bd32d49b9c987faa8eb851345660a3ac1479e667b163d5553d4332d1
MD5 d4748c0900c8ad2a5ddf9f346cdfb474
BLAKE2b-256 0a4656f47bb9a98e195ada02a4f36e9b5aa29ebb270aa70b1a14a11d2b8e30f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d6aedce1c53398a8aa25233a9d0f10d71e2befb7b8ce62c207affa5b468a97a0
MD5 78f615fe483e6e9c312e0c2078dd3639
BLAKE2b-256 e44eb49e60c0a3c4a7e9c2c153cf5a16a93e130ef683413db094b86a385efc71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a222fa61ddfc3284099e7781330b68a9a66de1437c347b4e3e7a05db78fcbdd0
MD5 e75ed96c9328acbdbde5832b85fb91f7
BLAKE2b-256 4411b209f870556c67223282ef2b31d3375d86e98e569fd8af1faddfb3615ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f84fdd18bc084ea307eb1fef130d1d2bcaa004e0528d50f3accc4f083d620e7
MD5 e2e26f5c2b3229652cbd93c70ab69e80
BLAKE2b-256 b6e4b92cbab925c509f3fd8251b90641afa88769d44a5aa0123ecdf2328a244f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04168513cb7374d924a47366cc02646dca55c71f886e670e1a416cb6363d07ba
MD5 558e3cf88f818fd2de92a345d1373987
BLAKE2b-256 8115e029954b819b3923ddb668aa772cf80e3dd5fecedf7661344f71efef457a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe1b19e147d1af485a658c991f054e8a47ee3dad7da87368f224a33499548850
MD5 5fe6e6093116817101a72c1a3c5ba386
BLAKE2b-256 8cacad9318d322396c5dc08648595b30e7952b909a798ec4606c11fcf8692001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d4be6d8fabc5573e481cf979809cd1343157491c8068a103f090a439e43762f
MD5 7b108514f4d1ebc535de886484b50e09
BLAKE2b-256 b83daba6e0d0ffa0771e69af83a9cc993ff2724a350096284a5203b9144709ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c36be61d5f2881c42c5b42e6e92502190f2bbc83ca3f12f1e02047552278da2e
MD5 0ae33857739b199646b7c7e29a2151e3
BLAKE2b-256 020f79090a391b8e134f15ef2d6cb311a91412388e6089cd9c94e67e6c6a3a3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd5696f76df5c83ca0653b6d3a64aa277f63c01f02a0532d5ca0a5cc750ff6a0
MD5 41fa4dd14a3f96fab9d64dc40b818052
BLAKE2b-256 17cdc9c28fcd17cb8be4c4c035bd4967bf7606e51aa1630e778cb391c5b54fe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b24dcb6dc1abb8553643279029349d3d2f5e449e5292799c0722e40b3fd3e38f
MD5 0a911ce09699203837b00af6dc6fde9b
BLAKE2b-256 fac06692a2f3aa4b2f77f6aba9b85e016d86d73246c942a8a375fc97735424c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c6058a356d49ebc59b010463d4cb33809ec4c8465734a6468e3a0b2e17b0969
MD5 d7348dbd1c75130dec79a074dbc4fb5c
BLAKE2b-256 7230758aa27f58ea80c027ef23b7f5b7f5b33f692b8e8da5c3bd1c583ebc7add

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9c87c4464bc331d08406d97398affdf415280facc8b18af52d309ed214bb7be
MD5 7e2419a17cfb2fdddd95c957d0899e52
BLAKE2b-256 d98b06f89aa293e4c5c157e9e79c6bbc17e1be0e0f77f0eec1b3ba1b95c8eda1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 320b4a878421593b2965856f004bd94eba510af07308ba3f7afac367379d4dff
MD5 210e1de61a16c92d551842ef1630011c
BLAKE2b-256 ec16e9f5dc591255d324274997b8d84176b753d8501ac6cbd3b0a29efebf276d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12dfe2d2272489e250767adc78e14411dbe945b6578cf654d92b6d527a3465db
MD5 9e0082ad98a73b0f7e7c8b15f66e95fc
BLAKE2b-256 20c78282d913e49866f1d40c97688a79a540af760944511a806db50dddb7e382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0456d587f1e99d22502d613f56f8e38390a13e607b739758d09075ef83c40a47
MD5 b78c824754ce44a8a4b6de7f7f858b05
BLAKE2b-256 b90fa05eb83a4c81d4d7182f6a3638f68881b9270e9fbcbe3a6c69d3ff6e7081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fbb76dd346b6010004cecadca83f210d4663ece41a3c80c03427583c3059faa
MD5 d6ad41fad3f9a5de9e6d5680d5bf0dcc
BLAKE2b-256 11b212db23e10753460b63ded194e24cfcff21e927d774b3878faa7009c7b893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e9bdde05251a955044350ffd4fe5b60e37c62afc4cbea3b5235ac8f7d29f730
MD5 898bca4e30c3dac38679f2cc2bc4ad61
BLAKE2b-256 dac0aecefe9685c141b0d24b91efb4f75e875bc0d8bf8c0a661073f1c4462e99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e20ebbe20fdcf1ece090c3be928a5d21a383814a9203118cd9f742b55411889d
MD5 4e253586f386f38e54949ef031906706
BLAKE2b-256 48902ca45d5297064840061d955f4f8c359ce07c9f1583050573f26c1b300011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68c7517b4f9bf99826b6d4bf81c6622a30320f1429897a75748bdc53194201ea
MD5 102790c114562826f663e1da0c6babfc
BLAKE2b-256 28d191ed5ecdb56118d03c1474d6c35317a5ed4d0f55370afc0f9000b72976cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9419ced3f1c54fb8a4ff912ce0ec98929cdc72115dc12e01b2a5f246174ca93e
MD5 3f3225e970941d825759d8bfefc884ba
BLAKE2b-256 09a6814151fdef3ff70e968e6c50a3218ad934412147da0bc9bb178c4cad29a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e117addf514c22072b7afb8561b528160c3e79f5c50ed055d171fe14b5f94618
MD5 eef7d63a539072b440c4edec610c59d1
BLAKE2b-256 56b0666753c6059f449f62b3416b37d35f048cc1f321c932b218e8034bdcf4b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62c41e43cd7d4f93403640feee08fa88f8c07bb80eea3919475fc12164c1ef8c
MD5 a49fe7ec34f334cf898269c692921c63
BLAKE2b-256 15bc79a7bef098b4a54952d2e9aa56e054c0f95bd221e95b3b8863150d6214a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b54066d0acdbd78ca85bec6490e3306e550de29c7c4aba8dc79b5fe68ce6b29
MD5 aadde152bd73d7332d23a4d7d1712a3a
BLAKE2b-256 87215a7af0b3a61fee110953433e184d2d921a3f03ea555e7e50b5d1aa78a832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6cde39ae1ac00f9ccf1784847f6106316a0ed98eb8599fc76664555b97ba9ce
MD5 9139e965117a8610ff9d5a0538a6c11b
BLAKE2b-256 042562299a357307a168b7d7855a90c0032ee4a20451fba3cd3ad863efe20bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7491bdcf7535ae11c9627053be620dd122ec51e6d59ccc3decc8075454de6593
MD5 a349b0ce8adb4b0b72e720838b0a4fee
BLAKE2b-256 76282134f5c9c3c22754a2025060e54ec06ccf8452102d1782d557238f43a47e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec731c07fd34f9af7ce4ca14c6c28ce6f5f2426eee86b72f1ec2014608658619
MD5 70121f6eff3f4877b9360e66c90489cb
BLAKE2b-256 87f0e525a9f0d8af0de18cac37029bd4a749f4642a9cc24634c80fe8408cd248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 056eaca821401727c96edef79295fc31441154d6d71520e9c64042875a0f49c5
MD5 184db042a1e71a9452cea6af04fce130
BLAKE2b-256 540e79c513593059fc08ece2f719f80f3bf7625db8290f3d8bf18092ee91fd69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9255cff3a733cd28e326a65e88696b74e7f16e143e3fc4921f8abff443c343b0
MD5 8ca5aca1a04701f0aacd8463fe668526
BLAKE2b-256 38f0175e18c94514083606e798708ceca96734e08e7e603efec0f4f546649d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54e7cb3630369ecdbe67086341f217c30bfda8ed0f2cb451d4b93fefa3375e1e
MD5 5b5494c9e51f912bbefaf8763f4194f6
BLAKE2b-256 7c2e237bbbd46078554f03f7968bbd567b1ee522724c36dafb7043cf11fa6e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cb36516874fec4be4f853cbe7922ffd13847bfdef4b9db3a3512741cb9bb104
MD5 5166855318c8c7c751b06fc5e608abcc
BLAKE2b-256 dbbc822db2c4f2d9704ef7aa8409d23651543ecaddb5bf94623548c7fd670982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2b0bf5640eac063f29ee8a5e1d06766aea0bbce98b2cd4453403c4c27deae90
MD5 67f2f4ef30c9aab136411cd8ab183ebf
BLAKE2b-256 6d6c2ac044dfc38dac65025a8396c682cde0fef35d0c831a563512fd34c7db77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65d7beaf517ed7980d5fcbd9853ffe7b93c23a87813e94735ada2d68baa27677
MD5 9fc83c3cd10e9debeeb17c3930d71eb5
BLAKE2b-256 df509c3a78f7fa2c0ca32b1b08a377023de1f6fe01810291d45d2fe7b1190208

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