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.with_config(pretty_print="always")

# Convert LaTeX to MathML
mathml = converter.convert_with_local_counter(r"\sqrt{x^2 + 1}", displaystyle=False)
print(mathml)

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.with_config(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.

Constructors:

  • The default constructor, LatexToMathML(), creates an instance with default configuration.
  • LatexToMathML.with_config(**config) -> LatexToMathML | LatexError: Create a LatexToMathML instance with specified configuration options. See below for available configuration options. This method may return a LatexError when parsing macro definitions.

Configuration values:

  • 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 return an error for conversion errors. If conversion fails and this is True, an HTML snippet describing the error will be returned, instead of returning LatexError. 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

Error returned when LaTeX parsing or conversion fails.

from math_core import LatexToMathML, LatexError

converter = LatexToMathML()
result = converter.convert_with_local_counter(r"\invalid", displaystyle=False)
if isinstance(result, LatexError):
    print(f"Conversion failed: {result.message}")

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):
    match converter.convert_with_local_counter(latex, displaystyle=True):
        case str() as mathml:
            return render_template_string(
                "<html><body>{{ mathml|safe }}</body></html>", mathml=mathml
            )
        case 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.4.0.tar.gz (124.6 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.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (525.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

math_core-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (547.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

math_core-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (588.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

math_core-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (487.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

math_core-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (312.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

math_core-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

math_core-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (523.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

math_core-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl (587.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

math_core-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (484.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

math_core-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

math_core-0.4.0-cp314-cp314-win_amd64.whl (188.0 kB view details)

Uploaded CPython 3.14Windows x86-64

math_core-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (524.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

math_core-0.4.0-cp314-cp314-musllinux_1_2_i686.whl (546.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

math_core-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl (588.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

math_core-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (486.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

math_core-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

math_core-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

math_core-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (279.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

math_core-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (524.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

math_core-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (587.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

math_core-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (484.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

math_core-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

math_core-0.4.0-cp313-cp313-win_amd64.whl (188.1 kB view details)

Uploaded CPython 3.13Windows x86-64

math_core-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (525.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

math_core-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (546.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

math_core-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (588.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

math_core-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (486.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

math_core-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

math_core-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

math_core-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (280.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

math_core-0.4.0-cp312-cp312-win_amd64.whl (188.4 kB view details)

Uploaded CPython 3.12Windows x86-64

math_core-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (525.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

math_core-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (547.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

math_core-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (588.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

math_core-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (486.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

math_core-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

math_core-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

math_core-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (280.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

math_core-0.4.0-cp311-cp311-win_amd64.whl (190.4 kB view details)

Uploaded CPython 3.11Windows x86-64

math_core-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (525.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

math_core-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (547.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

math_core-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (588.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

math_core-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (486.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

math_core-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

math_core-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

math_core-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (280.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

math_core-0.4.0-cp310-cp310-win_amd64.whl (190.4 kB view details)

Uploaded CPython 3.10Windows x86-64

math_core-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (525.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

math_core-0.4.0-cp310-cp310-musllinux_1_2_i686.whl (547.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

math_core-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (588.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

math_core-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (487.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

math_core-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (312.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

math_core-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for math_core-0.4.0.tar.gz
Algorithm Hash digest
SHA256 8f2b89e100352a27ca1e4c0e89fa48dc0fbbdf58ac7706b705c666cf1558a587
MD5 a3bebdba1915ae43e257e9b98e492688
BLAKE2b-256 baf5d904764c52fbc1e6f2532b6f6aa313517a89a7665c745f14a5d20f8de0a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a362e7f8c5980ce5844161827df169511026cd306725be775c8733471339424f
MD5 c3b6569e3e7a59c6a38a88933b478438
BLAKE2b-256 a75aec68d0eba1d76f9c3495f76a4fd19bff41bf4b38f39b6222710754be6f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd15ae596b965450ec00d84fb4a2c29e058238ce9689ae3e77b6ab734b9a2a50
MD5 4cdd2a3e19beac97049a5e0c159dc480
BLAKE2b-256 5bdcb02e1a99317a3730577608ef35747e0a9c2eff4b34d89738dc3a28a43de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ee08df6d8d3a477d4733441c531c4ddf4402e1c77ed987b59633c492af3e4e4
MD5 f35946a88139bf24ba52188506877dea
BLAKE2b-256 817b2dfbea3b3c2b9f8f6f94aae4cc65cbdfda21c8caae4876a39df672ccd03b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f27f2ef22e2ea2b4b0d47164f54005d14874c1e95373732bfd4400952fabaa4
MD5 2bc052e07bc26be8fc5969eee576bd47
BLAKE2b-256 1c70c1c6e35c22d81fad833337069454d5f08c4ac4eebacaa6ce9f72a9145c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 770432dbbeb319d53aeb22f6990d478c84794f2855b5d111e47d8b223af6ccda
MD5 9669575e99dc9c7d377582f993baec47
BLAKE2b-256 6841334ff2ffc002f4d7ae8f126be37602d51365abde9213c40f9a1c1393ad91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e591c9e56efed3fa71c9015874873bfe3ba66dedcb086dc802359844b59b720d
MD5 634d26ef8a7bae4092d6807141d17c86
BLAKE2b-256 5a6d5631faa9fbe983a8a9b39fea3faccf9b197e7a085f68babec24d53197260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa914919feefb061846cadda33a9c28b0f3a46145ffc5e4dde6d5066c535a33c
MD5 b05da096ddd1a1c35e30fec77ef89782
BLAKE2b-256 b094fb22340b74743712795ca5cd996e13a22e6d7e977941b53a90abf576001e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a76748302079ca8df19d711b273c36709e4f55cbddacf625d6c707669184be0d
MD5 1f2596d1bba4baf9b07d4825102d78af
BLAKE2b-256 85ffa6ddf6bebc5a25cc7a2e3bb951b9bae035f4ca5bfe3286f43deec7fa5555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6f2364c7451ecc9d6fb5a49acf38b780e26c31b4033f11ffab8868f66ef1ba0
MD5 8cf0e18361f6e866294b8b08bb1f2416
BLAKE2b-256 ad801226f05b62f911a84c83dac02fd41d7095133b01fd6b2cd0a4e5573f27e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3dab914fa7fbf329fa22729a8825fb01ada1f6e20521630c3b1d63cd28b50342
MD5 da94ecc45d83af9ae6c5e97d6de4b9ce
BLAKE2b-256 a93d084882460fe4ce77bbc761f3040e4115b2a9d7cc7f3b6c35b25bb07bcd5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08263f8056e41e46349d989888d2aecd644837017c15be46368405b199bf694a
MD5 dc8380610ed5b9cbb059e6d3ec2626a8
BLAKE2b-256 23b020ed8fec2eac704cfb4a8f12898fdf10bdbfde4b394ce6ec6b0676584e9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2f1599fe3a6b2d3048f5736ee70eb08ac6b5ba0128365efb284728919ff713f4
MD5 445bec4834b25c07a725e949a3e1c231
BLAKE2b-256 3e78c423bb605690108297315858425bfe9238e49c64b930ddd8658283898ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6abc41b9505078289a61a7d12385f38b7d627404346854939ed19709e36cc0b
MD5 d589567e137fcfb7a0b824759f682ddc
BLAKE2b-256 79deb2e2c9fc565a5afb0713548f9dd9266f769eae434a99515855e7830001fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6b4c6cb0e047e7e6773d08034edde013f393a3bac9de742ca0b662034a2a8a7
MD5 c536a22314db4228faac84d1b83c97f1
BLAKE2b-256 d9923ed5073d71c5e106cfb1d031f43051a2adae28d1be26de7baa100d8e8419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2340a62731e28db1330880c0ed22c91dce58eef892775616315e92daec2bfa91
MD5 cabbbce73ad4f96e7061b27b4387566f
BLAKE2b-256 020a27e8525f7c851c80ffd651e127a837cf6dbfe78fc8d0ef3ff37160491c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57935caa636df664a066e039dcf713a70975ac53e4a111ac4864c57b70ae3f93
MD5 4044767f8458e3fa14bcb30ba788692f
BLAKE2b-256 d4ecba009265d4df3a265de3765344cd466c9ebac29ef6c0a277e51786785588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 179f56d449c3c6678a06537f9bb49a40282b839204bd567ea9ff86e7bb4db5c9
MD5 58fb6a103b903e35d1561ab700ab9f68
BLAKE2b-256 b0afc9213bb1632d3c0620bb35a5fbbfec846b886ed06e4698a546a4ee143058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 841cf8c400bfe108e38e607702bae1dd963546d9919c7cff31507f88f25b89c2
MD5 738973048f4f8015fc4dc1c0343674f9
BLAKE2b-256 240dc93197e300b7e6d114579e5551fc32052793d87e29db21b5baa67a76b222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dcf61c5262f8525c4d01a5a69fd6645f2418449dcd636691ce36c5cb274d925
MD5 88a2c235b79ce59da3799b3a7a3fe523
BLAKE2b-256 4985c5ec8a0b711d48bbc475e701a1c27fce92dd336e0909c48f4bf858101c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a10b25fda5d24043b79b043c92551f58f3904850fe82e24197b8caf381148dc2
MD5 36c7f626ca3c8501af7dee0bb7523b0f
BLAKE2b-256 29d56ec1ae1a910cf48add5a39b452f45179cb12e4fbd82626ddffa30fa6c46d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87a547c6c9122ad1ef465ae9b0759fd4f8fc4d2ff592036880d2dd3996223daf
MD5 f7772a8bc4b9f0c1449caf8a3f1caf93
BLAKE2b-256 1d3ebae4af800109864ca592765fe218aa655d374ced66fad2f955749da28982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 361fcf5ae0dc3da221e90fc0cc2c4315ad32d805436afbecb86ad94325ee1149
MD5 9f48cf29eef6b18fd0362cf8fc3dc9c0
BLAKE2b-256 2359fed0f9b1e8e692af0d8cf27a80a23b0cd7ed998e5fddb84fb4ea9a8e5ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39c2298335064fe2b4b72f6198230ac88664f7a6cb6ab1b1e0687adaf38759cd
MD5 ad500e3ba0008a67dd58717763ee25f6
BLAKE2b-256 43d5778e46ffca9aa0ee7b352b9df409ea724897958fdf23dbdb8e24e8398bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45c269c02afb086ea6774a6d56afe0eff515b7c988bada754ed29d0047ba8733
MD5 9c678d7a1b32fbea798bc3a573db05e3
BLAKE2b-256 de2dd95fdbf522ccd4feec5bf394d11f32b81f8afd7eedc2d78f9d3d7b7dea63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a5c2fe2c2d3bfdf79ea8fd8809a662caeaa1e03d2659958e407350a0ae2c0dbf
MD5 4cdd44ff5851b78e0de0fa82016508ea
BLAKE2b-256 68a7a9145291ce090d0f2735373f86b3c2fc10cb83f8b803199e119dc8ec5813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ebe4afd064038106a4753e5b47c277ede6d1afd2bf80d450a0ae02c1c9fadf2
MD5 19d1a293437f2074cc4bc580887dcd79
BLAKE2b-256 230051eba95cf91cce7cb418fe8c344b96402dd45a69c7e7835bdbfa31c7e884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 159ad1846a57d0f0ddef537d97e5883aef03e83b4973cc8908797182467b6031
MD5 60730d7326dabf6bef91b5c2f3c79caa
BLAKE2b-256 8aa8362cb228f234584e9e6220a086cedd7a66f0e1dd48178e90a8afc20f7daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e64cc86e3ff7516fcf2b6afddaf307aaf49bafe8d32099bbdd8a7310519a200a
MD5 3926d39bf9cbdc6a240cb79d151a28ce
BLAKE2b-256 24220e289141ad686480f906d4b1fa4b1974eb777a10f694067f1aae93bc80c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06596876794feb955d81a68eb00796ea4d64b03bde4bbe0f533338726516d46f
MD5 a78a4a328c553c009618199b56661b1a
BLAKE2b-256 4983342ddec684461c2d65a6a707332b25c46730e7c00686442dade74827a1bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55f4624d9b3fc79f9cb5240298da3dba1daf621f18310aee14ed92583a4f43d8
MD5 fc12c40cffb91e1de46095f299a8a1b8
BLAKE2b-256 2cee7fef6719df4340ecc442d052b01feafc3fde3f5adf25d8da7ec13253f3f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2bf7f6663bc2328a84634dd8b6d41dd1ae170e4794bbe7ee17d20bdea626fe5
MD5 ebb32669ee97a2fba6263197e15fbd62
BLAKE2b-256 f3a3b8879558ce076a67daf70648936fa79cabd82ba1cefd13d673834b20e994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8569663cd3c3fb2dd86541f3a394833c8aa0786f210b60f27e6d1a1dde931e7a
MD5 385bcb2d2ea91ffd6546948a4559a550
BLAKE2b-256 fe0a4b7086d768bcf1c511913b8a22ba799a53206ce921b71a53879ba5577e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f18106479dd61dd4fde81f5ab224576c669a303c37ec4853f940fa3891bc4c7
MD5 dcd3adf75ee56aab627c80ca40b60c17
BLAKE2b-256 3403b7644be21c008cdc97a8d59cbc96a0a5a204b6802e815e8403d7fefda34c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6240e29c420289b236ddc431c0408aa6b5f4d8cdec228ee330394fe25a9fbaa
MD5 76fde2608d4d0da5f378740ec16109cb
BLAKE2b-256 143840eddcd511ebca93efefe3a2a26468210584dd960967d47a34d2e300a96b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 212bb8d8c64933a16bdc90ea99979db9ed2edc0a395eb089a86960085f7c6c39
MD5 b292b338d7fa7c901f6c331fcfaec6cf
BLAKE2b-256 344a563465078e1b14afd29ab727360e55902ab729f486c3b6527507e33b30a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bab7e3dcbcf813e8e4e8a5b2c043b9e8444be69a73052911c2b3450fc2b7c76b
MD5 e36593eadd754cd53dd640987ca3e96e
BLAKE2b-256 1937852975e35522244f90fbb469ad1eadc40b4bf0490c6f0f917ce30e4c36d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12aed5b3f5a5b560d0ffa4149f36e5e3e847d1b8b9c5254249ef27aa179a6077
MD5 b865d07f01e77fad312310bbfe85b3cd
BLAKE2b-256 76817bc5c19bcf61a6e2e5b803ad960d1812582229900f2eb3a3f836dda9af86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51c4c54f92b7723a2dea05226e411f68acfd3011ecad41a5be549c4369a75418
MD5 5283a0d07cd84e4cb6149de8f943444c
BLAKE2b-256 9e9c6c7c98bb30a0e5b75fe99c318bd5035f48e1c2ca33fb588db04ab475b694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5105a1519549191fffb75d51b0544f53a21a32db70d4d4297855f1395cc22a83
MD5 0b9da987e79741b24b9d409d65659541
BLAKE2b-256 68589a34b914298d2332368a8ef750bf34925005b2ade3ec3214ff847c8441e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79a6363244c6252e7d91bb2a3cc543e74853863872e231615f1d2570aefccf02
MD5 f8e001d3ee0150827f9537581b0b6ebd
BLAKE2b-256 ce065eedc3c66c41a133a935a7c968da8c2339417d661ab051ddd6303d63b2b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 97a82dbd4d44c280604aba7c81b395f40cb4422225e5048e108b4c85271b6387
MD5 82c974ac53f17732192649ab72beac07
BLAKE2b-256 976062e7e20db6e23d5f7af21bedf156f9e70cff251d29e9899faee0c5bc34cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4751885162250fd01ce51d02b7717c3fd9d6aa7afc971b583b342b6cf35586e0
MD5 2d8903aafded5a251364a85f4232d6f5
BLAKE2b-256 7d9be013e1ef98c2f24315d09bdd55102b3c605a5a6716089657f092804c5a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35f54954ea0a9968ee6276e2170721154917ca5b9d4c70db0091843d9c0e34e3
MD5 77904bea38f293ff98f9175ef9b07900
BLAKE2b-256 a4a9073bb6abd9bf95c3981bcf172c8a1559cbc71ad411eba4b1c0e4efc345cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2f176e475efe36d92c8c40180d1623bbf217edf1bbdbd6d6d17d1d51ecf96b0
MD5 e7dd30cf278221222f3e4b176c0eeb93
BLAKE2b-256 eaeb2c476951b969cc96adb8897e8f04df600e5ad7b66fcd5b86028d0afaa05a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 313b736cb1d28be7fbf597f8b42881e7c045974fd77da13c38522cf37b650e3b
MD5 5d4622c92d0c05d7531f3180091d2753
BLAKE2b-256 d9fcc3bd8dfc9277cc1c4129ad1cc464bf484e020558bfeb0446829cf58ad7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f095e6e96046d71eae0265abbf5a0ec592bfdb81d6aa3c15bfdc8b82fce5395
MD5 b2622c53abc6d1961f12fe3c8b0a2861
BLAKE2b-256 e64b9140946227efc8e260ee29eadfb32a201e965368d6196105595a603eb668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad12b3fa7541d1d22e7c52f990e8a21c3941ee298abe2dcda00c79cdde0c50c5
MD5 3b48a68e5acf057622ab706033402698
BLAKE2b-256 e6cf3b39f08f07d1b0c53062a23addd8f0e4dcfd763c6701ce5fb1f3e03ae0e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 200702cc511cf40d69bc7cf93b7c02194ca9076f35b8507f32ec5fee1bcbe5c0
MD5 529449aa1e2366e45cbc93f44d6aacde
BLAKE2b-256 a29048bb00e4df62098b08fe95c332178129d2e5fed1e9ed84021526f516c9fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0a70fcb0629fe51a53935bd1fc4cbffe0cf0caaaece178c329b8abc026a7a17
MD5 fe5bb6dc5ffe60811e10e32b8e69de61
BLAKE2b-256 80b6b5af51e359c7de8d943fcfde60409aa33f9e83955287d0a50bb374a93c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e56a8a1d0e9feca20f1ae380e73640fb5a7fb740faecba49fde14b7224dc3ae
MD5 84640941a543acb6840e46ad091f50d2
BLAKE2b-256 4c87255d2224a78893f603da8aa295a2602970656fbaccff9163dc00a7f1fcae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea3fba0ab22c55cec0c4cba81444806431d7a46ed97130b0782bea5387b59702
MD5 3f555debd9eaf32d2f41248e5652d537
BLAKE2b-256 5017f83ee4ab1b4f14eacead6b7c804f8d12ff500fb300c557efe9100910e752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee503dad84201694ff6762069d2e68f980338f7977b149d7cd702108dec93a8c
MD5 850957e9512c21b368387e6b62aee730
BLAKE2b-256 8c47389c9d980f219b93595cbaa8b591002789e02835c993ebcde3fc6f746417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 210d6bf69baae4a69c4c21ece48144e883191db01879f56760ae467baafa4dac
MD5 ac873799533e6eacf9b665afb044d4bc
BLAKE2b-256 0dda2ec11b89a830080cc6ffeda0293ec3a81b143718507837bb81481d3db1e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 129bf113881348cb387d13bc8bede550d11d60b9ec3ecca8c4a8db4d643ad057
MD5 3d264151ba9c23e9f6929e5abc681e18
BLAKE2b-256 cd3b5184c6141dc1981e7905b7823db2927a0eaaf0836181ce70e0329aded1be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10413c09641ef554b32d3bfa008f197fdaeba623a46634c22cb34b8eb8070dec
MD5 7800f5dcef612a360f013ae6890b202c
BLAKE2b-256 df252f422eb70fb86a1045b99ff7281347bcdb5282e5eff66acd9bfcbcf91161

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