Tool to handle mathematical operations using Variables and Mathematical Expressions.
Project description
PyMathCompute
PyMathCompute is a Python tool designed to handle mathematical variables, create and evaluate mathematical expressions, and perform various mathematical optimizations. This library is ideal for those working in applied mathematics, optimization, and related fields.
Features
- Variable: Defines mathematical variables with lower and upper bounds.
- MathExpression: Creates and evaluates mathematical expressions using defined variables.
- Mathematical Operations: Supports addition, subtraction, multiplication, and exponentiation of variables and expressions.
- Special mathematical operations: Also allow us to interact with special operators such as e, sin, cos and others.
Installation
You can install PyMathCompute using pip:
pip install pymath_compute
Basic Usage
Defining Variables and Mathematical Expressions
from pymath_compute import Variable
# Create a variable
x = Variable(name="x", lower_bound=0, upper_bound=10)
# Create a mathematical expression
expr = x + 2 * x - 5
# Evaluate the expression
values = {"x": 5}
result = expr.evaluate(values)
print(f"Result of the expression: {result}")
Mathematical Operations
PyMathCompute allows various mathematical operations with variables and expressions:
from pymath_compute import Variable
# Create variables
x = Variable(name="x", lower_bound=0, upper_bound=10)
y = Variable(name="y", lower_bound=0, upper_bound=10)
# Create expressions
expr1 = x + y
expr2 = x * 2 + y ** 2
# Evaluate expressions
values = {"x": 3, "y": 4}
result1 = expr1.evaluate(values)
result2 = expr2.evaluate(values)
print(f"Result of expr1: {result1}")
print(f"Result of expr2: {result2}")
Mathematical Operators
PyMathCompute also allow connection with operators, as using sin
, cos
, e
, and others. For this, we use the MathFunction
parameter
from numpy import np
from pymath_compute import Variable, MathFunction
# Create the variables
x = Variable(name="x", lower_bound=0, upper_bound=np.pi)
# Add a function to calculate the sin of x
sin = MathFunction(np.sin, x)
Usage
Here is a basic example of how to use the OptSolver
and its methods:
from pymath_compute import Variable
from pymath_compute.solvers.opt_solver import OptSolver
from pymath_compute.methods import OptMethods
# Define a simple objective function
def objective_function(variables: list[Variable]) -> float:
return sum(var.value for var in variables)
# Create some variables
variables = [Variable(name=f"Var_{i}", value=i) for i in range(10)]
# Initialize the solver
solver = OptSolver()
# Set the variables
solver.set_variables(variables)
# Set the objective function
solver.set_objective_function(objective_function)
# Configure the solver
solver.set_solver_config({
"solver_time": 30,
"solver_method": OptMethods.GRADIENT_DESCENT
})
# Solve the optimization problem
solver.solve()
# Check the status and get the results
print(f"Solver status: {solver.status}")
results = solver.vars_results()
for var in results:
print(f"{var.name}: {var.value}")
You can see more in the examples section of this package.
Future Plans
In future versions, we plan to add:
- Mathematical optimization methods like Newton's method.
- Molecular dynamics solvers.
- Computational derivatives and other advanced calculus tools.
Contributions
Contributions are welcome. If you have suggestions, bug reports, or improvements to propose, please open an issue or a pull request on our GitHub repository.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file pymath_compute-0.3.2.tar.gz
.
File metadata
- Download URL: pymath_compute-0.3.2.tar.gz
- Upload date:
- Size: 698.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7699c8805f39874c790cd45eb3f5bc1738d9329677f822a83d971b18086ed23 |
|
MD5 | 0efa4f476b10e6c273c606225b92882d |
|
BLAKE2b-256 | 16423ddf77cffe19667698b1aa2ea60ae11d326af9c146889ff5e4a4318fa243 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 270.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2cfff4bab0fd6588cdd262dff44ae3227617be82963b3bd5408f011d563794c |
|
MD5 | fe696e431f6a7827cdfcdeb082957cc4 |
|
BLAKE2b-256 | 0c04a1605b6f86e638d1997c120432ac9c330cf8d8346e6f3a957d0f99792065 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 314.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3296eb081f6e9cca674407232a88f9eb54c8b6867e04c6f6d514b12ed98bf62 |
|
MD5 | a71f939da61a821b38a366288e103757 |
|
BLAKE2b-256 | 4baf2c7dd76f0e82493e319c3757170422366fa5b9b2bd307b5298532ccf2805 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 305.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7292eeb160de4b10d1a4c9b3958834c5690e8cccb25475fdfc92bc60478e4ea4 |
|
MD5 | 8133e98a05f1fe8a512275f9ad729f40 |
|
BLAKE2b-256 | 421f59e7dd3577808e56b12b9470c01682b7435b9e68e7e6afd7e9187d4a7c5a |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 277.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93a79f8fd1835f69bd8d57e5d38cfc008a1aebd14a82f04b6ea96a5ace9bbed7 |
|
MD5 | 64f1d05af30debe418e15791c1fd654d |
|
BLAKE2b-256 | 7ad77cd2ad992552a4d70cf324e53510819c020e71a8165a46162203fa34b3f5 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 280.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 108d6681f4d3e06a2c8c93dfa7ae313d22b90675a711d5a8c7aa7d792e90f245 |
|
MD5 | 51106ed35a1451e8cffa28e145c6cbe0 |
|
BLAKE2b-256 | cf9ae839af8143586b7354571e211f32690f50ce180b468f66cf76e1860b56b1 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 280.4 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9988f40dbe8ad5aae3285549640008e4530d9ef0fd19390275502a29b3592e9c |
|
MD5 | c7b8f2dac1b5efa24838c95a96557534 |
|
BLAKE2b-256 | 2fae7f5a68c546f4c4788f975ef301ec8469baeb37918992c0409ae3846ac581 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 270.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04b8374f9c83e27a4dde69083bf59aaeb9c206583afbd1b1a80f0a3632f35aee |
|
MD5 | c18de870b627d1617da01e322ac07b4f |
|
BLAKE2b-256 | 56e660f88b7b3df841deccdd825550681b6d741e81ee6c7bcbda05b66f392219 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 314.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa2ccce73c0b7f50f515b9dfe222848f15b53cd0351cdfa28ce8cb8fae931220 |
|
MD5 | d4aa99c6c619dfa863fe8617574e8062 |
|
BLAKE2b-256 | 6de7a5c03deb371707ce20b208e3c109b5a21b1309ccc234e2382a57d394510a |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 305.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | baa35d1b55b9652cb0f73a47ce84b0af49875420d0239fcc9ccbadc4c5e6154a |
|
MD5 | 2be2880394415d353c72e7401a73f79b |
|
BLAKE2b-256 | cac5da4116861f52d345312966d8998c71cb763fe2d1afa4c67bed85b41f3735 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 277.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 923a80d06c33be48cc5513356a7ce1e7926670f8085828e7d9fccbdf136d0668 |
|
MD5 | 753d86b50c2f85a32d29756853ed9b77 |
|
BLAKE2b-256 | e526888577e27991f93a883f84446c504bc1d4b13bbb265e029afcbcfc91cd43 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 280.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fed435b77ddd0d3b306f094cd074ccf7b982f2202113d36914f0c4c7ace3b32 |
|
MD5 | bf102ceaf398a0c4b40d85c5739f6496 |
|
BLAKE2b-256 | 9b76ca3b98d6f260d6e54b01082645a0e6b79fd9587934f1ba3a6f6f166efaf9 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 280.4 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e61998dd2f10b17a7af487ae857d38778e30aa44a410171afb625ae6835c1b8 |
|
MD5 | d77f453d392acfdac10b90edfdfc50d2 |
|
BLAKE2b-256 | 0b63f1736615144af808f1eb4f4ebd71452896650469851f8c9da84118f0f2fe |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 314.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0510e3b5119fde79655a42fa7b5fa570b0bcef15485b9921311ffb18b0b6d78f |
|
MD5 | 5b5f6a2dfdde54222e24a1d4d5778b21 |
|
BLAKE2b-256 | b97a685e388bd8bd928a7b8147954be0b55a01b8a33f1ba0af548e72dbeb55ca |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 305.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e887484ca0c33e14fc7dddaf8418da9196c61de3eef4a1a1ae1194b58b8720cc |
|
MD5 | 36cff372e713d0a4b0c01902d4b5a11d |
|
BLAKE2b-256 | 08c7ffdc61b5ada7247ee47c6648c7d8187ee180e3f1aae39af8d57e245acbef |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 277.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d755513214b601cc89a5708b97950c1cb6a8a4f1ac7d977472bfeb7c7736936c |
|
MD5 | 95f54b6499cbc53336300698dc547961 |
|
BLAKE2b-256 | 49efc7e7ede12fbe1ba70d103688bec203660c472d35fa89f6188b3574656636 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f4f70d1b6d67ac823e8c7d82e044e42d91c782cdfcb9e6e8636f9283df93674 |
|
MD5 | 8d56e1c888824de64281329fd838c075 |
|
BLAKE2b-256 | 232b9b6bff7499e2b7868001c1a40ffa10188b6b540ca7428fe82ffd0b8f0014 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 318.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09078333396ea800279e59cd18d4850b8702d73d188ed3e9e5a14bbefd6df09d |
|
MD5 | 861107eb4d9d3e70a2d067dc0bcd6ca0 |
|
BLAKE2b-256 | 181b8051393df4f482b2b3ce52d91a5d9643e0248bb6a5db7c9318cfd03ce729 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 307.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7cf041f801e9901757c2d29c82d591bbe09f2ab0712501bb8000f209562ac7a |
|
MD5 | f90bf7f846390f369de8f310a819020a |
|
BLAKE2b-256 | d4cca445c5feb6ff18dac1196045b2b7129afced8d258ca40096105ac60be3cf |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 278.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7446b8c35d150842789b2e3d432757c2a240818ca62c70ca38795ba73cd8b52b |
|
MD5 | 2d132c9bb694bad20b044ff4caa72ea6 |
|
BLAKE2b-256 | ef7af836e00d39e9f5f87679505cbabb08b3413b59e74fb125d19a295fee1bd1 |
Provenance
File details
Details for the file pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 282.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f683b4465da1bb256f59b926103d48cdef465ff6dfd150157cc728ba373cdc01 |
|
MD5 | 978d7ae92fca76e26c7ae0a62924e0d7 |
|
BLAKE2b-256 | ad6068382234d9fe2b0893beb99f5c4cf0d520aaa45f0450a7b3789f25e73fb1 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-none-win_amd64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-none-win_amd64.whl
- Upload date:
- Size: 139.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da0636ab3f077396941fd4f1ae2c84c8f95bf086c1aaec166845f4501c064cf7 |
|
MD5 | 986773589e3ded6d7fbf9481a50447d2 |
|
BLAKE2b-256 | ef5c651b6f17653e42057c39e31c34fd091f02dfeb4071db81d9605ca11d4219 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-none-win32.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-none-win32.whl
- Upload date:
- Size: 133.9 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5dbd3f0c22b3ae44696dad2093aff95c84b31d67da6aa2f276eacf6adc369b9 |
|
MD5 | 6ea3bb77fd725cce8c97eb85a505a568 |
|
BLAKE2b-256 | 95b846fadf1f41b9beb21ab494b7fe0de117953e00671cbb636fc36de7d88a1b |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 269.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5759f32c5cb027940458146108956512f300d5106afdaafa865f6c32c66136db |
|
MD5 | c58250b4c29136396026ab6c30d80193 |
|
BLAKE2b-256 | 4ab16d4d9563089cfe11bf6404c62bda359124453fc9fa67ce9d5ea9fa09e7db |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 314.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0af3529c5021e38d040ed3a99d18c6f02e17888c78395000876ad8fe56f3b9b6 |
|
MD5 | 08204084e1d4c18c7ec33b1dbd483c23 |
|
BLAKE2b-256 | ad0203d68f576ba7e83abd7931d1ef4b3611b2a0a1b7703704bb18b5507e4055 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 304.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b37150f0ebcf5639aa625640dc5e35fc7014cd1a470198ad899713235236f43 |
|
MD5 | 3e3af3361956bc1b9299e1a64f5736bb |
|
BLAKE2b-256 | 17942e594a1572c73b85e58de736bd130ba886efde646ff9c52e7c75e76c2287 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 276.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b528d3c2dadfb38db65cab025ce7eefd9080dd81b768c0c798337be8865050e |
|
MD5 | ed32bd868f23c8c180e9f96782054b26 |
|
BLAKE2b-256 | 3bcf599a1470910dea5eeee07e06544c861dfea7a29233b15245f2f867878902 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9c18812113260e782410d10880564e1c6e0550e103d89d8e09b82eba0d77764 |
|
MD5 | 2ecff58dd502a4dba8b09a05bbf01fbd |
|
BLAKE2b-256 | edf5dd868d1378864ce32d95d3550792db8f2f02e9565a3a7ececbfa1b11fbbb |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 279.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f199c1c7672a1ff3f0ab801f09f0afcaa013b10a755a1f4c4c83d819b190e49e |
|
MD5 | 059f8b3e0a27cce1ddb5c501edc76a4d |
|
BLAKE2b-256 | 7c8b068d19f5151d4d26aae08d9b876be9b099824806020345ccf2eed726e0b8 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 238.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54416b86843b5ed427b9fbb25bc4815d97e26ce278322a7a33667043effa3215 |
|
MD5 | 5e7c01b9f3b9b22beea3a8f0b72994f0 |
|
BLAKE2b-256 | 47a3df7223ab2a0b167ddbcf72937589fccf042910fe167715d8473b061ffccc |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 240.0 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 606ef568fdb0a794f15727b434b175fddeb04afdb4cd530bc448745e23e4e8fa |
|
MD5 | 08ca661c25e754c8a8cc330041467464 |
|
BLAKE2b-256 | 1a061998ca07c0d7b26f62d05c3ad16ff7fb4c6fccf545096062809623af9a12 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-none-win_amd64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-none-win_amd64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7397cfba94e593dc1bb4fb4e87324a89eec4bf0da03dfc43d6e5d47bddc64de5 |
|
MD5 | 4f0f38755a6e127e116815ad888a50ae |
|
BLAKE2b-256 | c71eacd60921d1db75a7539da06ca7bdb481ab98ca10043cf6ffecc7726fb353 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-none-win32.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-none-win32.whl
- Upload date:
- Size: 134.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abddd07cf112a3792cec16e6898328aedc5ac5de66e6e30cdcd773218359b8d3 |
|
MD5 | 46acf37783a383920466566751cf1b3a |
|
BLAKE2b-256 | de0c55dfc382f01075192bb51c259733412b3afd56f9cd6f8d5541dec4b7e1d8 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 269.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b31276f0db9b3864c27ed2e1b3b3654d180fcadb4798164b32346371ecaa110a |
|
MD5 | 7310cfd40501c92bb329d34eff081fa1 |
|
BLAKE2b-256 | 68517ec8c5b5b7b0e2a5da28c877f74f1bac76e3f30af8cdaa842afb6e5911bb |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 314.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c50a45dc3ae97b5bb40750d534386d546df5373c566b16febe6c4da069f9f24 |
|
MD5 | 483fc7abc418b1612227a8af5eaf4519 |
|
BLAKE2b-256 | 03d6618d22ceef4f32381097a1b63471168ca5773b243dc5146bfe58854519a4 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 304.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0b15a19af8f83cf07de4ceef7bb4d78839622177ff0c9adbf76ba57ae0baecf |
|
MD5 | 8d6fd85e929dbc86d26974add1012b7b |
|
BLAKE2b-256 | 249ab88cbb05c92223e66777c040af42c9756272977edfddd2fd10b9a1ea6b07 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 275.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03bc4068263b126c60dad5300daff426e36d9f054a655e366acc1fd708c742ca |
|
MD5 | d170dd64349d9896a1bd1bcd0dc2e550 |
|
BLAKE2b-256 | 2c8ee8feb1d3cdf3cb602b85f1099e80e6d98f3bb517e3361d80692f194b0e48 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9345174544ed624b997c9a39147e9f4c3e56cda8529b1e86f915c846d7ebc949 |
|
MD5 | ca7f31bf1d286018a7275b69eecb447c |
|
BLAKE2b-256 | 6f1ee2fc647a5a1fd3fbbf169e1b1a37af4e0211640f5106ff0105cc89ae2c62 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 279.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76feeb4e439bbf662ec8f4243a41c2db2989ab90b8b0659f7bc8a82f64e4b0d2 |
|
MD5 | 3d000ecd4b25d2c52039538372dbfd01 |
|
BLAKE2b-256 | 894bd45036a03490a58c9b61e5015ced871eca22b6be7af4c4b8e3f9e68b1159 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 238.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8ef2761e63b793924b67ab196a19af9af4b4408ed464af8fd01b6a6ed51ed22 |
|
MD5 | 46e75f318eebef39b8c0b403489ee75d |
|
BLAKE2b-256 | e29080a52d1a80fb9a6a697e273a88d6fe63fecf7308371b9e9525e92df7ff76 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 240.0 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 980e3cbd89d3bb90d372ceb54a5414ca472d0014bb9873440c31bf3b6643a024 |
|
MD5 | f57c3c213a571f49e7681ca92c7946a3 |
|
BLAKE2b-256 | 79138125eec23ea0fe83a820df631abd91dcc9a8c92f28e68abaec83b12ab570 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-none-win_amd64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-none-win_amd64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9aecf65dc5a38867c4bd3c6306d0bddc63a8ea2aa85669b7397c6e398b26238 |
|
MD5 | e8e4f8b355fc6c8fa016c9453d9ba3b0 |
|
BLAKE2b-256 | 34b551b98727c0ea39b5346687c0fc8b45359b3abd606ff487800468340f66c8 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-none-win32.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-none-win32.whl
- Upload date:
- Size: 134.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f220d1c7005929923b71d819fbb5d9c169cdb17be9a172afce45524b8ada5fc8 |
|
MD5 | e8363224fad5c0c726de9dc57fd7dc72 |
|
BLAKE2b-256 | 64baeb181d017cf659aa8637e49a5753fa3dd7be5fb17818fcf3bcc0c03570a2 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 269.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3bc9505c396233ada6712bb60d33f4b694cd98c6c0a4b4c6d5d6e3fa998fa59 |
|
MD5 | 853a30bff3d36bbf3e59ee52ad26d2f6 |
|
BLAKE2b-256 | d39d94fe207415ccd0c2eedec5e9a8c7814ce02e51a13f0353a45af46821aa7f |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 314.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 156c30d6d0cd2e7965ae5204e230dcbe291d55223b27572b6e7897bc3275ec83 |
|
MD5 | 2ac26cac71a4c6b70eed0ebd7754a118 |
|
BLAKE2b-256 | 55ecc05f40f2b1da855483c63018dad7acbb576ea9c0ae24ff2b7e6f9225b25a |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 304.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a18d5841becba8b67d2f60e9a44e7380c2806dfdcd4d6229cf74c4b619df7eb |
|
MD5 | 5733ae1e12ee207cf658abf7dc394832 |
|
BLAKE2b-256 | 7f368d95ff9eef16592d8ccbbf19dcb3dc082ca60178008e5e1a8ca59f2fc132 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 275.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4dddbec13792d4c3cfd9c02d4259be39e781682342eee21d371034fd7f62b86f |
|
MD5 | 5a540c6cdfd3adc59597e2120f62768e |
|
BLAKE2b-256 | 418911c1ef73f7e541a4ae19134cb33b003a82c62b021e4672c9cfa6aa361d82 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9d3d6dff0b4f5020484a9c81ef240c1312451ed042ad9b11bd541aa1923619e |
|
MD5 | 42570c470fd78d0ba35b58b657340df3 |
|
BLAKE2b-256 | 06cd5348f8e3ada635967724a414ce1b8aa6ef7f6d1268a653c32027e2fb029f |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 279.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66dbaf6232654c537c58dcf21a929e722634f81378b7e807d9c22c33a39a20e1 |
|
MD5 | 01cefe56e5d557b61bb7b04ff48b6030 |
|
BLAKE2b-256 | b77dbcc8e28de96fdf119ef424da398b1a190c7703ca09bd8f23c69ce684db07 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 238.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19529f2e2334a0271bad4c180818e58b33c37699fcbbfc81a6d7e283f7fe4544 |
|
MD5 | 8c4f01001e05f39da8e680e3d2e606c6 |
|
BLAKE2b-256 | 92c9ef21bbd74a851e811510913e06ab7a6804e666b936ab8eee8ce7416ec2b3 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 240.0 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24d66a60b57908d7084375d6e8e7029c27aa0ed17818a940309909ec70fe39ff |
|
MD5 | 400a67458a7e6dd50e97b61c0e47a3f4 |
|
BLAKE2b-256 | 7de9190ff0aca5921bafa511b8cb9c834f9ac627e5ab8373eaf733e3da17dad8 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-none-win_amd64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-none-win_amd64.whl
- Upload date:
- Size: 138.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bdb8483809dac6935a0824ae9c42299fd1a54cbe48bb34d80be4dbc6ec7799d |
|
MD5 | 2744d43f2adb7da356962420f90a93b4 |
|
BLAKE2b-256 | 43a221e2b7660c90e3fecef6004655980ebaa417253cf32ca40ffa2a2649db5f |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-none-win32.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-none-win32.whl
- Upload date:
- Size: 134.0 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fa7f011d4f62b55367e48fe1fa15526cd72fa0964001fc1297a0943d0f3c081 |
|
MD5 | 7f4ebbd2108b73fee41a025667653ad1 |
|
BLAKE2b-256 | 6806c3108e9ada9b25aae8b13c4fdfe8c2a2fb965d2f18ecc1f7182cdee7a923 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 269.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1d6fe281c42673169780fe5dbc0b43f334f1a2e4f129c81f99fb49613593614 |
|
MD5 | ccc7d158aeaac2f74c1d94648fcd5f95 |
|
BLAKE2b-256 | 0f04a36b61a3f753184b5be19d258cabbf1d7e4307140c6c5eeb9f3bf4196c0b |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 315.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d0025ca64ecebbc6ff5ebd26c1959afb0636d43186592d84567fa0d0ad20f5e |
|
MD5 | fa407e2459e72e45be5157e08b7bae8c |
|
BLAKE2b-256 | 7fa64526e3c799807a4201f83d179dc17d1beac38e98670660f27762eaf86af7 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 304.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fc5273f7ce1f224a41ee6e1336d00f9c2be09451002adf1f0ae27241f8ca111 |
|
MD5 | 984ac8b5b9e124dc8ebd790527914840 |
|
BLAKE2b-256 | b6ecc6587118e473d491193671b0f5f2faec7989bed6d338826ae552d20fa318 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 275.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a509c0542dec07b0d17f6f8b0a1c75d4f8b214f505a2de37df57063bb344ecac |
|
MD5 | 89f2d6daf23657a769b092e91e576a78 |
|
BLAKE2b-256 | 2be3007b1ed0edd2ca73957f742d6e9de3bdf678850514aec8c49991c597db24 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8ad10fa6775096bf713108cf77e21236c2d38927bea44e4910bbe08f4b98774 |
|
MD5 | f32090e7a1a9b9f0927d25f7484ce8f1 |
|
BLAKE2b-256 | afe400b6efd4a8dc6d254040fbb19032ee3f71b6ee7e7cf72e45d3cf74b74317 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 279.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95f2e016950bb683973b40cd771c2c632db137d628a799887e273e5ade0b214b |
|
MD5 | 71927f5f3b0d21bbd116eb19d3742fec |
|
BLAKE2b-256 | 318ebc08d348fb504241f75bd328ef53e723a6304cd369a19f1eeb92a8a0cfbd |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 238.6 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 188ed32f4d3162690296959ea787c7d717a3874af8dd267656c9bfbda34ead48 |
|
MD5 | 43b1ff0d64fceddaa739cd7ceba4038d |
|
BLAKE2b-256 | 0463cfef9791878d7d39dee8ace583776a28f892ea01dcf1a906577e25ef14b8 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 239.9 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 078b5f535db11ec69fdea7b3fd7f82c40ee32fed39c8d21911d745b97892a7de |
|
MD5 | bd1413498165079a93ad3b204ffbe31e |
|
BLAKE2b-256 | 1e13bcf2beefd0a3fc2f384caa21ee1428d1f9b7f82eb08e42ca1c0d23fe9f5b |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp38-none-win_amd64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp38-none-win_amd64.whl
- Upload date:
- Size: 138.7 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 576b904a9407732069a8c7026fdceda035a4d2d4244a83e9974e002e4946308b |
|
MD5 | 27d08282c249632c7bc0552817c146e1 |
|
BLAKE2b-256 | cd299ef4a16cdd2582296006b1943f544392963a9ead64748f5fe9afb870d16e |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp38-none-win32.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp38-none-win32.whl
- Upload date:
- Size: 133.9 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c97ff2637bb934b939f0e0653e29d86cce3e9ff1389064ac50b4a07b14c1592c |
|
MD5 | 2e4a0c641ed1c1b01948e877cfd4b876 |
|
BLAKE2b-256 | 1b183f395d6ce4876cd0b6855a4cf2a623af96508f1c22878b038038dca39fd2 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 269.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18deebdead9b4b47c116bd6e1133917bfaf14ac072e268a39fcb3d0191644ade |
|
MD5 | 21a9d73a17243ed9d3af063b0cfa22a4 |
|
BLAKE2b-256 | 7fb51f725fb6827e67c574a423f8f6ac8df95bfa741c22b12bf2943dfc0046d5 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 314.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc96f7556bfcbc68d8177d3a5f818ddf44d5131f5ea9419c872f68ce94bb1ff2 |
|
MD5 | fb052855e93adae7fcd33790752c7c7a |
|
BLAKE2b-256 | 6af0c94eccc8230a43c85cfe0fa2e448b00b647beb136e20a0b6ae576cfb534a |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 304.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37d837118c49a18bddfcdd8168bbb09c7ece94d0219bcd6b1ede6bd71abb2748 |
|
MD5 | f17e32e668e7aaf97c1d737fafe33e76 |
|
BLAKE2b-256 | 76b066c3776ad7fb63cb764d6714ab059eb1f9458bde3ed976f32b308886f891 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 275.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e22c8f71dddb38f3b0ba1d5c35455febf6432ead94d4e877803a208b21f7a25 |
|
MD5 | a898eb29ffdfbaf4eaa1ab7ca2cd4a3b |
|
BLAKE2b-256 | 8e9a43a00752e0f068cbf7b1b1683b8376e6cc1f41dc4875e86ea78b2abe63af |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3251b2d2ee6dfadf64661ddbe5c1fe193fb7b716831875808d9dfa0dcfd36add |
|
MD5 | 7d4bf456329b6d6c47d37598c46459c6 |
|
BLAKE2b-256 | ec6a2b2eecd5edd56b030150a81b9096a57e65abb8af4f6c609d56e45cf88f90 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 279.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43091812def209ac1d2e21817a282198eb8f9ca3e9c7fe1e5143911afe3e0a53 |
|
MD5 | c68ff2792c7f07ae9f17164cfc872a86 |
|
BLAKE2b-256 | 0247e78784f9bb55e827fa446b3cac259bb55b41952655c778a0702c30512b62 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp37-none-win_amd64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp37-none-win_amd64.whl
- Upload date:
- Size: 138.7 kB
- Tags: CPython 3.7, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34a70144d1eb485621d8d70b8020191bcce64a1efcd7e672ce1a0231206262f1 |
|
MD5 | a15c66bede15226fbdec810561821896 |
|
BLAKE2b-256 | 6883d23ece732b8454d5aaf3f3feeb4ff19373758b399beff6f356d39df9953e |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp37-none-win32.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp37-none-win32.whl
- Upload date:
- Size: 133.8 kB
- Tags: CPython 3.7, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfe42330d300c03f42de35f811aa5032a35a71d9ef4b7af8a0342d80bf6f6a3b |
|
MD5 | aa7e14b6cbd15919c44d24225f8ff7b7 |
|
BLAKE2b-256 | 915609503541c82c6f3a433a96a200f661a6a442dce7690401eb851252d3bc6f |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 269.1 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 942a36882c8c61d06bf01a5d5d5b7e8806d3f50bd366edaed1891e3546022051 |
|
MD5 | 8d3f32d0c39c47d8e34186802e99aaf3 |
|
BLAKE2b-256 | e4e6478a56724db3238336e022158cdecedf5ca798824f56a5dab16ab21164e1 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 314.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a40d5a773ccfdfe58a42213de2b749b3f1647e06f4c38a7f6454b667061dbdfe |
|
MD5 | 4926ed009668e9ea97b4866cbf1f845a |
|
BLAKE2b-256 | e53587259ae5bfb52c69436a8cbcec861b21e8455bb379104fab1341f696dd2a |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 304.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c4ffc2979b7f515bcdcc4a9c8ae89b5d74d8078923ec2ce8f5999ba52e59fd7 |
|
MD5 | df15c106d395c22d5ba32ef9f5856a49 |
|
BLAKE2b-256 | f08f66931f2288d2763ae452a55ee2fa3b260b4f8ec54b695c12d3a9184491e6 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 275.8 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57a5b71e4fa087e7ac061a657a4ac8b0c07e27190e99c1b8366cb4df1f92a918 |
|
MD5 | d35ee82fa149cb47a8fbc0fc9ecc3d0b |
|
BLAKE2b-256 | 7b5f39df030574fa97adb90964658d62d0470de1a46ac4b1f048ae68ac90702d |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.2 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cb200b1c798c22a84abc788b1343b9e80cc87792dcf04181be6dcfa0da10589 |
|
MD5 | 09745162274bf8fccc854e15e65960f9 |
|
BLAKE2b-256 | fed0e73f0d550fbd9d35cd060900dbfe9a5585c1b5c990500661cd0a5d00ec85 |
Provenance
File details
Details for the file pymath_compute-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymath_compute-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 279.4 kB
- Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 690b4dad6058b8cbab83ec771ca4720e2e9f16d3f7846e6f138e5ef699f3e82d |
|
MD5 | f5992e14d9c98a231e959e5caa5e2f4a |
|
BLAKE2b-256 | 48df72495427d2116d80bfb0dc04dfaaaa2462eab1f8298cc4f5a897d6e9efe4 |