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.2.tar.gz (128.0 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (530.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

math_core-0.5.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (551.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

math_core-0.5.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (597.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

math_core-0.5.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (491.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

math_core-0.5.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

math_core-0.5.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

math_core-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (527.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

math_core-0.5.2-cp314-cp314t-musllinux_1_2_i686.whl (549.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

math_core-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl (596.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

math_core-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl (489.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

math_core-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

math_core-0.5.2-cp314-cp314-win_amd64.whl (191.7 kB view details)

Uploaded CPython 3.14Windows x86-64

math_core-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (528.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

math_core-0.5.2-cp314-cp314-musllinux_1_2_i686.whl (550.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

math_core-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl (597.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

math_core-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl (490.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

math_core-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

math_core-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

math_core-0.5.2-cp314-cp314-macosx_11_0_arm64.whl (284.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

math_core-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl (527.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

math_core-0.5.2-cp313-cp313t-musllinux_1_2_i686.whl (549.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

math_core-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl (596.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

math_core-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl (489.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

math_core-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

math_core-0.5.2-cp313-cp313-win_amd64.whl (191.7 kB view details)

Uploaded CPython 3.13Windows x86-64

math_core-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (528.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

math_core-0.5.2-cp313-cp313-musllinux_1_2_i686.whl (550.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

math_core-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl (597.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

math_core-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl (490.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

math_core-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

math_core-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

math_core-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (284.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

math_core-0.5.2-cp312-cp312-win_amd64.whl (192.0 kB view details)

Uploaded CPython 3.12Windows x86-64

math_core-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (529.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

math_core-0.5.2-cp312-cp312-musllinux_1_2_i686.whl (551.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

math_core-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl (597.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

math_core-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl (490.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

math_core-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

math_core-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

math_core-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (284.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

math_core-0.5.2-cp311-cp311-win_amd64.whl (193.6 kB view details)

Uploaded CPython 3.11Windows x86-64

math_core-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (529.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

math_core-0.5.2-cp311-cp311-musllinux_1_2_i686.whl (550.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

math_core-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl (597.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

math_core-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl (490.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

math_core-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

math_core-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

math_core-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (284.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

math_core-0.5.2-cp310-cp310-win_amd64.whl (193.7 kB view details)

Uploaded CPython 3.10Windows x86-64

math_core-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (530.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

math_core-0.5.2-cp310-cp310-musllinux_1_2_i686.whl (551.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

math_core-0.5.2-cp310-cp310-musllinux_1_2_armv7l.whl (597.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

math_core-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl (491.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

math_core-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

math_core-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for math_core-0.5.2.tar.gz
Algorithm Hash digest
SHA256 c6ba7846cf177fb2be469ee4dc9cbea4b3cf1942e724123914e195d56be3006c
MD5 16cfe7ddf401a7fa1d5e681f2cfb11f2
BLAKE2b-256 f8f64e8c0f54c8cbbd31b41edb89607d527da317692b72599db6bedc4548beb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7f3efc571cbac0983cd032ecf239937dad31fae4bbac2f2321c1ed3e1fdf2db
MD5 b6460537f7cefd3335c8b8c34796dc23
BLAKE2b-256 37687fe7da42a159a5e9134c8061141482b4a51b138506b071bb44df476ef4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a3a7c06920bb2088d040d82f8bb97db4d3d44ea1ddd23812198ea5567bfae21
MD5 f65407d8dea050954391cb1f0a7fb466
BLAKE2b-256 5c1cc7b60dceabb5a1c324c988045fc2d0979a148800183310d1e7f25f0366ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a0dcb53c39706fdfd5c25a3f31fb80ab30abdc0313b5cf633af7ca299ff25ae
MD5 bc9c800b3bfeda58af23a5c1216dc621
BLAKE2b-256 85c6ca546fd1343c891e14acf3f9a05e6ae3efadbbaf6387ea94502d818e3ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0680caa3a38bb4318fcddddd772e008992931d65cf40280f3f0a4ca6214ffcca
MD5 f59c4f64ad722ec4161e8387f47be463
BLAKE2b-256 05131b3eb0ccefe2fe13e2968e92da7a77b706b906e3dd6dd29627380ee1687e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77e0ec7cbfa89f0e2c58c34cef969229e6d855a2b8ee29bfc745cc8b8ef9a2ec
MD5 859b6d46059618029b833736538fa7b7
BLAKE2b-256 11b94cdc8452fad29ae062ed85f9aedebf4600629b7048f226a8cbbd38308c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbc16a57e4f97e56e0fc5b4cab410fd4738eff614615db8ac3d198802ba903ee
MD5 bd84c7f3f430df5001d031f7b4a8ff67
BLAKE2b-256 d4cd8eb774b11a2c62a6a6e4cc7921bea95f5f6ae4b0026083b17b30c01e991d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e39b315e3f50653d2570004476ae3679d3ca3f63c48aec8194e37a3425468ac
MD5 dbd12dc29cbe6cef00f9bded6727ec16
BLAKE2b-256 4aa7d0acd2eb86f9f3e3ce595d9bb5f39e37bd8690381200232e336900029a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f23faca96c89f6f3eccfd9925377446fc6b48f4677806d90ce70a3ae3053c2b
MD5 7d9d3edf4290eb49400547e967e9af0f
BLAKE2b-256 e686bae0efa1f4b897ddc83f50953751f0898ce58aaa910198b765bd3529551e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4f5c17b5019c9b3de225088c6044cf0164fb67992484d3717155875aac72505
MD5 79ad41f6abec50aeefd41dd06864ebc6
BLAKE2b-256 95e6149a6505cde7f960316956090140d6af4047c56695c058343b90be557c2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc41052b2375905e3100c34f840e0957e392f7707443b463085e9a921157b8b0
MD5 45a2a5ae7ebb8d684da32c184b4d15d0
BLAKE2b-256 3124bdaa9270018dbd93ebdb88faab7feba1c7abdeb330c2a6950b59d0290be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56765e7dab8ed34b15646270c03f0193d80d5d168fa5596dc5dbce7bbf5a484c
MD5 0043a95dd6684513b46064d4d1e61c9a
BLAKE2b-256 f1eed0a0e10856ccac6bd58856ada37d9d010a65eee72ab47eded1e04f23eed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 653be38931003bc560ffaded68994242dc708432b7483cc0891bfa19e550b146
MD5 2fe9dc05de79e5e24e122ae58b93248e
BLAKE2b-256 3aaf20077133cb0aebf772e868ffa9d0e58cb7934a48eb68a86d00dd27e77f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9e762f1be335dd639dd5dc96811865ea1155407eda556e6fedc4980ed8c3d93
MD5 5015bb313534b860f62a5cf2b862b0f7
BLAKE2b-256 c591b05fdd5d523fd40f6eb87a038e5255c73e5b4a4d81292b3fd53860957e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d7b91fea1c01f5e94b9c24c41503ab126ab4e5d6bdce483c526562748a0aa60
MD5 845ef3ed5f39795e3c42eb6c40a3a752
BLAKE2b-256 16e7a9bea593f39bfaeb46498e8e19563709678277d40b0a7e08e542292f98da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 298768dd60b82a07c1893e33ba9c7cc915aa558bef853ed59769e805c33ec977
MD5 91974a1029bc95e5a0f6f088b134a1d2
BLAKE2b-256 4b1a3b069c8c430a568d19fdd99f86cb3bc16b25f29f45915ee32c4bb6ae98e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6f7c02bbd54f9acf25baf9a7ecd2ec7fca8c51a6f6fee82008e6b05a569e1c0
MD5 fa844c9ee303ad92127dd3f91ccbd1a7
BLAKE2b-256 6867499c772205403d6eeb907d71bd44cdc6d65c4df9dcb4e94dbc3a48453223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 792453de01e52b8b08fe5738b917d9db72604c90d26245605241a9162ef65977
MD5 fbb74c69015f7a7ea2b9e18d083a6616
BLAKE2b-256 c196d7227314c1ddc506cc9c5296d7c724e3fa7c91be9d41540f7dd123fd6e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14573ac038f0937c847a0deeb0a65ab94ccb4a4b24c51c5f1d3811ce95f63c75
MD5 903abc03b5eb0b5ac73740663db9ef84
BLAKE2b-256 3379fa5ce35d8492979e35a6e490db998833ea068073b74d8dd6a3c3afe59c76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69641bc4761f18f9dde2174d8b1cd3c962259e8764581b572f265fb2e35a66d7
MD5 5e4eb1329066943ba965359645166154
BLAKE2b-256 2c7a3070c580a17e3db3528a6205bf1b016a481c0026bdf8d2ba15cefa364366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 515d4b4250369d2258f5177bf0f0f34109a307714775b9d7d0e437fab0e46523
MD5 dbc356b532778f03f6719bacb425c2ee
BLAKE2b-256 2385802dfafc0759b858e3ceb42c004076df496e46b7314281f199a41e52dc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f93a334d7d5437321107b6bf5b3f305f342f4fae36717083c1e05481f1dcb763
MD5 25029eecb6f8da95cd5941e8c84fc226
BLAKE2b-256 635696073dc9ef8021a7d9d5961c141c590621037e8c4febabbfc9860b91ad6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0f745d0c80cc75c3df0bb7b32125ea90919f03f5ec088a1201ea7eecd169733
MD5 3364a65a541395a5c3b75bdb24377386
BLAKE2b-256 fa74a3fcb3a3f0c90205bde6469f93cdfcf62104326e6ab9bac9c6792f4c84e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79642296b9c511812afdefc46b983faa00d5c7c94484b49965eb70473b8381bf
MD5 eb5d0c233b62dcd61ebcf517a23ba99a
BLAKE2b-256 9c6b0d56f6ddecd9b3b9857b8efa3ee56201b633a4c0c3ab1aa7dca422bde715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90445b75e272632eeff881f9e597293b8bdbc7ccde75d3827371486f73d7bb31
MD5 33ee8360700b34bb1f6cf03ccfd972d2
BLAKE2b-256 e05af9e72e29a1b39023e805a1a72ee41988767ae604359a12447fd1343082d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0beb1f2605d73f741c2c237cfe9057ec8c0f72bbc25959fb6184f393d8972029
MD5 5119166aecf5f737cc8338f264d0de4c
BLAKE2b-256 181a5b823df40b2e2f15fc4c2a794de6b6743fed6e1702ff766445fe69f4db89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcb8835f9021e74ed41043f2e33c04da9e0a045c2957c84f35d057d3504f1a22
MD5 c74bee96cf7bcda8df5523338db2e7de
BLAKE2b-256 3b70e7554400569a13a16612e68fdec6cd391969256876617a940ae8f71bbf09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04f538426b210f53f66a2ce8f11c126e58346a745ed0160023afd08f1180e2d6
MD5 87fbfd699de864cabce057c44df9eb3a
BLAKE2b-256 3ef0ec453152186130e9c9cd302be64c950b5865259ebfad5be988f60bc5158a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0602c64c93479e24d9281f2da9a5977b2f46abca099deba2e888446e02d93066
MD5 fff02a4327785f5952820b9b447dd250
BLAKE2b-256 64a5a7df5879bfefac95d11af6da8fe8c55694b0e66e14c3f3377298908d6cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 498e80753bc357411438b957ca77666138685d552557a9d9dcb01c96a0c6c2bb
MD5 3c4e29e1335720602c2a94ec00844d11
BLAKE2b-256 de59ba206b850c875b6b455070d767c718956b258093bbd758b1a4ea41dd06b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dcaab1254007c4d69214ddd4a2276a27a6374db1425a3cac964f39309069052
MD5 6265ef91ee96cf691a74866d6ee58ec9
BLAKE2b-256 3604d11aa303340acbc2d844e002e3a79140a48addb38971c862d5aa917c1233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e0c515af4c6719dc95c8ed858b62e763bdb80992c3522199e674f41adcc9d97
MD5 a1ff83517db917c6307b71e16cad28a3
BLAKE2b-256 a1c92644dafe27c18f859bdf3b5701edd91bb81f60ae2e95c7299704c7d86cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8227ee59c239ff1f0ea753fd651b6c599f40fedcfe4205ae4479c6f35acb13ed
MD5 c0b69efe6475250b1ff1f64ae893e9fe
BLAKE2b-256 57447ab166c637936688be9fb0003124a0e63d2c62aebb43697a12f1d1c41a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 695fa80bc448f4124fd1ee654991d7ad0dd310b0e807c731e57e44275fc5a969
MD5 ae4f77f231c8d5e4b752828a26ed618a
BLAKE2b-256 a33bf7270cde7311624ecd2b4c1dac3084de19d9602fbd4fb0856e31d7990ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66f204cad64d3928b11e2037ba7e190d848da94b9871743742262c2ecebb6c3f
MD5 3a06020341afb0a46c2009674f092c00
BLAKE2b-256 61aa7d44cbbaa4a6e7c9858832f5b32c994a230ef8ddb1453941c949f1f3d2b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c38edff9be411de67f7798339c8e481e9788543d59909855a2cca08674164f3
MD5 fb399a50b7964a7ecb0ebcc679174066
BLAKE2b-256 47a802369f0218cc91d1fb380498b12b571ced7389bb52ec1d10585885f3bac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b12e1d0dc57c22a9627fd3d61b544ec5093a41ccf22eac54ab0b47df352b9dcb
MD5 59f968bde4d70838c3e1932d7bba212e
BLAKE2b-256 2df1f67498cc83468458172044b9cdc49352e638f6f2ff35210d5e8e1187778e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a2fcac64ea3ae0b889948529324197f4340ac74bcfa665129a3b436760c3bb4
MD5 830efbb2c31d32e66ef1413ea1d27874
BLAKE2b-256 0278da106804e30a2343bf6e645ac624347ee75d6ee77cc133233214b4b3e3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f1dfe1912422ca575fae7d7c315c64defd9a67a856af8598b9fa5067f04b0f5
MD5 00a1233566f4011a609284390af6400e
BLAKE2b-256 afa08e5192ec97125afd9893b45ddc06ef1b0db3ed64950ecad60372b9d0cef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6eb2e8d10f465c9e4391b50e3fad1138b264bd76f751fe8cdf1cf8a5c4e1f5c9
MD5 d59014dec0c137e4de7c7d9028955376
BLAKE2b-256 c32e9c8004bc1769953ac27d5159c667420b259eaf540111915d87deec4fec4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b6f1caebbb54aff5a7d76d8b8d5f9b88d94f8df123a44b397bc7423ed6a0e1b
MD5 607c9b743f91b058b59ca9417c275bc6
BLAKE2b-256 f442196a46e01593b79db2b79ddf5067539a79540117ba320a3f802084b6ad61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 160e10a5f609ded1fb39fbb00b48d60a3aa6280f51c83fd97e432cbeaf0422c7
MD5 1078ddbb50399d6898c7cba6566bce00
BLAKE2b-256 1ec56ff7ad782809f09e657fa4b33abc459ccf3beac0e17d7409b80af267f731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d00cba37600517f047e58982b7acc416e6076672a871363392c9822c897c33e1
MD5 8d1ebd6a34b95bd992c9f723ecebd274
BLAKE2b-256 db7f74e31f8a9836c0a2ce283cf8bb4a869a694bb5afb10adcd6c5a05868d98f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5cd6116824ea021bfc91bd5fe5864d2e011eee68b1ea4fdfe61e94d52c4bf0b1
MD5 752b8d6fde1bce9f394927faa693cb20
BLAKE2b-256 e245fdea366092eee10a93c7913ad1edbf219c3ded9044d3dcfb9ac2be9daa4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35110ba5c42045c0a275f82606479badda1121f58c86cf2efe4f708850cdd8a7
MD5 2f7ff8f77752dc8d600ea046be1c4496
BLAKE2b-256 6c046be055550736c796bf360b6b84e178c0768d6c4fc1b3b0d6d961f7b35d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9a720b14804f30ec0832740d2ccf8772d187698f028cbe66e801c362e4818fb
MD5 f5a0fe3adaf8e42229e85041e0b7fb31
BLAKE2b-256 a241cf3a9d616539e505141c2762007012b181130adeafb920a7d362965c23a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 680b00f159c0ff70bbf688be00974e960b7d2f794d743beb227c1a312b6b8d0f
MD5 a22407e852c609e71ee63174919d1192
BLAKE2b-256 319d9ffcd50610c2e744ce1e0322834c7fbfbf5e1f17bd87970d30e19371a2e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94c03f599c7b3bcd1a6dfa7fdcc7191a96914126572ced568689b4872894d194
MD5 25b3cb4ce88ef0f80a446230052c4053
BLAKE2b-256 e19b5f335c05c59659dac131bab8cb731873d543588feccc65ba8ed4d9d879dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63285a0d5044e5c7de487df6334af2017b35b6e724128ac8ec020e0f48713b28
MD5 6fcb307490b0579dd8740b35cc994358
BLAKE2b-256 3a3b361390a0103149c1f72583b601901271fa18c6c077057765706e75af793f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7cf9bc2bde0a653d00a58501cb5aa72fece0fb6b1f035b068da21a00cfe378c
MD5 67b6a47bb6d86aea64631eed4f47cb49
BLAKE2b-256 70c98b57f43fde7ad59e7d4711de5e40cee87c0521616c1c15e7466e8343f642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a0ae20c0d89135874914792677b0cd00f4fe59e5661216d662a75859c67ee50
MD5 5422c539d32d870f84db28bc71c7fdff
BLAKE2b-256 018be0c0290e278eb8202f1ee0bedd0401f3a0a3423fb4d29529b985d9225b75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b266a9f3d86b7bf95b877c2e9f977c3a955a4c5076e40b5feaabb9b62676dd8a
MD5 17cd85c9e29b8910702b909f7db9994e
BLAKE2b-256 a56456d271e5a6af62dfbe31fa936b8566506cd3220ed946287b0fde783e702c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33c4dc92bf477b19282ff1fdbbab055003ecfcfc8c35ccec83e6de176c34ea3e
MD5 17d7a994529ee0896e5ce8d7a7919e11
BLAKE2b-256 fb8386190e5cc04cfe3d359542bd6e17ab8e4f94c0239876e0adc59a0ef4ea1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8e949f343fc587bac2e1de6ef3ed9ee470abd9154b6ecbafecb1f1b55f29352
MD5 ac932b03d543144e5a057558210c99cf
BLAKE2b-256 d0dcd5441c0cfe692cc9020f39c553c61f5e167271c3a47fd93c4175c8718e13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c65c0fcfe0728d133ee24b9857f4000019003bdf5e08a15d14aef8475c994773
MD5 8f850984b761e89ebb04e3338acb1c70
BLAKE2b-256 66a75f95d23b7fed0b4a6f771f8d6397dae3190de5d2b3b56d0375d25b1500d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 959df376d9b19e3697d56fb9934b7c0f194e95961c9b277244f4cb9992d62c63
MD5 3533b7fe8a7673d2fbed5a862210b835
BLAKE2b-256 2711bf88ff2e963e138727573604847d498245e39dcb83ea30a6c52c4541f44a

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