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.1.tar.gz (125.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.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (529.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

math_core-0.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (550.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

math_core-0.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (596.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

math_core-0.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (490.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

math_core-0.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

math_core-0.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

math_core-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (526.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

math_core-0.5.1-cp314-cp314t-musllinux_1_2_i686.whl (548.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

math_core-0.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl (595.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

math_core-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (488.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

math_core-0.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

math_core-0.5.1-cp314-cp314-win_amd64.whl (190.4 kB view details)

Uploaded CPython 3.14Windows x86-64

math_core-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (527.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

math_core-0.5.1-cp314-cp314-musllinux_1_2_i686.whl (549.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

math_core-0.5.1-cp314-cp314-musllinux_1_2_armv7l.whl (596.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

math_core-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (489.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

math_core-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

math_core-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (282.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

math_core-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (526.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

math_core-0.5.1-cp313-cp313t-musllinux_1_2_i686.whl (548.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

math_core-0.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl (595.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

math_core-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (488.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

math_core-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

math_core-0.5.1-cp313-cp313-win_amd64.whl (190.6 kB view details)

Uploaded CPython 3.13Windows x86-64

math_core-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (527.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

math_core-0.5.1-cp313-cp313-musllinux_1_2_i686.whl (549.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

math_core-0.5.1-cp313-cp313-musllinux_1_2_armv7l.whl (596.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

math_core-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (489.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

math_core-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

math_core-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (282.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

math_core-0.5.1-cp312-cp312-win_amd64.whl (190.9 kB view details)

Uploaded CPython 3.12Windows x86-64

math_core-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (528.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

math_core-0.5.1-cp312-cp312-musllinux_1_2_i686.whl (549.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

math_core-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl (596.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

math_core-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (489.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

math_core-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

math_core-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

math_core-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (282.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

math_core-0.5.1-cp311-cp311-win_amd64.whl (192.6 kB view details)

Uploaded CPython 3.11Windows x86-64

math_core-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (528.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

math_core-0.5.1-cp311-cp311-musllinux_1_2_i686.whl (549.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

math_core-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl (596.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

math_core-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (490.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

math_core-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

math_core-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

math_core-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (283.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

math_core-0.5.1-cp310-cp310-win_amd64.whl (192.6 kB view details)

Uploaded CPython 3.10Windows x86-64

math_core-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (528.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

math_core-0.5.1-cp310-cp310-musllinux_1_2_i686.whl (549.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

math_core-0.5.1-cp310-cp310-musllinux_1_2_armv7l.whl (596.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

math_core-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (490.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

math_core-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

math_core-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for math_core-0.5.1.tar.gz
Algorithm Hash digest
SHA256 4e37b7a8ec762dbc5c8fb6a28c5a90dd0ba8ed27474d058c6f09e122f99b47d7
MD5 90257aaeca105a20e3916a79357b3f09
BLAKE2b-256 b74d54c13242148694ac5c0ec9fabe7b0e237db68cd211a3c28fa3b06d8c2ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87b43a8213a1017bb78c7c1a7620d256d327811980952228d79613760d736713
MD5 80c15ff66cf68210fecf960c2f54624e
BLAKE2b-256 727e71db6ab85b84c6aab55f4814d6a9e5f3fd8c4ccecf87d6968d07f149cb72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce56429f0b9453a74c0c4e14a92712de253d824bf08fbaa3b4cc02c47e88d480
MD5 e2ebb2d477193dfefdf6bc887d2d130a
BLAKE2b-256 6b7f4fb64769f58b987eecdbff2abc19ce08610ed7fba960e09046601fae4ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ec3f9c9c8f88fc197f59cb0b0e9b222bd029fc71ab7601f4c262a95253508ea
MD5 04df975f5d9753851aff8d6a31502fa6
BLAKE2b-256 776ecd5fa12e1999a921095125cf659f86fccc60db88c5db048a124991922c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e30f305359018fafd919cc323ee879b523b2cde9c3e71701087d4a699a77a52e
MD5 bf13515237202a88f37eb3b18db5be1c
BLAKE2b-256 cc0f5227228347be4587e011e68a7fd51725021a358da82cb4642a0835e4dfa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9eb1e9951f342d28357421177857bd1155ea50daea601fdfb088455bbbfe784e
MD5 630b8600e80f6ae47b8175e7c20af008
BLAKE2b-256 6d1069e880304a2f6b4e8cebfa47cd463cdc9226bc427fce410ec6a74964860b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba5e6cb937d6e913d80c728ebd53dcfbba058206394d2ef86de6286f9f718187
MD5 17d1df212ee426b079cad5de0df81f29
BLAKE2b-256 2db476f2d211825284959a47e77251489f1e4aa01fc64e9fb7f679d9e0c426b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbc7ebdb03fbf58d7a86af26fc10c1b45567232fce98a21efe028c13a5623edf
MD5 7ae959cb8df3e09db7668c06cb7d60b0
BLAKE2b-256 61dcf8ffa205bd17e75f8f008ceac070377f59662e96b491852ecbee64be7d9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9abd690bf852b513c53a20675568b8d9e2abc389f9099cafeb3db4677efb5a56
MD5 ba4f8c782ff7f6a739a6d80b120a3e97
BLAKE2b-256 be2e1fe10f855bd8cd4d4898b8e305c772dde04bab4c0a7b51bcb082408d46ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91e5ac77399220e4930bda0833cad6203d2c2dfde60d4ea385b2d643b5a65011
MD5 73e5603074d7ebf2447917988f9ebcda
BLAKE2b-256 1976a691a996301414662f7371fb89591652c824541fb4926749b827c562a5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a5faaecf95b377ad68632d94b640c38dd6b9ca02fb3c4f5da656fb7553af59b
MD5 f60bf80f832c8fbde049568797bcfcf3
BLAKE2b-256 e5db1640aa753ef40257dcf2a73c690f548a6dacb8f06804f284b7500662d6e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0118de4fc44f49ea38d810eee34ddb892625a317132e85f5b4de2b2a8981f6b5
MD5 d7db15108bd8897e947f8b1e60129376
BLAKE2b-256 5fe86424bfca2b1887e233a64a25ed0b33b43a5c8ad3db221337a7bcaa226733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d90d694a0a34df41d01007e0405d4cc458befc9e914c8188361ce4aa4c316c5a
MD5 9a19e94717eba6aae8e4e36ac04fc21b
BLAKE2b-256 32cd52232560080648548cea8c183ea25bd991cbdc6d078826cca01f9cc50548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d2b2e7c2b138f4f7dae18da5a70258ffb3b0ebab49288a108ea12257ae136fb
MD5 f183d3a7c1d0926a6a3d537db3689f67
BLAKE2b-256 9d02a209c1948bedaa9da4b31c89dbba88f0c2d4e87c10c4b203d458dbf14b59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5942553cf66b1803740286324efbbbdbd6b37b4f7ec388a7d1082958e3887bc
MD5 a1814630accfc3a39bcf45aa52f41150
BLAKE2b-256 92933e6752dd3b57787b7f2ccd49a5e2fd05a1066563795acccec5af7b43b939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b65359c05ad203dc8c1ef15e2b3129f84e59a0720ea6e45581ba07cb8ab2eb1
MD5 70236e32d5a56ec5b65a32c54b4f9ffd
BLAKE2b-256 523770aada28b121988ca0500b7ac7ec74965cce9ef6d4421312881589503688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d6834e0f0c51471d19ac69284a5f6377831cc6b877ed6f85f41d07f53fef575
MD5 cb889c5ddc172370c53b7d2c5a88c7e5
BLAKE2b-256 dd9bd0be3ab3b20e6198ececffb8e2fcf468aa67b6cb4235825c0833e15c83aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ce67c0529c68c0830dc3d8c662b5fa3c502147b9ca99df538d325b478f625f4
MD5 a73bf3e6e1bd4bc83b7b8d2f2fc1e1ff
BLAKE2b-256 fe55a572d3afebb493f2cc32c9603c1f27a630ab5ed25df83b12baf5a184fc48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ff2558ea0a784e1012a15a570266650d5f46947ec2d1ecd0c2de014fb6c002e
MD5 1ae1cab1b73889773859bc1d96b085ca
BLAKE2b-256 5b8e9af93c9fbbd2de8e63292009c17ad8a7e84622e84dd4e1c5c2da28dd0d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e8a33faa3b7e4fd7b50340691c898b5b16f02c2b9838971a839380645a2b101
MD5 0270a24841114030954759ef1e98c599
BLAKE2b-256 a5f8a6c46ce14059f31b7a93bb62604f09c9920903af068aaf3a305954412cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06c52824cacd0d80a2b625274df243175f30e24156ccc2313bcbb051e9e31bfe
MD5 45503439bcc5b16969b7e678e984d270
BLAKE2b-256 754228950c576d97c943c3ebe39377a0e53f13ad3c09efc2ec38b10910ecc5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d7909c3b5c728c5f96b80eb31b4ded45f9a0ae6af24996279ac7936278dfb11
MD5 d555ebb7b13f7066d809b895ac5f130b
BLAKE2b-256 d2545e8b8e7a86399a3ce4c529723f02b5ee3138ffe48b6f74052ee1c0d5ceb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 341affa38d155cf8e03ef1e0866f6017a501782eb91f6ae124b918f4f86310b2
MD5 113c24c75b482988db35f2b8408c8032
BLAKE2b-256 c05ec8519a2e6200fce11bae7909f5e1bc16d4c2cab3195ddad67f7262bde7a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92b767aeaf0b76a1281e4a7a865ff89caf1b35852a102b89fc770090ac500691
MD5 95845ce023382c452e87aa28446b84c3
BLAKE2b-256 ae8f6aeb7cd6436d9377fc9be0a14a8cd27825541168222941a3e7b8b2f6c8be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3124a0150c3beadf3fd2559dc46582b5a511a6d02b14365cfe76b24f95b90985
MD5 f3cd172bab6ce3706381c3137c135d77
BLAKE2b-256 0a788740837cbdfb683ae62bfd08ebf19611970949f7c00118330e8a1de31012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a871556774f2acb4bfe7de9df95742479b8c381320abf7ef70cbb80152e57519
MD5 d882f145b93c3ee725b70e507ae1897e
BLAKE2b-256 d23bdc44c87c506d85be485f41c139979291ec34f3407a602f831fdfbfb28684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59f787556c56b0c8e67028d3e9750e3001dc14083ebaa8021f7e3428f152ed53
MD5 2277c7520a1e7da72fba1e7172f818c0
BLAKE2b-256 2e65d30b2c13657d3997ec2ae08e656cb5cee60571e79d2fb1935e23d15bd86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6f9ac164d113231e512b5a4669af014d5c5cdfc3660ff815d1e441e104aad80
MD5 365004ed62d4aef0b57c6c8aaafb59f5
BLAKE2b-256 a454c0e779cca28827f27786c3bfd317f8f92d0b28119e6cf66acd0a153edbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e773c9d38e0317352449f4bdb98ab0dcf056a5e94312923288ce78444b7b0d3
MD5 b3b036b922a8725805f9299cb16cf8e7
BLAKE2b-256 74781478e2cff2ffa78c2301c64ad67b2da43150668c9e084020ad9579e00443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49021705e3ffc0d56664c4187d28e628024b786ca11c42af645baf71ce268c84
MD5 b447b6f09235df1ad451ae5c1854724a
BLAKE2b-256 3ef079f3c2d0485fd01ce10788cf5fa49142d8caf2dc952c70c08f7fae5c27dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 234a21a07ec06dd75981fea3acbb4be49d8d9a7abb75fc004303b9cca3aa5867
MD5 eb37a310aafd0c30a78c9586f5b4f0bb
BLAKE2b-256 9456df0b577d4d11b79355e6476435eb4a5abf9aa0ddfa3e13a032eefb18d54c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4f80ca620a56aa1a428ef7f55ce93ca3d33ebe26e583ea756bd1da954884008
MD5 ca4ea6a7cd6b8eec3b88c007096baf32
BLAKE2b-256 09a8f9030b4283219378f001a2ba3b41bfe046de0dcfd5a1ec26e5ea1dacc910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9d23644c6747b80c3bb6393346501566b6e9b6f16a00bd74db26267f155869d
MD5 f0de8ae071b800a12791388a6a938d66
BLAKE2b-256 64c3b99015ad1288cbab47fa166fc4530a15c85206ed708cdc57e01749185925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e0575be97b9d6b963d3afa25af4d44275cf7e05fb45e9dc3cb334f38e6e57e21
MD5 587cea79d562496fc91cbd9b2791a89c
BLAKE2b-256 ada292c8d0b403ac5a7787bfd6adebc6450428fa2c1b2dd4ab7fdff572b1202e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3eaf59e36ba485ffef53d394596a176be58b9aecfa595534639589785127d470
MD5 a1e55488ebd164fdbf4d26cd3e37dae0
BLAKE2b-256 fd6d8db8e420852d69e3bf244d6d1cf80aefc2c277ef133bf32ae69406041a53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f6ae6aa72e64bc892e6db57d9ce42cc9b52725f711328353dfa3e8582fab2eb
MD5 e1225f99fad60b23de83695fe63dd47d
BLAKE2b-256 a32bfb48b1688882c938ef0a8eb070f7c4d31b45c63628da92a0e802536b180f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6035d38e7ff8823f3b12e892bf18160722697df98634c9db72f5ee2f13f6f794
MD5 c978b365fd9e1b46eb61bed43305352e
BLAKE2b-256 25ceedf65dcdf384b6004e1012e2254b9f915334128f5e8b27a26bfe3a61331f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a118c0ca689a5c611cf7fb0784ce9a9a717b59ffb7c7cdc9ce87cbc224d6b7c4
MD5 514126b73ba86ef615aa2b3f1b708dfe
BLAKE2b-256 c8cdfa93dae76802e7960181118a1f573a68790eb62ccb9e9f42db9d4c72f076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce1e2ab4ae10453c023ac7868ce3828cd40ff14c4b6006312c538d137dca9a09
MD5 64e4e4995b358b31309021356458bc16
BLAKE2b-256 79dc4233bb226593b53d029a0ac82ee058dc54ab30165eefb76d11b28c4aec7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9a4a68fd62d4a865e9688aac69418581608ced6cb67d1541d74976c88e4baaf
MD5 5e8827ade95e857cccf62610b1d87556
BLAKE2b-256 f08b203ab3eaf668b33ba1bcf553b95e649cb649b335860b20d91dd1e4229a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7f46d3089c1f4f3e03997ea965aa00f1bdf848a108e9da7da937b9221358e02
MD5 b953f3a442e340acbc5fe81115cee999
BLAKE2b-256 bc6ae5cd1529ad33710412194c095430926e5ad7c9c55e1bf43ff754809295f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 74b4ecb2f09027796f2c049d4090b0ada00dc36db0efbbcf3e7a576c31398dbf
MD5 cd541c426e4a07c81c95abab510a2495
BLAKE2b-256 4c0e188f5295dfcd3f32a8d37a03f8ccef515a7b5806930705a4bdf8cbd62a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84f3233b95ccff94ad5c30a9e5a0208a6f733d6aa41a887daab5df707dd7e2d8
MD5 be7e3e22510b6d2c753c66bd568a2c02
BLAKE2b-256 4d7ef0979054eabcf58f7fde05d1e91a394c393ee960fd464408eb496e995b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3060a3ef9cbd9275876979a8525a1c73bfe40542b6a084442f54dfee9eb39a9d
MD5 03ce50f81bbdcccec13c732f59b4b4bd
BLAKE2b-256 7c1d7f6158ca371eb9fe459eb3dbd0f13ae725a3ee0059fedd84c230d4ec8e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d134dde0b5fa7692cf7a04210e71222f054f2c64de8230dac5dc6604f9d7ede
MD5 a7e3f20068d7be12e3406807e944864c
BLAKE2b-256 a72d1caa16a9ea48e9f068a3ceba982fb665655007cdcc3aad6e8da67335f6d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d35a3a98abe3a0c51936d06c51cd0521fb4792a2985cc7c2d4ca144741b0a340
MD5 433547264718773818bcc19f310c4190
BLAKE2b-256 3b2286b6fee276c0e4dd3bb4c6047af05ab624cf360a3444ee52b91904d24199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0b8535132e25014711e90c2d76d0b65c0f7b0297a5bf05da08701bfa2e63050
MD5 e4fae145a3853568fc61e664f5085fc1
BLAKE2b-256 15b464443d5502147151142048b01be262ee28983980fc8235b5d79e8cb1458c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5745f9172cb2c018f5a3bc34eb88e361cd735416d3361534b877a5822f9902e9
MD5 96c752fdd5006886bb6b33c145c55aa8
BLAKE2b-256 522ed29acf45cd3a6fd0e792ec2e3fa9306717ba05e849f2fd6bf9f9e6c61e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ea0ce226a508bb5ed09033f2be9ab0822681953b196a32d1b3a8e7ef83a5db7
MD5 5115282239ce0c2fa76b3eaa7bee3955
BLAKE2b-256 51dcaff30e4a345670bef0f60133fbc35a59a802e126b71e342ee24ec8ff7217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 76e495e31dec1583cc708006b318da6fad4dfa03283feb8ad1adf7a2f5c75c1b
MD5 81519d3a8d1bc30a844538f07b898d76
BLAKE2b-256 a42ae811130a4766c9a11b693ea65b4a2fbfb7e02ccc4b0d5fed44d2c5a43422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d0ea35732633856dfc0e0fdc2da82acf0ad3cd214a05bbebe7343d776e0051c
MD5 82daf1bf2cfb5358551572118cdedc58
BLAKE2b-256 3f9a2d691a99ebb9104967e861bb74a205c5386e40c1ad7b317ed48cf2c70909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e942087164fc6ef8d2f69354f3baac2639a8e66e1dcb22548c8b674c2d157828
MD5 6b9a2ae7597174a87e60eda1bb3c6cff
BLAKE2b-256 8ff362d1a291a16f7157d840cf4d40f46b590e118118d33494984060df506299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 defe046060aa8c42330a1a253d9590dda5ea70c8f66a706d3582d5f5beabde2c
MD5 7e545281c64aaf4d15596f93c56fbbfc
BLAKE2b-256 a03d95b80057038c4ba84b4ab68ce1776eec920cf9aa309a5298b61b469b7ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 426bd2a952851f9f23467878c54e31acd2abf3ca6670c7de6f9dbe93b3632f8f
MD5 3381cc53547545aead2b6fe0ecbaa890
BLAKE2b-256 192a111cf4c6079635522f11265f7dcefad1cb8bb0378d0ff1c23a8f2efa5283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1336726f5102f8254cdc269e7be574ed936b1095b3efe1dbc921978d6ef17df
MD5 6ec21f2ff1eb9c1ca52577893b494967
BLAKE2b-256 75d11f2041bc8d546b09ba39808eab0e796397dfed8e3c894a0aac483ac6c22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 387f1190f5c4364bdc7b1491113524b037fb2942d5c778ae89fa08d31feb96ba
MD5 a7caad847c0dcea83cae440b59f6eb6c
BLAKE2b-256 d23f966b01d286970a2358a048a21444dec873df8dd2b91245b5ac3e025bdb15

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