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.3.0.tar.gz (124.1 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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (525.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

math_core-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (547.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

math_core-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (587.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

math_core-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (486.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

math_core-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

math_core-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

math_core-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (523.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

math_core-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (545.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

math_core-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (586.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

math_core-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (484.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

math_core-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

math_core-0.3.0-cp314-cp314-win_amd64.whl (187.0 kB view details)

Uploaded CPython 3.14Windows x86-64

math_core-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (524.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

math_core-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (546.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

math_core-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (485.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

math_core-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

math_core-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

math_core-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (279.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

math_core-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (523.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

math_core-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (586.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

math_core-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (484.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

math_core-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

math_core-0.3.0-cp313-cp313-win_amd64.whl (187.1 kB view details)

Uploaded CPython 3.13Windows x86-64

math_core-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (524.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

math_core-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (546.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

math_core-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (587.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

math_core-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (485.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

math_core-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

math_core-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

math_core-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (279.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

math_core-0.3.0-cp312-cp312-win_amd64.whl (187.4 kB view details)

Uploaded CPython 3.12Windows x86-64

math_core-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (524.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

math_core-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (547.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

math_core-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (587.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

math_core-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (485.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

math_core-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

math_core-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

math_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (279.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

math_core-0.3.0-cp311-cp311-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.11Windows x86-64

math_core-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (524.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

math_core-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (587.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

math_core-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (486.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

math_core-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

math_core-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

math_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (279.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

math_core-0.3.0-cp310-cp310-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.10Windows x86-64

math_core-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (524.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

math_core-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (587.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

math_core-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (486.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

math_core-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

math_core-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for math_core-0.3.0.tar.gz
Algorithm Hash digest
SHA256 23de6a2e24bdc58b18c2244028baf14cfa0adb8cd66ecbb5c920d58852089d47
MD5 32912332e99549775437fc4155a3fe82
BLAKE2b-256 985571810ccf91ff37db19ccf3aec95d290ba115b525953c58c548a4a6da9028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16267f7b82b3d897059342db5787be4882a40478cbd0932da10ab5f2b809b3d7
MD5 dba846524fbf719ebf2cb7a0b5235310
BLAKE2b-256 9ab30b9921a113c0255d07541043673de3410867398e8ccce21d3e3f119d8a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0d9735a518c214f27c943daae884220d3e42c93d1cc86078a4b9dc11983d116
MD5 b6fa9ce84234f8757f5f6a42e02651fe
BLAKE2b-256 69eed7e6ae2089ba1587048b9616742afaa1fb07a64afca55cd08284f15f848b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5fdf23d66ec89b4c0b206c3743b042f726edbfd6217935f98ce43650e952947
MD5 31b05f30aa0125a81a1b4d14056a46ba
BLAKE2b-256 d74738a4a913f727a9662497d18026146472a028c457419bc73081550d100bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b34a642eb6e805ff7c5831ff448a8b52d8850e2dceaeb99e477558c5e9dee1e
MD5 aefea19ff08f81e8f873c9a15defd105
BLAKE2b-256 cb4ab96d9a7097d2b456325c40dfb78f263f07cce1afa7056f47b9c8484f6d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3c5d6c7e4812aa5d15260ddc6cc03c983358f0b66bebcf9c1626c0a46a5b71d
MD5 db0df0a13b7e768393d1d0a0d52283f3
BLAKE2b-256 6aa91b6e2976892c4c2f502a508a4975c971e5e0630e6dae35201adb99236e76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13b248e452a87d3a003861173dd908b732da2b70fd049bed956b71d98fd38f85
MD5 e69737a366922e82192634cd3f97cd7a
BLAKE2b-256 a5cc5cde43abfd8eb27f41797d7c1650b55f522d9fe312d2db3bc64c2b5f6a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c32b3e6e8bec473ae626ce040956d8e291e145499b8266f1ec657c88873501c
MD5 fa79eeaae464555c2740b93d21fbbf16
BLAKE2b-256 437fc60d9ac8fe1eb93896260640f57a33133943f6e277e60cc94493e24be022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7564d0bfb0a38af116e906511b04f2a5c2d2118b9d2563e256481cc8ebf065f4
MD5 9d9e56a949c24793a3273bcac4d403d2
BLAKE2b-256 6445106784bb0e1fc392b6fbee7c2d2daae7665e6357cf9c3ed8691043e3d3b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4be64e617ec5e0fdb177fb79609bb82847592e3fa27da8619ad90a690957d5fd
MD5 a6f412d641d74c6737fdd4e11f805be4
BLAKE2b-256 101268b7c5ce71ac68e42b369fca0e497a5827d613881e0da22f72b84cb2e053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97c3b0bacd60ae9c42a15d12cd3eeacbfe4f18dec2a97c8456517577d9685c6e
MD5 9d977751d9fa97ca8d24216ed3d2bc9c
BLAKE2b-256 4a33b0d355afe33a1fa947b6968dbf18516e351bab78bbac7fe1cc2ae5d2617d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06b220e8318ef6004d7f9b5b37ece2eeb585add50d0f53da746965b0240055db
MD5 f07f1caa82766f445cb750221c9ec526
BLAKE2b-256 67cc933515f7143291c605a92e377a8e1005b04f4648d8018d86c38f97d32a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b9c635554183540e5bcf5f99d00079f49c4b8fd9fc9adcfa3b1531a7017c5c3
MD5 705d7252581e3b3c14b42b578567d567
BLAKE2b-256 ce2f440d8ac1f09950d458c02ea9bbe6150dcde0e680c187cc7c89000d64c1d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3e3bbb5316d197c44e5ccf5da28b62c4c19dd04cac1f778f542dfa9a904aa96
MD5 21e558d1580a212c6c0842bd7807fdd8
BLAKE2b-256 a48205cd9bf1fa917ab06a8c0a047a1ba1b3cce16493ea9fe0a2053e3880835d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfebe3e0d128e0882bf93808637b8932c5ca724eaa3844a020aeb54c095e851b
MD5 26abdc09c38752604bfe9b53cb544e5d
BLAKE2b-256 0781a5a2b1627b81820d61dec6bf7598db1bad5c8165cbe8a5a3dff224c86102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1242acbbf8e600f0842c3536cf30ea769e836f77d8a3998e43bf3b5b95bfc0a7
MD5 2dbb08c3f8ca820146a25f3b65971f25
BLAKE2b-256 85d01a1a2c23869f3eae16d55939bca9bf136721f1773f62c2228e8dc9b3d541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcad5ed0dc6fbf342314444dc308ddd50ce1a7f52dba18e1d04a0647d7ea8c30
MD5 d27cd8a851381ca5930ab33d22ec87ef
BLAKE2b-256 992cb3c7c2832352255cce7603af20c95f60e8b08ef53c663b5a35df35529443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66c04949c2edc15e152dadc881fa47101b79a10238bf8d815389fda2c888685f
MD5 6b5089b7dfd4acdf38676666074a469e
BLAKE2b-256 8e5da24748bb876594603a971ef566e5bd10cd4fd2d69ae92c28f3f2a599ea7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48e65896f331effa9e4d1c2a895585dbe9bd79c0a98e8c85c0946c677cf0098f
MD5 221c1a235400dd62d776bcf297c0d5a7
BLAKE2b-256 d75fcf929f6252f8b05720e2a5ae8b02625de4fb8b4d0a7255d827ef1c6cf53e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9690533ae3749ebde7b7521c3dfbbee2fb58409d9d5faa8206d88b8a4b7ec963
MD5 b42b932377170cc12b47c147d5e2ea9e
BLAKE2b-256 fed1b7477f5e1c170556e4d7fbc979f39d8b7cfc79214e20e4bb0359f34ccf43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04a35ece338ec9ce74f4dc5b83335d642debe248ce63580b2dc3ad105ef6ede0
MD5 ff29386180a88822c976fcad4bc8270d
BLAKE2b-256 dee99f6d25d7fb1ca5110422f7ec1f4bfd4970970258b74454f7af0c57c680fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89140097ca2c1ce4531ccefb0f0883547a200313ecaf5d1a13524406ef4b4807
MD5 d418233cbb472e5ff75eafb7e0a458cc
BLAKE2b-256 4ad0c12149f1ee5de28dc0ab493a3f7f1277259c6a14982d86e8025de9a0f691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15831b9d70c99cfc4cf10a2601299645644d54642dc6064e92bf902089bb37dd
MD5 35fe3a25365b9d1bc968365b3e2fbe78
BLAKE2b-256 6a6c07d84760cc397a65474d8db7ce7e484c0a90ee1614b78820b219e70b0ad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c8152b4456189bd582a5fa1ab3d03f8adc65e49365d9f37f80631d80037d38e
MD5 2f26e61e30d11f05d37686a419c35277
BLAKE2b-256 1bd8b83c56f50a3c21c257204f119a454df25a849b68d9840682423d3241e16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28c23baac9d1f96ac4a86d3ba59d15ea9cace8f215fab84401e9708acab16667
MD5 84e9ec9e6060b74bfc27c8e9af1f760a
BLAKE2b-256 8d71354a64aeb94263a42c3a1fb0f381ac405b3e44cd34deb920a506150cc32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e84e534f4f152780a7077d44ac0ff8aba5ea7068ce3d279bf241f34405697ee
MD5 5ac9cd8571e2e920bd316dc75369907c
BLAKE2b-256 388c0d6a57d083b99b499543f3b08b048177d76adb512f04bffc86e01629ba4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7179a48aa376ab0d88807a355bc6c8d3752f5643b3e7a1c50a55c8ab4d4c744
MD5 6348f871fa8751697932f3d8d78dac44
BLAKE2b-256 16faec36e719967c59d46c2281e5003af0ec48d752591850923d626a517704db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a21b1dbe1feb76ac4e348a55be49b33a70c833fbf4362aab161b0f57826a93c
MD5 dd5ef5c245c8be606f35fe6c25311176
BLAKE2b-256 40c8701806549e000ee9fb93500cf76cb01f5d1e7568a4c306d057e602cecbf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 561767272a40c68e42de771e536b47e80dd690c0477850ed496d0300453ef0fe
MD5 b82cfcd64a4adb7b9ecc65532cfb9100
BLAKE2b-256 d2d376aa392cf73628ef56bba9ce9b209686295cef1b669f0514300a6dc944a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6a4c480d2c84d2dac310ee8710fb3b92e6b3a72c9783c9f303bd6e62411b1e3
MD5 0ed260f877c5168307a8f3abb4e6b2b1
BLAKE2b-256 b77fe2ef6dae1706477512114cebe6b8218dc69d34275d67b0e155d9ce3b2b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b41c0d75023041a5ee5c780c61c731b06b1f1feb2bfcd50d9ab137ae8ffb105
MD5 1e143d38e0b848e0809c3834ce70db8b
BLAKE2b-256 53d6839d1b10a4947130675e038169d848005443dd7ff1b4d84b8236c8ae25d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fbaafb3eb91fe08a1ff4fde6eb311080987b02369fb0f1689a83a36ef18c4a2
MD5 550bf811d36666b35427e4e84edcea23
BLAKE2b-256 2768f807ae0b501c4b0989e016a60c7d6687612efc1bbab577b364908f2394c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f1d329ef63e04e1a42d97663b1bb75c12dc4a0a0081ccdc757da9dae3352dd9
MD5 316fe2e38c3a83c329250c59e2ea28b8
BLAKE2b-256 27b04b19261add079866bf02bd1f90a4244429294f5ffc6044c7f8e4e67f3ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c45b917849d33d3010f28449309d9736d60d03f18d5e3b2b4e34723059797c9c
MD5 6e81414b769d83c8b9426dc825ad520a
BLAKE2b-256 6f3913b9bee41f29cb2d62745d19a587ed2f74affd49d313ec9a4df68df2d2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 163a22a19b6734cd5d0cfd9613a7e32b7bcfccd883068989876e07de8bf6b2ed
MD5 bafdfd69e9e8ff3f8a4a23f00383c189
BLAKE2b-256 c25c5f9b9e5988ae5eda2e8116d6a10cda65ac3a234e3b1db2054a09772c9e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff0b5b374cf7ca0b4e4013f94016d1be1386f3746bf1d5a9326d1edc909f6235
MD5 5cbd6ab3ff6ee193aca5913eaa0f3d7e
BLAKE2b-256 fb0a33cf47e3b8ac6e7d4defabd753f3ed137709aa61c269849f02fb9a70045a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8d5c308fa70116133b3a68d694ce35dc8262144f3598a8bc8d8796fb52082d3
MD5 dedb7483fecfacd53aef7cbbb282fbdc
BLAKE2b-256 fb4367b570ef602bf52d2b4907122e2a74763ade03fae7c66840d43252371cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb9a84a4c70c1e2d4c68d9f813f32908e68e2a7b338871f867292c7195f3a811
MD5 249ecd0450f3d79d917dc30803f69574
BLAKE2b-256 08a804f07320e2e0617570d4540f47114b9067d84a2d79e422a046a253e7533a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d42a954de20516df371e3e0626baf2756f40db512ad45fb8edce9924164d1a8
MD5 e34ea8f7903c2e178166fbdd2d9cb7dc
BLAKE2b-256 224aacd87987f117899d4b9141c8d3739fdf5885b9aa60fe2cfa5e33f94fc917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6c6ba87f6da7ffa1724f8bf9950dff4ed73fa7fff0f75d29ae861208bce7527
MD5 5c071660219007c7f3c6a2b3c3add858
BLAKE2b-256 c2a002d292c00a255ca84e4320412d5bf2c6c337c20bd92e190d7959d0392ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f570d9a1ffddb66e32ba548dfbf45b576b133e7d11b42b051dc1ba4fbff629a8
MD5 51c61d74a7341beb820764eea49b195d
BLAKE2b-256 50883929dd5a8743a0929b7584c0d95e60958309283377f13605105ff337e3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5dcc083b6bfb77cf147e04d407829c6fd06906c216b26f456477bfa13d2c2d6c
MD5 cea7888b1f98a7dd185518c74b74d742
BLAKE2b-256 d2cfd5a42d0ebed1573d43cf8fbcb31d15baa1ce247fe1a5a8bcfc746163c0d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7eef1617bd919469d6469a7a4bc329d79e2385fdfa70becb8c372cca5ca27b6c
MD5 d5bf35b867ee9269bee33e1f8af3060f
BLAKE2b-256 dea3581a20e055a1da247c3ea1104a1f1ff917b1242439fee9e9083b98ee1017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14d2604a38e040914791c4e2c58bc93e056b15f126f02560eec1d12f568e14f8
MD5 e2baf332afdf8114fca41083e8259dda
BLAKE2b-256 99ecd0e4a75eee07631eb5b154fc451e76a42609531fb0ddd6c3bc9951c6a062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a46ae14ccbf8ebce5595eca9b97ac80f3c0046379b1d8ec6c0c09aa6cadb31ca
MD5 9cbc6c788524ddf3ecfcf8633b2bcafa
BLAKE2b-256 b62b88da7ef06dd54849bf36a9c353d07eb1f5fec24270aba7c31fb9cfe8b61b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f07014167f833ef345d89850c60c698639282e2e5bb59ec5fff7de5d44e4f48
MD5 d0deb8a03f511b5182c76436c742b341
BLAKE2b-256 9ce91fdd218edfa097437c6ee8956fa67f9900310ea4ac29c37e7f6f9b7ef054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 216cfaef195b35872b85691a3a2965b508b2ad5bda1fc0589edf3f638329975a
MD5 9b60611769d93863369da262de2cb500
BLAKE2b-256 f434d1a891134df9be20a88661212df45c49999eaabd435eda6b3ab69ff1e606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ae6d2397bd0181cb7be74398362c89dfd189a59f1c7d42073454dbce1e823ea
MD5 985ac4fd5ac4fb1f0798bfec70638fb4
BLAKE2b-256 2c0e1dae19c3ebf299f251550085ed8d005e13d4798d94838130c0f4e7c7fc6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 692670335b92c7b4114e3fd41d9c112b20743dd5c0c715e27fab03fbaf4500cd
MD5 2f82639bfc45134018f5e4186be6b3b7
BLAKE2b-256 ee2fc4e61cbc9ff1f84226d3cc93262acb8c52966f7df17d85a764dbab910706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7a15e17403dc69610a5fc1aa2c265616bfb2174054cf85230eb0f8ae177e9762
MD5 a747a5414a8d326f29b7c5cbea185fe9
BLAKE2b-256 0ff383fec9ad4b8d7851411caa05ff60c44371736a72c06965551893d45292b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29dd4dd4e4a72c019448cec3862183e1e7ab496ec26e524ca0958cb7ed3a5435
MD5 5a5ec8fbce0630a1c18a3c794d904eaf
BLAKE2b-256 dbc8fa96931736277be48f6ee85ac4b4f79146c2a229eaa36a4f77fa48b9383e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e83da8f66ab544e6273c2b6f7dfa97b95879feb4c3b86cb68431ecc0257b5f3
MD5 71b8defb12a0b0f6aceb4a5766994382
BLAKE2b-256 a9a5de514714a08123e04826872165858b933331f18a3a61f14e4e7ab600c93a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 369df2dbba9ca3b7876ccb8ee568115c669189886e82357b7f7bbfa7454a4ed2
MD5 9608cb96401a1a77a2cdacde145bda63
BLAKE2b-256 32e3be937dbf549aa169979feef3abb9c918fcfb01710e5414719b5fdbe03289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8585964a5f47e00880a7eae4580ca582a62c4006c1523402e93b69851808017e
MD5 fa6605c011de1c5d53f81c4ed82a884b
BLAKE2b-256 39c0034fe75014d426540f844260e0887a8aa39b3b9b9bf6b2f481ced9cb9a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc1c21c52ac5315f9ea2c590f2e56f448e8641efc8439ed07901c2d4e8912725
MD5 96e4e7b05cb0d050fa2b84910349e056
BLAKE2b-256 d0879d1456094c70e45d10fa9ffb57851b28777302ce8ea992383716b743b78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for math_core-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d297054cf443fb5e45df3acf57119471e3a505e8eb7e010823b369610363386a
MD5 becdf228ef7a29167306685ac6961234
BLAKE2b-256 76b251e689dd9356329850caf95117edadbc13a5809de492b08613d02a865f91

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