# PyMathCompute
<p align="center">
<img src="https://github.com/ricardoleal20/pymath_compute/blob/main/assets/banner.png" width="70%" height="70%" />
</p>
[![Actions Status](https://github.com/ricardoleal20/pymath_compute/workflows/Continuous%20Integration%20Workflow%20👾/badge.svg)](https://github.com/ricardoleal20/pymath_compute/actions)
[![PyPI](https://img.shields.io/pypi/v/pymath_compute.svg?style=flat-square)](https://pypi.org/project/pymath_compute/)
**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:
```bash
pip install pymath_compute
```
## Basic Usage
### Defining Variables and Mathematical Expressions
```python
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:
```python
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
```python
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:
```python
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](https://github.com/ricardoleal20/pymath_compute/tree/main/pymath_compute/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](https://github.com/ricardoleal20/pymath_compute/blob/main/LICENSE) file for details.
Raw data
{
"_id": null,
"home_page": "https://pymath.ricardoleal20.dev",
"name": "pymath-compute",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "scientific_computing, applied_math, optimization",
"author": "ricardoleal20 <rick.leal420@gmail.com>",
"author_email": "ricardoleal20 <rick.leal420@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/16/42/3ddf77cffe19667698b1aa2ea60ae11d326af9c146889ff5e4a4318fa243/pymath_compute-0.3.2.tar.gz",
"platform": null,
"description": "# PyMathCompute\n\n<p align=\"center\">\n <img src=\"https://github.com/ricardoleal20/pymath_compute/blob/main/assets/banner.png\" width=\"70%\" height=\"70%\" />\n</p>\n\n[![Actions Status](https://github.com/ricardoleal20/pymath_compute/workflows/Continuous%20Integration%20Workflow%20\ud83d\udc7e/badge.svg)](https://github.com/ricardoleal20/pymath_compute/actions)\n[![PyPI](https://img.shields.io/pypi/v/pymath_compute.svg?style=flat-square)](https://pypi.org/project/pymath_compute/)\n\n**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.\n\n## Features\n\n- **Variable**: Defines mathematical variables with lower and upper bounds.\n- **MathExpression**: Creates and evaluates mathematical expressions using defined variables.\n- **Mathematical Operations**: Supports addition, subtraction, multiplication, and exponentiation of variables and expressions.\n- **Special mathematical operations**: Also allow us to interact with special operators such as e, sin, cos and others.\n\n## Installation\n\nYou can install PyMathCompute using pip:\n\n```bash\npip install pymath_compute\n```\n\n## Basic Usage\n\n### Defining Variables and Mathematical Expressions\n\n```python\nfrom pymath_compute import Variable\n\n# Create a variable\nx = Variable(name=\"x\", lower_bound=0, upper_bound=10)\n\n# Create a mathematical expression\nexpr = x + 2 * x - 5\n\n# Evaluate the expression\nvalues = {\"x\": 5}\nresult = expr.evaluate(values)\nprint(f\"Result of the expression: {result}\")\n```\n\n### Mathematical Operations\n\nPyMathCompute allows various mathematical operations with variables and expressions:\n\n```python\nfrom pymath_compute import Variable\n\n# Create variables\nx = Variable(name=\"x\", lower_bound=0, upper_bound=10)\ny = Variable(name=\"y\", lower_bound=0, upper_bound=10)\n\n# Create expressions\nexpr1 = x + y\nexpr2 = x * 2 + y ** 2\n\n# Evaluate expressions\nvalues = {\"x\": 3, \"y\": 4}\nresult1 = expr1.evaluate(values)\nresult2 = expr2.evaluate(values)\n\nprint(f\"Result of expr1: {result1}\")\nprint(f\"Result of expr2: {result2}\")\n```\n\n### Mathematical Operators\n\nPyMathCompute also allow connection with operators, as using `sin`, `cos`, `e`, and others. For this, we use the `MathFunction` parameter\n\n```python\nfrom numpy import np\nfrom pymath_compute import Variable, MathFunction\n\n# Create the variables\nx = Variable(name=\"x\", lower_bound=0, upper_bound=np.pi)\n\n# Add a function to calculate the sin of x\nsin = MathFunction(np.sin, x)\n```\n\n## Usage\n\nHere is a basic example of how to use the `OptSolver` and its methods:\n\n```python\nfrom pymath_compute import Variable\nfrom pymath_compute.solvers.opt_solver import OptSolver\nfrom pymath_compute.methods import OptMethods\n\n# Define a simple objective function\ndef objective_function(variables: list[Variable]) -> float:\n return sum(var.value for var in variables)\n\n# Create some variables\nvariables = [Variable(name=f\"Var_{i}\", value=i) for i in range(10)]\n\n# Initialize the solver\nsolver = OptSolver()\n\n# Set the variables\nsolver.set_variables(variables)\n\n# Set the objective function\nsolver.set_objective_function(objective_function)\n\n# Configure the solver\nsolver.set_solver_config({\n \"solver_time\": 30,\n \"solver_method\": OptMethods.GRADIENT_DESCENT\n})\n\n# Solve the optimization problem\nsolver.solve()\n\n# Check the status and get the results\nprint(f\"Solver status: {solver.status}\")\nresults = solver.vars_results()\nfor var in results:\n print(f\"{var.name}: {var.value}\")\n```\n\nYou can see more in the [examples](https://github.com/ricardoleal20/pymath_compute/tree/main/pymath_compute/examples) section of this package.\n\n## Future Plans\n\nIn future versions, we plan to add:\n\n- Mathematical optimization methods like Newton's method.\n- Molecular dynamics solvers.\n- Computational derivatives and other advanced calculus tools.\n\n## Contributions\n\nContributions are welcome. If you have suggestions, bug reports, or improvements to propose, please open an issue or a pull request on our GitHub repository.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](https://github.com/ricardoleal20/pymath_compute/blob/main/LICENSE) file for details.\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Tool to handle mathematical operations using Variables and Mathematical Expressions.",
"version": "0.3.2",
"project_urls": {
"Homepage": "https://pymath.ricardoleal20.dev",
"Source Code": "https://github.com/ricardoleal20/pymath_compute"
},
"split_keywords": [
"scientific_computing",
" applied_math",
" optimization"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "7de9190ff0aca5921bafa511b8cb9c834f9ac627e5ab8373eaf733e3da17dad8",
"md5": "400a67458a7e6dd50e97b61c0e47a3f4",
"sha256": "24d66a60b57908d7084375d6e8e7029c27aa0ed17818a940309909ec70fe39ff"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "400a67458a7e6dd50e97b61c0e47a3f4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 239973,
"upload_time": "2024-07-19T03:45:39",
"upload_time_iso_8601": "2024-07-19T03:45:39.387965Z",
"url": "https://files.pythonhosted.org/packages/7d/e9/190ff0aca5921bafa511b8cb9c834f9ac627e5ab8373eaf733e3da17dad8/pymath_compute-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92c9ef21bbd74a851e811510913e06ab7a6804e666b936ab8eee8ce7416ec2b3",
"md5": "8c4f01001e05f39da8e680e3d2e606c6",
"sha256": "19529f2e2334a0271bad4c180818e58b33c37699fcbbfc81a6d7e283f7fe4544"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8c4f01001e05f39da8e680e3d2e606c6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 238645,
"upload_time": "2024-07-19T03:45:41",
"upload_time_iso_8601": "2024-07-19T03:45:41.172439Z",
"url": "https://files.pythonhosted.org/packages/92/c9/ef21bbd74a851e811510913e06ab7a6804e666b936ab8eee8ce7416ec2b3/pymath_compute-0.3.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06cd5348f8e3ada635967724a414ce1b8aa6ef7f6d1268a653c32027e2fb029f",
"md5": "42570c470fd78d0ba35b58b657340df3",
"sha256": "a9d3d6dff0b4f5020484a9c81ef240c1312451ed042ad9b11bd541aa1923619e"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "42570c470fd78d0ba35b58b657340df3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 279411,
"upload_time": "2024-07-19T03:45:42",
"upload_time_iso_8601": "2024-07-19T03:45:42.691329Z",
"url": "https://files.pythonhosted.org/packages/06/cd/5348f8e3ada635967724a414ce1b8aa6ef7f6d1268a653c32027e2fb029f/pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "418911c1ef73f7e541a4ae19134cb33b003a82c62b021e4672c9cfa6aa361d82",
"md5": "5a540c6cdfd3adc59597e2120f62768e",
"sha256": "4dddbec13792d4c3cfd9c02d4259be39e781682342eee21d371034fd7f62b86f"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "5a540c6cdfd3adc59597e2120f62768e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 275867,
"upload_time": "2024-07-19T03:45:44",
"upload_time_iso_8601": "2024-07-19T03:45:44.349996Z",
"url": "https://files.pythonhosted.org/packages/41/89/11c1ef73f7e541a4ae19134cb33b003a82c62b021e4672c9cfa6aa361d82/pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f368d95ff9eef16592d8ccbbf19dcb3dc082ca60178008e5e1a8ca59f2fc132",
"md5": "5733ae1e12ee207cf658abf7dc394832",
"sha256": "1a18d5841becba8b67d2f60e9a44e7380c2806dfdcd4d6229cf74c4b619df7eb"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5733ae1e12ee207cf658abf7dc394832",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 304772,
"upload_time": "2024-07-19T03:45:45",
"upload_time_iso_8601": "2024-07-19T03:45:45.862365Z",
"url": "https://files.pythonhosted.org/packages/7f/36/8d95ff9eef16592d8ccbbf19dcb3dc082ca60178008e5e1a8ca59f2fc132/pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55ecc05f40f2b1da855483c63018dad7acbb576ea9c0ae24ff2b7e6f9225b25a",
"md5": "2ac26cac71a4c6b70eed0ebd7754a118",
"sha256": "156c30d6d0cd2e7965ae5204e230dcbe291d55223b27572b6e7897bc3275ec83"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2ac26cac71a4c6b70eed0ebd7754a118",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 314875,
"upload_time": "2024-07-19T03:45:47",
"upload_time_iso_8601": "2024-07-19T03:45:47.461695Z",
"url": "https://files.pythonhosted.org/packages/55/ec/c05f40f2b1da855483c63018dad7acbb576ea9c0ae24ff2b7e6f9225b25a/pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d39d94fe207415ccd0c2eedec5e9a8c7814ce02e51a13f0353a45af46821aa7f",
"md5": "853a30bff3d36bbf3e59ee52ad26d2f6",
"sha256": "e3bc9505c396233ada6712bb60d33f4b694cd98c6c0a4b4c6d5d6e3fa998fa59"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "853a30bff3d36bbf3e59ee52ad26d2f6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 269184,
"upload_time": "2024-07-19T03:45:48",
"upload_time_iso_8601": "2024-07-19T03:45:48.856290Z",
"url": "https://files.pythonhosted.org/packages/d3/9d/94fe207415ccd0c2eedec5e9a8c7814ce02e51a13f0353a45af46821aa7f/pymath_compute-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b77dbcc8e28de96fdf119ef424da398b1a190c7703ca09bd8f23c69ce684db07",
"md5": "01cefe56e5d557b61bb7b04ff48b6030",
"sha256": "66dbaf6232654c537c58dcf21a929e722634f81378b7e807d9c22c33a39a20e1"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "01cefe56e5d557b61bb7b04ff48b6030",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 279590,
"upload_time": "2024-07-19T03:45:50",
"upload_time_iso_8601": "2024-07-19T03:45:50.346961Z",
"url": "https://files.pythonhosted.org/packages/b7/7d/bcc8e28de96fdf119ef424da398b1a190c7703ca09bd8f23c69ce684db07/pymath_compute-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64baeb181d017cf659aa8637e49a5753fa3dd7be5fb17818fcf3bcc0c03570a2",
"md5": "e8363224fad5c0c726de9dc57fd7dc72",
"sha256": "f220d1c7005929923b71d819fbb5d9c169cdb17be9a172afce45524b8ada5fc8"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "e8363224fad5c0c726de9dc57fd7dc72",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 134033,
"upload_time": "2024-07-19T03:45:51",
"upload_time_iso_8601": "2024-07-19T03:45:51.458159Z",
"url": "https://files.pythonhosted.org/packages/64/ba/eb181d017cf659aa8637e49a5753fa3dd7be5fb17818fcf3bcc0c03570a2/pymath_compute-0.3.2-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34b551b98727c0ea39b5346687c0fc8b45359b3abd606ff487800468340f66c8",
"md5": "e8e4f8b355fc6c8fa016c9453d9ba3b0",
"sha256": "a9aecf65dc5a38867c4bd3c6306d0bddc63a8ea2aa85669b7397c6e398b26238"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "e8e4f8b355fc6c8fa016c9453d9ba3b0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 138955,
"upload_time": "2024-07-19T03:45:52",
"upload_time_iso_8601": "2024-07-19T03:45:52.911006Z",
"url": "https://files.pythonhosted.org/packages/34/b5/51b98727c0ea39b5346687c0fc8b45359b3abd606ff487800468340f66c8/pymath_compute-0.3.2-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79138125eec23ea0fe83a820df631abd91dcc9a8c92f28e68abaec83b12ab570",
"md5": "f57c3c213a571f49e7681ca92c7946a3",
"sha256": "980e3cbd89d3bb90d372ceb54a5414ca472d0014bb9873440c31bf3b6643a024"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f57c3c213a571f49e7681ca92c7946a3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 239975,
"upload_time": "2024-07-19T03:45:54",
"upload_time_iso_8601": "2024-07-19T03:45:54.536626Z",
"url": "https://files.pythonhosted.org/packages/79/13/8125eec23ea0fe83a820df631abd91dcc9a8c92f28e68abaec83b12ab570/pymath_compute-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e29080a52d1a80fb9a6a697e273a88d6fe63fecf7308371b9e9525e92df7ff76",
"md5": "46e75f318eebef39b8c0b403489ee75d",
"sha256": "c8ef2761e63b793924b67ab196a19af9af4b4408ed464af8fd01b6a6ed51ed22"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "46e75f318eebef39b8c0b403489ee75d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 238645,
"upload_time": "2024-07-19T03:45:55",
"upload_time_iso_8601": "2024-07-19T03:45:55.951268Z",
"url": "https://files.pythonhosted.org/packages/e2/90/80a52d1a80fb9a6a697e273a88d6fe63fecf7308371b9e9525e92df7ff76/pymath_compute-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f1ee2fc647a5a1fd3fbbf169e1b1a37af4e0211640f5106ff0105cc89ae2c62",
"md5": "ca7f31bf1d286018a7275b69eecb447c",
"sha256": "9345174544ed624b997c9a39147e9f4c3e56cda8529b1e86f915c846d7ebc949"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ca7f31bf1d286018a7275b69eecb447c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 279410,
"upload_time": "2024-07-19T03:45:57",
"upload_time_iso_8601": "2024-07-19T03:45:57.407199Z",
"url": "https://files.pythonhosted.org/packages/6f/1e/e2fc647a5a1fd3fbbf169e1b1a37af4e0211640f5106ff0105cc89ae2c62/pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c8ee8feb1d3cdf3cb602b85f1099e80e6d98f3bb517e3361d80692f194b0e48",
"md5": "d170dd64349d9896a1bd1bcd0dc2e550",
"sha256": "03bc4068263b126c60dad5300daff426e36d9f054a655e366acc1fd708c742ca"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d170dd64349d9896a1bd1bcd0dc2e550",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 275868,
"upload_time": "2024-07-19T03:45:58",
"upload_time_iso_8601": "2024-07-19T03:45:58.612841Z",
"url": "https://files.pythonhosted.org/packages/2c/8e/e8feb1d3cdf3cb602b85f1099e80e6d98f3bb517e3361d80692f194b0e48/pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "249ab88cbb05c92223e66777c040af42c9756272977edfddd2fd10b9a1ea6b07",
"md5": "8d6fd85e929dbc86d26974add1012b7b",
"sha256": "a0b15a19af8f83cf07de4ceef7bb4d78839622177ff0c9adbf76ba57ae0baecf"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8d6fd85e929dbc86d26974add1012b7b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 304772,
"upload_time": "2024-07-19T03:45:59",
"upload_time_iso_8601": "2024-07-19T03:45:59.776442Z",
"url": "https://files.pythonhosted.org/packages/24/9a/b88cbb05c92223e66777c040af42c9756272977edfddd2fd10b9a1ea6b07/pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03d6618d22ceef4f32381097a1b63471168ca5773b243dc5146bfe58854519a4",
"md5": "483fc7abc418b1612227a8af5eaf4519",
"sha256": "1c50a45dc3ae97b5bb40750d534386d546df5373c566b16febe6c4da069f9f24"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "483fc7abc418b1612227a8af5eaf4519",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 314875,
"upload_time": "2024-07-19T03:46:01",
"upload_time_iso_8601": "2024-07-19T03:46:01.642699Z",
"url": "https://files.pythonhosted.org/packages/03/d6/618d22ceef4f32381097a1b63471168ca5773b243dc5146bfe58854519a4/pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68517ec8c5b5b7b0e2a5da28c877f74f1bac76e3f30af8cdaa842afb6e5911bb",
"md5": "7310cfd40501c92bb329d34eff081fa1",
"sha256": "b31276f0db9b3864c27ed2e1b3b3654d180fcadb4798164b32346371ecaa110a"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7310cfd40501c92bb329d34eff081fa1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 269184,
"upload_time": "2024-07-19T03:46:03",
"upload_time_iso_8601": "2024-07-19T03:46:03.453555Z",
"url": "https://files.pythonhosted.org/packages/68/51/7ec8c5b5b7b0e2a5da28c877f74f1bac76e3f30af8cdaa842afb6e5911bb/pymath_compute-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "894bd45036a03490a58c9b61e5015ced871eca22b6be7af4c4b8e3f9e68b1159",
"md5": "3d000ecd4b25d2c52039538372dbfd01",
"sha256": "76feeb4e439bbf662ec8f4243a41c2db2989ab90b8b0659f7bc8a82f64e4b0d2"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3d000ecd4b25d2c52039538372dbfd01",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 279591,
"upload_time": "2024-07-19T03:46:04",
"upload_time_iso_8601": "2024-07-19T03:46:04.507599Z",
"url": "https://files.pythonhosted.org/packages/89/4b/d45036a03490a58c9b61e5015ced871eca22b6be7af4c4b8e3f9e68b1159/pymath_compute-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de0c55dfc382f01075192bb51c259733412b3afd56f9cd6f8d5541dec4b7e1d8",
"md5": "46acf37783a383920466566751cf1b3a",
"sha256": "abddd07cf112a3792cec16e6898328aedc5ac5de66e6e30cdcd773218359b8d3"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "46acf37783a383920466566751cf1b3a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 134031,
"upload_time": "2024-07-19T03:46:06",
"upload_time_iso_8601": "2024-07-19T03:46:06.139957Z",
"url": "https://files.pythonhosted.org/packages/de/0c/55dfc382f01075192bb51c259733412b3afd56f9cd6f8d5541dec4b7e1d8/pymath_compute-0.3.2-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c71eacd60921d1db75a7539da06ca7bdb481ab98ca10043cf6ffecc7726fb353",
"md5": "4f0f38755a6e127e116815ad888a50ae",
"sha256": "7397cfba94e593dc1bb4fb4e87324a89eec4bf0da03dfc43d6e5d47bddc64de5"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "4f0f38755a6e127e116815ad888a50ae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 138960,
"upload_time": "2024-07-19T03:46:07",
"upload_time_iso_8601": "2024-07-19T03:46:07.684704Z",
"url": "https://files.pythonhosted.org/packages/c7/1e/acd60921d1db75a7539da06ca7bdb481ab98ca10043cf6ffecc7726fb353/pymath_compute-0.3.2-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a061998ca07c0d7b26f62d05c3ad16ff7fb4c6fccf545096062809623af9a12",
"md5": "08ca661c25e754c8a8cc330041467464",
"sha256": "606ef568fdb0a794f15727b434b175fddeb04afdb4cd530bc448745e23e4e8fa"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "08ca661c25e754c8a8cc330041467464",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 240045,
"upload_time": "2024-07-19T03:46:09",
"upload_time_iso_8601": "2024-07-19T03:46:09.083004Z",
"url": "https://files.pythonhosted.org/packages/1a/06/1998ca07c0d7b26f62d05c3ad16ff7fb4c6fccf545096062809623af9a12/pymath_compute-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47a3df7223ab2a0b167ddbcf72937589fccf042910fe167715d8473b061ffccc",
"md5": "5e7c01b9f3b9b22beea3a8f0b72994f0",
"sha256": "54416b86843b5ed427b9fbb25bc4815d97e26ce278322a7a33667043effa3215"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5e7c01b9f3b9b22beea3a8f0b72994f0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 238616,
"upload_time": "2024-07-19T03:46:10",
"upload_time_iso_8601": "2024-07-19T03:46:10.397826Z",
"url": "https://files.pythonhosted.org/packages/47/a3/df7223ab2a0b167ddbcf72937589fccf042910fe167715d8473b061ffccc/pymath_compute-0.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "edf5dd868d1378864ce32d95d3550792db8f2f02e9565a3a7ececbfa1b11fbbb",
"md5": "2ecff58dd502a4dba8b09a05bbf01fbd",
"sha256": "a9c18812113260e782410d10880564e1c6e0550e103d89d8e09b82eba0d77764"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2ecff58dd502a4dba8b09a05bbf01fbd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 279374,
"upload_time": "2024-07-19T03:46:11",
"upload_time_iso_8601": "2024-07-19T03:46:11.522652Z",
"url": "https://files.pythonhosted.org/packages/ed/f5/dd868d1378864ce32d95d3550792db8f2f02e9565a3a7ececbfa1b11fbbb/pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3bcf599a1470910dea5eeee07e06544c861dfea7a29233b15245f2f867878902",
"md5": "ed32bd868f23c8c180e9f96782054b26",
"sha256": "5b528d3c2dadfb38db65cab025ce7eefd9080dd81b768c0c798337be8865050e"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ed32bd868f23c8c180e9f96782054b26",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 275967,
"upload_time": "2024-07-19T03:46:12",
"upload_time_iso_8601": "2024-07-19T03:46:12.677865Z",
"url": "https://files.pythonhosted.org/packages/3b/cf/599a1470910dea5eeee07e06544c861dfea7a29233b15245f2f867878902/pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17942e594a1572c73b85e58de736bd130ba886efde646ff9c52e7c75e76c2287",
"md5": "3e3af3361956bc1b9299e1a64f5736bb",
"sha256": "6b37150f0ebcf5639aa625640dc5e35fc7014cd1a470198ad899713235236f43"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3e3af3361956bc1b9299e1a64f5736bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 304792,
"upload_time": "2024-07-19T03:46:14",
"upload_time_iso_8601": "2024-07-19T03:46:14.277838Z",
"url": "https://files.pythonhosted.org/packages/17/94/2e594a1572c73b85e58de736bd130ba886efde646ff9c52e7c75e76c2287/pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad0203d68f576ba7e83abd7931d1ef4b3611b2a0a1b7703704bb18b5507e4055",
"md5": "08204084e1d4c18c7ec33b1dbd483c23",
"sha256": "0af3529c5021e38d040ed3a99d18c6f02e17888c78395000876ad8fe56f3b9b6"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "08204084e1d4c18c7ec33b1dbd483c23",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 314875,
"upload_time": "2024-07-19T03:46:15",
"upload_time_iso_8601": "2024-07-19T03:46:15.723221Z",
"url": "https://files.pythonhosted.org/packages/ad/02/03d68f576ba7e83abd7931d1ef4b3611b2a0a1b7703704bb18b5507e4055/pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ab16d4d9563089cfe11bf6404c62bda359124453fc9fa67ce9d5ea9fa09e7db",
"md5": "c58250b4c29136396026ab6c30d80193",
"sha256": "5759f32c5cb027940458146108956512f300d5106afdaafa865f6c32c66136db"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c58250b4c29136396026ab6c30d80193",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 269306,
"upload_time": "2024-07-19T03:46:16",
"upload_time_iso_8601": "2024-07-19T03:46:16.957498Z",
"url": "https://files.pythonhosted.org/packages/4a/b1/6d4d9563089cfe11bf6404c62bda359124453fc9fa67ce9d5ea9fa09e7db/pymath_compute-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c8b068d19f5151d4d26aae08d9b876be9b099824806020345ccf2eed726e0b8",
"md5": "059f8b3e0a27cce1ddb5c501edc76a4d",
"sha256": "f199c1c7672a1ff3f0ab801f09f0afcaa013b10a755a1f4c4c83d819b190e49e"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "059f8b3e0a27cce1ddb5c501edc76a4d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 279615,
"upload_time": "2024-07-19T03:46:18",
"upload_time_iso_8601": "2024-07-19T03:46:18.423232Z",
"url": "https://files.pythonhosted.org/packages/7c/8b/068d19f5151d4d26aae08d9b876be9b099824806020345ccf2eed726e0b8/pymath_compute-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95b846fadf1f41b9beb21ab494b7fe0de117953e00671cbb636fc36de7d88a1b",
"md5": "6ea3bb77fd725cce8c97eb85a505a568",
"sha256": "b5dbd3f0c22b3ae44696dad2093aff95c84b31d67da6aa2f276eacf6adc369b9"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "6ea3bb77fd725cce8c97eb85a505a568",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 133910,
"upload_time": "2024-07-19T03:46:20",
"upload_time_iso_8601": "2024-07-19T03:46:20.035816Z",
"url": "https://files.pythonhosted.org/packages/95/b8/46fadf1f41b9beb21ab494b7fe0de117953e00671cbb636fc36de7d88a1b/pymath_compute-0.3.2-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef5c651b6f17653e42057c39e31c34fd091f02dfeb4071db81d9605ca11d4219",
"md5": "986773589e3ded6d7fbf9481a50447d2",
"sha256": "da0636ab3f077396941fd4f1ae2c84c8f95bf086c1aaec166845f4501c064cf7"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "986773589e3ded6d7fbf9481a50447d2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 139084,
"upload_time": "2024-07-19T03:46:21",
"upload_time_iso_8601": "2024-07-19T03:46:21.299817Z",
"url": "https://files.pythonhosted.org/packages/ef/5c/651b6f17653e42057c39e31c34fd091f02dfeb4071db81d9605ca11d4219/pymath_compute-0.3.2-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fed0e73f0d550fbd9d35cd060900dbfe9a5585c1b5c990500661cd0a5d00ec85",
"md5": "09745162274bf8fccc854e15e65960f9",
"sha256": "7cb200b1c798c22a84abc788b1343b9e80cc87792dcf04181be6dcfa0da10589"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "09745162274bf8fccc854e15e65960f9",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 279225,
"upload_time": "2024-07-19T03:46:24",
"upload_time_iso_8601": "2024-07-19T03:46:24.653011Z",
"url": "https://files.pythonhosted.org/packages/fe/d0/e73f0d550fbd9d35cd060900dbfe9a5585c1b5c990500661cd0a5d00ec85/pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7b5f39df030574fa97adb90964658d62d0470de1a46ac4b1f048ae68ac90702d",
"md5": "d35ee82fa149cb47a8fbc0fc9ecc3d0b",
"sha256": "57a5b71e4fa087e7ac061a657a4ac8b0c07e27190e99c1b8366cb4df1f92a918"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d35ee82fa149cb47a8fbc0fc9ecc3d0b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 275751,
"upload_time": "2024-07-19T03:46:25",
"upload_time_iso_8601": "2024-07-19T03:46:25.826641Z",
"url": "https://files.pythonhosted.org/packages/7b/5f/39df030574fa97adb90964658d62d0470de1a46ac4b1f048ae68ac90702d/pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f08f66931f2288d2763ae452a55ee2fa3b260b4f8ec54b695c12d3a9184491e6",
"md5": "df15c106d395c22d5ba32ef9f5856a49",
"sha256": "8c4ffc2979b7f515bcdcc4a9c8ae89b5d74d8078923ec2ce8f5999ba52e59fd7"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "df15c106d395c22d5ba32ef9f5856a49",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 304478,
"upload_time": "2024-07-19T03:46:27",
"upload_time_iso_8601": "2024-07-19T03:46:27.179416Z",
"url": "https://files.pythonhosted.org/packages/f0/8f/66931f2288d2763ae452a55ee2fa3b260b4f8ec54b695c12d3a9184491e6/pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e53587259ae5bfb52c69436a8cbcec861b21e8455bb379104fab1341f696dd2a",
"md5": "4926ed009668e9ea97b4866cbf1f845a",
"sha256": "a40d5a773ccfdfe58a42213de2b749b3f1647e06f4c38a7f6454b667061dbdfe"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4926ed009668e9ea97b4866cbf1f845a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 314887,
"upload_time": "2024-07-19T03:46:28",
"upload_time_iso_8601": "2024-07-19T03:46:28.325767Z",
"url": "https://files.pythonhosted.org/packages/e5/35/87259ae5bfb52c69436a8cbcec861b21e8455bb379104fab1341f696dd2a/pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4e6478a56724db3238336e022158cdecedf5ca798824f56a5dab16ab21164e1",
"md5": "8d3f32d0c39c47d8e34186802e99aaf3",
"sha256": "942a36882c8c61d06bf01a5d5d5b7e8806d3f50bd366edaed1891e3546022051"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8d3f32d0c39c47d8e34186802e99aaf3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 269080,
"upload_time": "2024-07-19T03:46:29",
"upload_time_iso_8601": "2024-07-19T03:46:29.587814Z",
"url": "https://files.pythonhosted.org/packages/e4/e6/478a56724db3238336e022158cdecedf5ca798824f56a5dab16ab21164e1/pymath_compute-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48df72495427d2116d80bfb0dc04dfaaaa2462eab1f8298cc4f5a897d6e9efe4",
"md5": "f5992e14d9c98a231e959e5caa5e2f4a",
"sha256": "690b4dad6058b8cbab83ec771ca4720e2e9f16d3f7846e6f138e5ef699f3e82d"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f5992e14d9c98a231e959e5caa5e2f4a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 279421,
"upload_time": "2024-07-19T03:46:30",
"upload_time_iso_8601": "2024-07-19T03:46:30.789519Z",
"url": "https://files.pythonhosted.org/packages/48/df/72495427d2116d80bfb0dc04dfaaaa2462eab1f8298cc4f5a897d6e9efe4/pymath_compute-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "915609503541c82c6f3a433a96a200f661a6a442dce7690401eb851252d3bc6f",
"md5": "aa7e14b6cbd15919c44d24225f8ff7b7",
"sha256": "dfe42330d300c03f42de35f811aa5032a35a71d9ef4b7af8a0342d80bf6f6a3b"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp37-none-win32.whl",
"has_sig": false,
"md5_digest": "aa7e14b6cbd15919c44d24225f8ff7b7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 133838,
"upload_time": "2024-07-19T03:46:32",
"upload_time_iso_8601": "2024-07-19T03:46:32.047344Z",
"url": "https://files.pythonhosted.org/packages/91/56/09503541c82c6f3a433a96a200f661a6a442dce7690401eb851252d3bc6f/pymath_compute-0.3.2-cp37-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6883d23ece732b8454d5aaf3f3feeb4ff19373758b399beff6f356d39df9953e",
"md5": "a15c66bede15226fbdec810561821896",
"sha256": "34a70144d1eb485621d8d70b8020191bcce64a1efcd7e672ce1a0231206262f1"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp37-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "a15c66bede15226fbdec810561821896",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 138654,
"upload_time": "2024-07-19T03:46:33",
"upload_time_iso_8601": "2024-07-19T03:46:33.159962Z",
"url": "https://files.pythonhosted.org/packages/68/83/d23ece732b8454d5aaf3f3feeb4ff19373758b399beff6f356d39df9953e/pymath_compute-0.3.2-cp37-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec6a2b2eecd5edd56b030150a81b9096a57e65abb8af4f6c609d56e45cf88f90",
"md5": "7d4bf456329b6d6c47d37598c46459c6",
"sha256": "3251b2d2ee6dfadf64661ddbe5c1fe193fb7b716831875808d9dfa0dcfd36add"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7d4bf456329b6d6c47d37598c46459c6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 279254,
"upload_time": "2024-07-19T03:46:34",
"upload_time_iso_8601": "2024-07-19T03:46:34.483417Z",
"url": "https://files.pythonhosted.org/packages/ec/6a/2b2eecd5edd56b030150a81b9096a57e65abb8af4f6c609d56e45cf88f90/pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e9a43a00752e0f068cbf7b1b1683b8376e6cc1f41dc4875e86ea78b2abe63af",
"md5": "a898eb29ffdfbaf4eaa1ab7ca2cd4a3b",
"sha256": "2e22c8f71dddb38f3b0ba1d5c35455febf6432ead94d4e877803a208b21f7a25"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a898eb29ffdfbaf4eaa1ab7ca2cd4a3b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 275725,
"upload_time": "2024-07-19T03:46:36",
"upload_time_iso_8601": "2024-07-19T03:46:36.002325Z",
"url": "https://files.pythonhosted.org/packages/8e/9a/43a00752e0f068cbf7b1b1683b8376e6cc1f41dc4875e86ea78b2abe63af/pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76b066c3776ad7fb63cb764d6714ab059eb1f9458bde3ed976f32b308886f891",
"md5": "f17e32e668e7aaf97c1d737fafe33e76",
"sha256": "37d837118c49a18bddfcdd8168bbb09c7ece94d0219bcd6b1ede6bd71abb2748"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f17e32e668e7aaf97c1d737fafe33e76",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 304458,
"upload_time": "2024-07-19T03:46:37",
"upload_time_iso_8601": "2024-07-19T03:46:37.531150Z",
"url": "https://files.pythonhosted.org/packages/76/b0/66c3776ad7fb63cb764d6714ab059eb1f9458bde3ed976f32b308886f891/pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6af0c94eccc8230a43c85cfe0fa2e448b00b647beb136e20a0b6ae576cfb534a",
"md5": "fb052855e93adae7fcd33790752c7c7a",
"sha256": "cc96f7556bfcbc68d8177d3a5f818ddf44d5131f5ea9419c872f68ce94bb1ff2"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "fb052855e93adae7fcd33790752c7c7a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 314907,
"upload_time": "2024-07-19T03:46:38",
"upload_time_iso_8601": "2024-07-19T03:46:38.778722Z",
"url": "https://files.pythonhosted.org/packages/6a/f0/c94eccc8230a43c85cfe0fa2e448b00b647beb136e20a0b6ae576cfb534a/pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7fb51f725fb6827e67c574a423f8f6ac8df95bfa741c22b12bf2943dfc0046d5",
"md5": "21a9d73a17243ed9d3af063b0cfa22a4",
"sha256": "18deebdead9b4b47c116bd6e1133917bfaf14ac072e268a39fcb3d0191644ade"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "21a9d73a17243ed9d3af063b0cfa22a4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 269105,
"upload_time": "2024-07-19T03:46:39",
"upload_time_iso_8601": "2024-07-19T03:46:39.977516Z",
"url": "https://files.pythonhosted.org/packages/7f/b5/1f725fb6827e67c574a423f8f6ac8df95bfa741c22b12bf2943dfc0046d5/pymath_compute-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0247e78784f9bb55e827fa446b3cac259bb55b41952655c778a0702c30512b62",
"md5": "c68ff2792c7f07ae9f17164cfc872a86",
"sha256": "43091812def209ac1d2e21817a282198eb8f9ca3e9c7fe1e5143911afe3e0a53"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c68ff2792c7f07ae9f17164cfc872a86",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 279355,
"upload_time": "2024-07-19T03:46:41",
"upload_time_iso_8601": "2024-07-19T03:46:41.512003Z",
"url": "https://files.pythonhosted.org/packages/02/47/e78784f9bb55e827fa446b3cac259bb55b41952655c778a0702c30512b62/pymath_compute-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b183f395d6ce4876cd0b6855a4cf2a623af96508f1c22878b038038dca39fd2",
"md5": "2e4a0c641ed1c1b01948e877cfd4b876",
"sha256": "c97ff2637bb934b939f0e0653e29d86cce3e9ff1389064ac50b4a07b14c1592c"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "2e4a0c641ed1c1b01948e877cfd4b876",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 133873,
"upload_time": "2024-07-19T03:46:42",
"upload_time_iso_8601": "2024-07-19T03:46:42.615204Z",
"url": "https://files.pythonhosted.org/packages/1b/18/3f395d6ce4876cd0b6855a4cf2a623af96508f1c22878b038038dca39fd2/pymath_compute-0.3.2-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd299ef4a16cdd2582296006b1943f544392963a9ead64748f5fe9afb870d16e",
"md5": "27d08282c249632c7bc0552817c146e1",
"sha256": "576b904a9407732069a8c7026fdceda035a4d2d4244a83e9974e002e4946308b"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "27d08282c249632c7bc0552817c146e1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 138699,
"upload_time": "2024-07-19T03:46:43",
"upload_time_iso_8601": "2024-07-19T03:46:43.692560Z",
"url": "https://files.pythonhosted.org/packages/cd/29/9ef4a16cdd2582296006b1943f544392963a9ead64748f5fe9afb870d16e/pymath_compute-0.3.2-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e13bcf2beefd0a3fc2f384caa21ee1428d1f9b7f82eb08e42ca1c0d23fe9f5b",
"md5": "bd1413498165079a93ad3b204ffbe31e",
"sha256": "078b5f535db11ec69fdea7b3fd7f82c40ee32fed39c8d21911d745b97892a7de"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "bd1413498165079a93ad3b204ffbe31e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 239924,
"upload_time": "2024-07-19T03:46:45",
"upload_time_iso_8601": "2024-07-19T03:46:45.032950Z",
"url": "https://files.pythonhosted.org/packages/1e/13/bcf2beefd0a3fc2f384caa21ee1428d1f9b7f82eb08e42ca1c0d23fe9f5b/pymath_compute-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0463cfef9791878d7d39dee8ace583776a28f892ea01dcf1a906577e25ef14b8",
"md5": "43b1ff0d64fceddaa739cd7ceba4038d",
"sha256": "188ed32f4d3162690296959ea787c7d717a3874af8dd267656c9bfbda34ead48"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "43b1ff0d64fceddaa739cd7ceba4038d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 238585,
"upload_time": "2024-07-19T03:46:46",
"upload_time_iso_8601": "2024-07-19T03:46:46.694212Z",
"url": "https://files.pythonhosted.org/packages/04/63/cfef9791878d7d39dee8ace583776a28f892ea01dcf1a906577e25ef14b8/pymath_compute-0.3.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "afe400b6efd4a8dc6d254040fbb19032ee3f71b6ee7e7cf72e45d3cf74b74317",
"md5": "f32090e7a1a9b9f0927d25f7484ce8f1",
"sha256": "e8ad10fa6775096bf713108cf77e21236c2d38927bea44e4910bbe08f4b98774"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f32090e7a1a9b9f0927d25f7484ce8f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 279296,
"upload_time": "2024-07-19T03:46:48",
"upload_time_iso_8601": "2024-07-19T03:46:48.755384Z",
"url": "https://files.pythonhosted.org/packages/af/e4/00b6efd4a8dc6d254040fbb19032ee3f71b6ee7e7cf72e45d3cf74b74317/pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2be3007b1ed0edd2ca73957f742d6e9de3bdf678850514aec8c49991c597db24",
"md5": "89f2d6daf23657a769b092e91e576a78",
"sha256": "a509c0542dec07b0d17f6f8b0a1c75d4f8b214f505a2de37df57063bb344ecac"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "89f2d6daf23657a769b092e91e576a78",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 275830,
"upload_time": "2024-07-19T03:46:49",
"upload_time_iso_8601": "2024-07-19T03:46:49.950466Z",
"url": "https://files.pythonhosted.org/packages/2b/e3/007b1ed0edd2ca73957f742d6e9de3bdf678850514aec8c49991c597db24/pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6ecc6587118e473d491193671b0f5f2faec7989bed6d338826ae552d20fa318",
"md5": "984ac8b5b9e124dc8ebd790527914840",
"sha256": "2fc5273f7ce1f224a41ee6e1336d00f9c2be09451002adf1f0ae27241f8ca111"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "984ac8b5b9e124dc8ebd790527914840",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 304641,
"upload_time": "2024-07-19T03:46:51",
"upload_time_iso_8601": "2024-07-19T03:46:51.377813Z",
"url": "https://files.pythonhosted.org/packages/b6/ec/c6587118e473d491193671b0f5f2faec7989bed6d338826ae552d20fa318/pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7fa64526e3c799807a4201f83d179dc17d1beac38e98670660f27762eaf86af7",
"md5": "fa407e2459e72e45be5157e08b7bae8c",
"sha256": "4d0025ca64ecebbc6ff5ebd26c1959afb0636d43186592d84567fa0d0ad20f5e"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "fa407e2459e72e45be5157e08b7bae8c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 315217,
"upload_time": "2024-07-19T03:46:52",
"upload_time_iso_8601": "2024-07-19T03:46:52.551687Z",
"url": "https://files.pythonhosted.org/packages/7f/a6/4526e3c799807a4201f83d179dc17d1beac38e98670660f27762eaf86af7/pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f04a36b61a3f753184b5be19d258cabbf1d7e4307140c6c5eeb9f3bf4196c0b",
"md5": "ccc7d158aeaac2f74c1d94648fcd5f95",
"sha256": "c1d6fe281c42673169780fe5dbc0b43f334f1a2e4f129c81f99fb49613593614"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ccc7d158aeaac2f74c1d94648fcd5f95",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 269179,
"upload_time": "2024-07-19T03:46:54",
"upload_time_iso_8601": "2024-07-19T03:46:54.308539Z",
"url": "https://files.pythonhosted.org/packages/0f/04/a36b61a3f753184b5be19d258cabbf1d7e4307140c6c5eeb9f3bf4196c0b/pymath_compute-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "318ebc08d348fb504241f75bd328ef53e723a6304cd369a19f1eeb92a8a0cfbd",
"md5": "71927f5f3b0d21bbd116eb19d3742fec",
"sha256": "95f2e016950bb683973b40cd771c2c632db137d628a799887e273e5ade0b214b"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "71927f5f3b0d21bbd116eb19d3742fec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 279556,
"upload_time": "2024-07-19T03:46:55",
"upload_time_iso_8601": "2024-07-19T03:46:55.434802Z",
"url": "https://files.pythonhosted.org/packages/31/8e/bc08d348fb504241f75bd328ef53e723a6304cd369a19f1eeb92a8a0cfbd/pymath_compute-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6806c3108e9ada9b25aae8b13c4fdfe8c2a2fb965d2f18ecc1f7182cdee7a923",
"md5": "7f4ebbd2108b73fee41a025667653ad1",
"sha256": "1fa7f011d4f62b55367e48fe1fa15526cd72fa0964001fc1297a0943d0f3c081"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "7f4ebbd2108b73fee41a025667653ad1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 134002,
"upload_time": "2024-07-19T03:46:56",
"upload_time_iso_8601": "2024-07-19T03:46:56.549226Z",
"url": "https://files.pythonhosted.org/packages/68/06/c3108e9ada9b25aae8b13c4fdfe8c2a2fb965d2f18ecc1f7182cdee7a923/pymath_compute-0.3.2-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43a221e2b7660c90e3fecef6004655980ebaa417253cf32ca40ffa2a2649db5f",
"md5": "2744d43f2adb7da356962420f90a93b4",
"sha256": "3bdb8483809dac6935a0824ae9c42299fd1a54cbe48bb34d80be4dbc6ec7799d"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "2744d43f2adb7da356962420f90a93b4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 138938,
"upload_time": "2024-07-19T03:46:58",
"upload_time_iso_8601": "2024-07-19T03:46:58.017498Z",
"url": "https://files.pythonhosted.org/packages/43/a2/21e2b7660c90e3fecef6004655980ebaa417253cf32ca40ffa2a2649db5f/pymath_compute-0.3.2-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf9ae839af8143586b7354571e211f32690f50ce180b468f66cf76e1860b56b1",
"md5": "51106ed35a1451e8cffa28e145c6cbe0",
"sha256": "108d6681f4d3e06a2c8c93dfa7ae313d22b90675a711d5a8c7aa7d792e90f245"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "51106ed35a1451e8cffa28e145c6cbe0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 280338,
"upload_time": "2024-07-19T03:46:59",
"upload_time_iso_8601": "2024-07-19T03:46:59.287760Z",
"url": "https://files.pythonhosted.org/packages/cf/9a/e839af8143586b7354571e211f32690f50ce180b468f66cf76e1860b56b1/pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ad77cd2ad992552a4d70cf324e53510819c020e71a8165a46162203fa34b3f5",
"md5": "64f1d05af30debe418e15791c1fd654d",
"sha256": "93a79f8fd1835f69bd8d57e5d38cfc008a1aebd14a82f04b6ea96a5ace9bbed7"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "64f1d05af30debe418e15791c1fd654d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 276997,
"upload_time": "2024-07-19T03:47:00",
"upload_time_iso_8601": "2024-07-19T03:47:00.496102Z",
"url": "https://files.pythonhosted.org/packages/7a/d7/7cd2ad992552a4d70cf324e53510819c020e71a8165a46162203fa34b3f5/pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "421f59e7dd3577808e56b12b9470c01682b7435b9e68e7e6afd7e9187d4a7c5a",
"md5": "8133e98a05f1fe8a512275f9ad729f40",
"sha256": "7292eeb160de4b10d1a4c9b3958834c5690e8cccb25475fdfc92bc60478e4ea4"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8133e98a05f1fe8a512275f9ad729f40",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 305411,
"upload_time": "2024-07-19T03:47:01",
"upload_time_iso_8601": "2024-07-19T03:47:01.743726Z",
"url": "https://files.pythonhosted.org/packages/42/1f/59e7dd3577808e56b12b9470c01682b7435b9e68e7e6afd7e9187d4a7c5a/pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4baf2c7dd76f0e82493e319c3757170422366fa5b9b2bd307b5298532ccf2805",
"md5": "a71f939da61a821b38a366288e103757",
"sha256": "d3296eb081f6e9cca674407232a88f9eb54c8b6867e04c6f6d514b12ed98bf62"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a71f939da61a821b38a366288e103757",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 314437,
"upload_time": "2024-07-19T03:47:03",
"upload_time_iso_8601": "2024-07-19T03:47:03.784431Z",
"url": "https://files.pythonhosted.org/packages/4b/af/2c7dd76f0e82493e319c3757170422366fa5b9b2bd307b5298532ccf2805/pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c04a1605b6f86e638d1997c120432ac9c330cf8d8346e6f3a957d0f99792065",
"md5": "fe696e431f6a7827cdfcdeb082957cc4",
"sha256": "c2cfff4bab0fd6588cdd262dff44ae3227617be82963b3bd5408f011d563794c"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fe696e431f6a7827cdfcdeb082957cc4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 270201,
"upload_time": "2024-07-19T03:47:05",
"upload_time_iso_8601": "2024-07-19T03:47:05.352027Z",
"url": "https://files.pythonhosted.org/packages/0c/04/a1605b6f86e638d1997c120432ac9c330cf8d8346e6f3a957d0f99792065/pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2fae7f5a68c546f4c4788f975ef301ec8469baeb37918992c0409ae3846ac581",
"md5": "c7b8f2dac1b5efa24838c95a96557534",
"sha256": "9988f40dbe8ad5aae3285549640008e4530d9ef0fd19390275502a29b3592e9c"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c7b8f2dac1b5efa24838c95a96557534",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 280441,
"upload_time": "2024-07-19T03:47:06",
"upload_time_iso_8601": "2024-07-19T03:47:06.531214Z",
"url": "https://files.pythonhosted.org/packages/2f/ae/7f5a68c546f4c4788f975ef301ec8469baeb37918992c0409ae3846ac581/pymath_compute-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad6068382234d9fe2b0893beb99f5c4cf0d520aaa45f0450a7b3789f25e73fb1",
"md5": "978d7ae92fca76e26c7ae0a62924e0d7",
"sha256": "f683b4465da1bb256f59b926103d48cdef465ff6dfd150157cc728ba373cdc01"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "978d7ae92fca76e26c7ae0a62924e0d7",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 282572,
"upload_time": "2024-07-19T03:47:08",
"upload_time_iso_8601": "2024-07-19T03:47:08.091152Z",
"url": "https://files.pythonhosted.org/packages/ad/60/68382234d9fe2b0893beb99f5c4cf0d520aaa45f0450a7b3789f25e73fb1/pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef7af836e00d39e9f5f87679505cbabb08b3413b59e74fb125d19a295fee1bd1",
"md5": "2d132c9bb694bad20b044ff4caa72ea6",
"sha256": "7446b8c35d150842789b2e3d432757c2a240818ca62c70ca38795ba73cd8b52b"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2d132c9bb694bad20b044ff4caa72ea6",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 278939,
"upload_time": "2024-07-19T03:47:09",
"upload_time_iso_8601": "2024-07-19T03:47:09.565452Z",
"url": "https://files.pythonhosted.org/packages/ef/7a/f836e00d39e9f5f87679505cbabb08b3413b59e74fb125d19a295fee1bd1/pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4cca445c5feb6ff18dac1196045b2b7129afced8d258ca40096105ac60be3cf",
"md5": "f90bf7f846390f369de8f310a819020a",
"sha256": "e7cf041f801e9901757c2d29c82d591bbe09f2ab0712501bb8000f209562ac7a"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f90bf7f846390f369de8f310a819020a",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 307286,
"upload_time": "2024-07-19T03:47:11",
"upload_time_iso_8601": "2024-07-19T03:47:11.225725Z",
"url": "https://files.pythonhosted.org/packages/d4/cc/a445c5feb6ff18dac1196045b2b7129afced8d258ca40096105ac60be3cf/pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "181b8051393df4f482b2b3ce52d91a5d9643e0248bb6a5db7c9318cfd03ce729",
"md5": "861107eb4d9d3e70a2d067dc0bcd6ca0",
"sha256": "09078333396ea800279e59cd18d4850b8702d73d188ed3e9e5a14bbefd6df09d"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "861107eb4d9d3e70a2d067dc0bcd6ca0",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 318744,
"upload_time": "2024-07-19T03:47:12",
"upload_time_iso_8601": "2024-07-19T03:47:12.440363Z",
"url": "https://files.pythonhosted.org/packages/18/1b/8051393df4f482b2b3ce52d91a5d9643e0248bb6a5db7c9318cfd03ce729/pymath_compute-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "232b9b6bff7499e2b7868001c1a40ffa10188b6b540ca7428fe82ffd0b8f0014",
"md5": "8d56e1c888824de64281329fd838c075",
"sha256": "4f4f70d1b6d67ac823e8c7d82e044e42d91c782cdfcb9e6e8636f9283df93674"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8d56e1c888824de64281329fd838c075",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 279909,
"upload_time": "2024-07-19T03:47:13",
"upload_time_iso_8601": "2024-07-19T03:47:13.655095Z",
"url": "https://files.pythonhosted.org/packages/23/2b/9b6bff7499e2b7868001c1a40ffa10188b6b540ca7428fe82ffd0b8f0014/pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49efc7e7ede12fbe1ba70d103688bec203660c472d35fa89f6188b3574656636",
"md5": "95f54b6499cbc53336300698dc547961",
"sha256": "d755513214b601cc89a5708b97950c1cb6a8a4f1ac7d977472bfeb7c7736936c"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "95f54b6499cbc53336300698dc547961",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 277095,
"upload_time": "2024-07-19T03:47:15",
"upload_time_iso_8601": "2024-07-19T03:47:15.026450Z",
"url": "https://files.pythonhosted.org/packages/49/ef/c7e7ede12fbe1ba70d103688bec203660c472d35fa89f6188b3574656636/pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08c7ffdc61b5ada7247ee47c6648c7d8187ee180e3f1aae39af8d57e245acbef",
"md5": "36cff372e713d0a4b0c01902d4b5a11d",
"sha256": "e887484ca0c33e14fc7dddaf8418da9196c61de3eef4a1a1ae1194b58b8720cc"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "36cff372e713d0a4b0c01902d4b5a11d",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 305144,
"upload_time": "2024-07-19T03:47:16",
"upload_time_iso_8601": "2024-07-19T03:47:16.373630Z",
"url": "https://files.pythonhosted.org/packages/08/c7/ffdc61b5ada7247ee47c6648c7d8187ee180e3f1aae39af8d57e245acbef/pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b97a685e388bd8bd928a7b8147954be0b55a01b8a33f1ba0af548e72dbeb55ca",
"md5": "5b5f6a2dfdde54222e24a1d4d5778b21",
"sha256": "0510e3b5119fde79655a42fa7b5fa570b0bcef15485b9921311ffb18b0b6d78f"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5b5f6a2dfdde54222e24a1d4d5778b21",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 314299,
"upload_time": "2024-07-19T03:47:17",
"upload_time_iso_8601": "2024-07-19T03:47:17.714496Z",
"url": "https://files.pythonhosted.org/packages/b9/7a/685e388bd8bd928a7b8147954be0b55a01b8a33f1ba0af548e72dbeb55ca/pymath_compute-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b76ca3b98d6f260d6e54b01082645a0e6b79fd9587934f1ba3a6f6f166efaf9",
"md5": "bf102ceaf398a0c4b40d85c5739f6496",
"sha256": "3fed435b77ddd0d3b306f094cd074ccf7b982f2202113d36914f0c4c7ace3b32"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bf102ceaf398a0c4b40d85c5739f6496",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 280334,
"upload_time": "2024-07-19T03:47:19",
"upload_time_iso_8601": "2024-07-19T03:47:19.385337Z",
"url": "https://files.pythonhosted.org/packages/9b/76/ca3b98d6f260d6e54b01082645a0e6b79fd9587934f1ba3a6f6f166efaf9/pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e526888577e27991f93a883f84446c504bc1d4b13bbb265e029afcbcfc91cd43",
"md5": "753d86b50c2f85a32d29756853ed9b77",
"sha256": "923a80d06c33be48cc5513356a7ce1e7926670f8085828e7d9fccbdf136d0668"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "753d86b50c2f85a32d29756853ed9b77",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 276994,
"upload_time": "2024-07-19T03:47:20",
"upload_time_iso_8601": "2024-07-19T03:47:20.732203Z",
"url": "https://files.pythonhosted.org/packages/e5/26/888577e27991f93a883f84446c504bc1d4b13bbb265e029afcbcfc91cd43/pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cac5da4116861f52d345312966d8998c71cb763fe2d1afa4c67bed85b41f3735",
"md5": "2be2880394415d353c72e7401a73f79b",
"sha256": "baa35d1b55b9652cb0f73a47ce84b0af49875420d0239fcc9ccbadc4c5e6154a"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2be2880394415d353c72e7401a73f79b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 305406,
"upload_time": "2024-07-19T03:47:21",
"upload_time_iso_8601": "2024-07-19T03:47:21.890904Z",
"url": "https://files.pythonhosted.org/packages/ca/c5/da4116861f52d345312966d8998c71cb763fe2d1afa4c67bed85b41f3735/pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6de7a5c03deb371707ce20b208e3c109b5a21b1309ccc234e2382a57d394510a",
"md5": "d4aa99c6c619dfa863fe8617574e8062",
"sha256": "fa2ccce73c0b7f50f515b9dfe222848f15b53cd0351cdfa28ce8cb8fae931220"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d4aa99c6c619dfa863fe8617574e8062",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 314430,
"upload_time": "2024-07-19T03:47:23",
"upload_time_iso_8601": "2024-07-19T03:47:23.115505Z",
"url": "https://files.pythonhosted.org/packages/6d/e7/a5c03deb371707ce20b208e3c109b5a21b1309ccc234e2382a57d394510a/pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56e660f88b7b3df841deccdd825550681b6d741e81ee6c7bcbda05b66f392219",
"md5": "c18de870b627d1617da01e322ac07b4f",
"sha256": "04b8374f9c83e27a4dde69083bf59aaeb9c206583afbd1b1a80f0a3632f35aee"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c18de870b627d1617da01e322ac07b4f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 270198,
"upload_time": "2024-07-19T03:47:24",
"upload_time_iso_8601": "2024-07-19T03:47:24.444688Z",
"url": "https://files.pythonhosted.org/packages/56/e6/60f88b7b3df841deccdd825550681b6d741e81ee6c7bcbda05b66f392219/pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b63f1736615144af808f1eb4f4ebd71452896650469851f8c9da84118f0f2fe",
"md5": "d77f453d392acfdac10b90edfdfc50d2",
"sha256": "1e61998dd2f10b17a7af487ae857d38778e30aa44a410171afb625ae6835c1b8"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "d77f453d392acfdac10b90edfdfc50d2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 280436,
"upload_time": "2024-07-19T03:47:25",
"upload_time_iso_8601": "2024-07-19T03:47:25.625909Z",
"url": "https://files.pythonhosted.org/packages/0b/63/f1736615144af808f1eb4f4ebd71452896650469851f8c9da84118f0f2fe/pymath_compute-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "16423ddf77cffe19667698b1aa2ea60ae11d326af9c146889ff5e4a4318fa243",
"md5": "0efa4f476b10e6c273c606225b92882d",
"sha256": "f7699c8805f39874c790cd45eb3f5bc1738d9329677f822a83d971b18086ed23"
},
"downloads": -1,
"filename": "pymath_compute-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "0efa4f476b10e6c273c606225b92882d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 698378,
"upload_time": "2024-07-19T03:47:26",
"upload_time_iso_8601": "2024-07-19T03:47:26.728437Z",
"url": "https://files.pythonhosted.org/packages/16/42/3ddf77cffe19667698b1aa2ea60ae11d326af9c146889ff5e4a4318fa243/pymath_compute-0.3.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-07-19 03:47:26",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ricardoleal20",
"github_project": "pymath_compute",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "reflex",
"specs": [
[
"==",
"0.5.6"
]
]
}
],
"lcname": "pymath-compute"
}