pyevspace


Namepyevspace JSON
Version 0.14.2 PyPI version JSON
download
home_page
SummaryA Python 3-dimensional Euclidean vector space.
upload_time2023-08-08 02:25:09
maintainer
docs_urlNone
author
requires_python>=3.7
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyEVSpace 0.14.2

[![Github test action](https://github.com/qbizzle68/pyevspace/actions/workflows/test-builds.yml/badge.svg)](https://github.com/qbizzle68/pyevspace/actions)
[![PyPi](https://img.shields.io/pypi/v/pyevspace?style=plastic)](https://pypi.org/project/pyevspace/#history)
![Supported Python versions](https://img.shields.io/pypi/pyversions/pyevspace?style=plastic)
[![License](https://img.shields.io/pypi/l/pyevspace?style-plastic)](https://opensource.org/licenses/MIT)

PyEVSpace is a Python Euclidean vector space package containing types
and methods for representing vector quantites and fasilitating rotating
them between reference frames. PyEVSpace is designed for 3-dimensional
space only, which allows for optimum speed since size checks do not
occur.


## Documentation

The full documentation of this project with both Python and C APIs can
be found [here](https://qbizzle68.github.io/pyevspace/html/index.html).

## Install

The python module can be installed with
```python
pip install pyevspace
```

Alternatively the repository can be downloaded or cloned using:
```bash
git clone https://github.com/qbizzle68/pyevspace.git
```
It can be used as is within Visual Studio, or built inplace using the
*setup.py* if needed.

## Usage

To use the module simply import the pyevspace module into your project:
```python
import pyevspace as evs
from math import pi

vec = evs.Vector(1, 2, 3)

rotatedVec = evs.rotateAxisTo(evs.X_AXIS, pi/2)
```

Matrices can be created from iterables, where each iterable represents
a row of the matrix
```python
import pyevspace as evs

mat = evs.Matrix((0, 0, 1), (0, -1, 0), (1, 0, 0))

rotatedVec = evs.rotateMatrixFrom(mat, Vector(1, 1, 1))
```

The Order and Angles types can be used to create an Euler rotation 
matrix. All twelve Euler rotations are already defined in the module,
so you shouldn't need to instantiate an Order object. The Angles
object holds the angles for each rotation in the Euler rotation, in
the order of the axis rotations (in radians).
```python
import pyevspace as evs

angs = Angles(1.1, 4.5, 3.14)
mat = getMatrixEuler(XYZ, angs)

rotatedVec = mat * Vector(1, 0, 2)
```

There are many methods that handle the rotations for you, check the
official documentation to learn more about them.

## Examples

### Examples of numeric operators
```python
v1 = Vector(1, 2, 3)
v2 = Vector(4, 5, 6)

print(v1 * 2)
# prints [2, 4, 6]

print(v1 + v2)
# prints [5, 7, 9]

print(v1 - v2)
# prints [-3, -3, -3]
```

### Examples of vector and matrix operators
```python
v1 = Vector(1, 2, 3)
v2 = Vector(4, 5, 6)
m1 = Matrix(Vector(4, 2, 3), Vector(8, 5, 2), Vector(4, 2, 1))

print(dot(v1, v2))
# prints 32.0

print(cross(v1, v2))
# prints [ -3.00000, 6.00000, -3.00000 ]

print(det(m1))
# prints -8.0

print(transpose(m1))
# prints 
# ([4, 2, 3],
# [8, 5, 2],
# [4, 2, 1])
```

## License
[MIT](https://choosealicense.com/licenses/mit/)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pyevspace",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Quinton Barnes <devqbizzle68@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/07/34/d9df00269bb9579cc0b273e9296c697a104da50fb9e71453e6e5c00dad0c/pyevspace-0.14.2.tar.gz",
    "platform": null,
    "description": "# PyEVSpace 0.14.2\n\n[![Github test action](https://github.com/qbizzle68/pyevspace/actions/workflows/test-builds.yml/badge.svg)](https://github.com/qbizzle68/pyevspace/actions)\n[![PyPi](https://img.shields.io/pypi/v/pyevspace?style=plastic)](https://pypi.org/project/pyevspace/#history)\n![Supported Python versions](https://img.shields.io/pypi/pyversions/pyevspace?style=plastic)\n[![License](https://img.shields.io/pypi/l/pyevspace?style-plastic)](https://opensource.org/licenses/MIT)\n\nPyEVSpace is a Python Euclidean vector space package containing types\nand methods for representing vector quantites and fasilitating rotating\nthem between reference frames. PyEVSpace is designed for 3-dimensional\nspace only, which allows for optimum speed since size checks do not\noccur.\n\n\n## Documentation\n\nThe full documentation of this project with both Python and C APIs can\nbe found [here](https://qbizzle68.github.io/pyevspace/html/index.html).\n\n## Install\n\nThe python module can be installed with\n```python\npip install pyevspace\n```\n\nAlternatively the repository can be downloaded or cloned using:\n```bash\ngit clone https://github.com/qbizzle68/pyevspace.git\n```\nIt can be used as is within Visual Studio, or built inplace using the\n*setup.py* if needed.\n\n## Usage\n\nTo use the module simply import the pyevspace module into your project:\n```python\nimport pyevspace as evs\nfrom math import pi\n\nvec = evs.Vector(1, 2, 3)\n\nrotatedVec = evs.rotateAxisTo(evs.X_AXIS, pi/2)\n```\n\nMatrices can be created from iterables, where each iterable represents\na row of the matrix\n```python\nimport pyevspace as evs\n\nmat = evs.Matrix((0, 0, 1), (0, -1, 0), (1, 0, 0))\n\nrotatedVec = evs.rotateMatrixFrom(mat, Vector(1, 1, 1))\n```\n\nThe Order and Angles types can be used to create an Euler rotation \nmatrix. All twelve Euler rotations are already defined in the module,\nso you shouldn't need to instantiate an Order object. The Angles\nobject holds the angles for each rotation in the Euler rotation, in\nthe order of the axis rotations (in radians).\n```python\nimport pyevspace as evs\n\nangs = Angles(1.1, 4.5, 3.14)\nmat = getMatrixEuler(XYZ, angs)\n\nrotatedVec = mat * Vector(1, 0, 2)\n```\n\nThere are many methods that handle the rotations for you, check the\nofficial documentation to learn more about them.\n\n## Examples\n\n### Examples of numeric operators\n```python\nv1 = Vector(1, 2, 3)\nv2 = Vector(4, 5, 6)\n\nprint(v1 * 2)\n# prints [2, 4, 6]\n\nprint(v1 + v2)\n# prints [5, 7, 9]\n\nprint(v1 - v2)\n# prints [-3, -3, -3]\n```\n\n### Examples of vector and matrix operators\n```python\nv1 = Vector(1, 2, 3)\nv2 = Vector(4, 5, 6)\nm1 = Matrix(Vector(4, 2, 3), Vector(8, 5, 2), Vector(4, 2, 1))\n\nprint(dot(v1, v2))\n# prints 32.0\n\nprint(cross(v1, v2))\n# prints [ -3.00000, 6.00000, -3.00000 ]\n\nprint(det(m1))\n# prints -8.0\n\nprint(transpose(m1))\n# prints \n# ([4, 2, 3],\n# [8, 5, 2],\n# [4, 2, 1])\n```\n\n## License\n[MIT](https://choosealicense.com/licenses/mit/)\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A Python 3-dimensional Euclidean vector space.",
    "version": "0.14.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/qbizzle68/pyevspace/issues",
        "Homepage": "https://github.com/qbizzle68/pyevspace"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e226dad2d67b0b7e876e044454ed13e4dd7b18e3e7d793e91eb56fa984afd806",
                "md5": "e4ae2e66aea8bb24731876c6c82e866a",
                "sha256": "cfef26509dd20b10af78f95e81e1173199d5b9482a762a3a130164e976ba79fc"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4ae2e66aea8bb24731876c6c82e866a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 68599,
            "upload_time": "2023-08-08T02:24:14",
            "upload_time_iso_8601": "2023-08-08T02:24:14.009856Z",
            "url": "https://files.pythonhosted.org/packages/e2/26/dad2d67b0b7e876e044454ed13e4dd7b18e3e7d793e91eb56fa984afd806/pyevspace-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2322403f049bfc96a74b566d021305b84ec023ce9a39526f027d7cdf8e55f9eb",
                "md5": "37efd012ec749d2f1a50ce56e2ba6d08",
                "sha256": "67a74bc9cf8e54853a4034ff1434a0d2de762c73dceaa7fc6b859660760df20b"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "37efd012ec749d2f1a50ce56e2ba6d08",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 138198,
            "upload_time": "2023-08-08T02:24:15",
            "upload_time_iso_8601": "2023-08-08T02:24:15.705002Z",
            "url": "https://files.pythonhosted.org/packages/23/22/403f049bfc96a74b566d021305b84ec023ce9a39526f027d7cdf8e55f9eb/pyevspace-0.14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f6a194aab69f04ba054a03fbb42e147eb9a71a94a3101377c13913692cf4a71",
                "md5": "447f47c8a19bb50e04d793491ba6c823",
                "sha256": "0bce298cb2513180176e727bb344e0b146cb8b6c35f6376beebbfbd603967024"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "447f47c8a19bb50e04d793491ba6c823",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 152023,
            "upload_time": "2023-08-08T02:24:16",
            "upload_time_iso_8601": "2023-08-08T02:24:16.843626Z",
            "url": "https://files.pythonhosted.org/packages/9f/6a/194aab69f04ba054a03fbb42e147eb9a71a94a3101377c13913692cf4a71/pyevspace-0.14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c32834d67c9e41f5ef2205f5eefced877e91592fdd661a079e362e06e324bed",
                "md5": "35acd0695e7177c3e0c965d8dbc0af2f",
                "sha256": "0cc6574227024dbfe195c387acf4011f081a4c426d219b32d9446adb668407fe"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "35acd0695e7177c3e0c965d8dbc0af2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 139084,
            "upload_time": "2023-08-08T02:24:18",
            "upload_time_iso_8601": "2023-08-08T02:24:18.574108Z",
            "url": "https://files.pythonhosted.org/packages/0c/32/834d67c9e41f5ef2205f5eefced877e91592fdd661a079e362e06e324bed/pyevspace-0.14.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbdf7b1a131ff3b4e7368d6e93501827cff7f31e80327bbdd3a0c56291e461d8",
                "md5": "77cb6ff8387d7df0818b26295f0df9e7",
                "sha256": "ea33c784d4a4bdcef3638bbd214b280a0198ff7785cec7b6c9d93632c666d2f7"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77cb6ff8387d7df0818b26295f0df9e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 153364,
            "upload_time": "2023-08-08T02:24:20",
            "upload_time_iso_8601": "2023-08-08T02:24:20.340572Z",
            "url": "https://files.pythonhosted.org/packages/fb/df/7b1a131ff3b4e7368d6e93501827cff7f31e80327bbdd3a0c56291e461d8/pyevspace-0.14.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "921938e18a05dfbfcb52e49c5888721062b0e5951f825d3dcbb503828705d182",
                "md5": "4e0df1e96e6abdae851a60af5b446b86",
                "sha256": "5dc50eadd34892871fda7aa2e1e76fc689cf78a6d561d435ba65a8b5cd1d2777"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "4e0df1e96e6abdae851a60af5b446b86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 66219,
            "upload_time": "2023-08-08T02:24:21",
            "upload_time_iso_8601": "2023-08-08T02:24:21.989628Z",
            "url": "https://files.pythonhosted.org/packages/92/19/38e18a05dfbfcb52e49c5888721062b0e5951f825d3dcbb503828705d182/pyevspace-0.14.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b02e18668c3325a2b196e69b047bc0d490ab83753bd1fb6263696e04652b4884",
                "md5": "e09a0b3e287b308318d1343eeb5c4624",
                "sha256": "1f0d4211c45995df810e4bbaa768ba4bfe6dd7d5e84f601c8c7842515b72b4f7"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e09a0b3e287b308318d1343eeb5c4624",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 69845,
            "upload_time": "2023-08-08T02:24:23",
            "upload_time_iso_8601": "2023-08-08T02:24:23.440200Z",
            "url": "https://files.pythonhosted.org/packages/b0/2e/18668c3325a2b196e69b047bc0d490ab83753bd1fb6263696e04652b4884/pyevspace-0.14.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f5488603c70b9dbdaecf23dfebf32311e2dd87040cbdc38694efb03dd680009",
                "md5": "08b4f3783bd3afa9726f5f3143222047",
                "sha256": "34d4b1521a17fffa5c6e0a477d84096d38ac9765713b33664fc8c45acbf4774d"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08b4f3783bd3afa9726f5f3143222047",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 68611,
            "upload_time": "2023-08-08T02:24:24",
            "upload_time_iso_8601": "2023-08-08T02:24:24.938006Z",
            "url": "https://files.pythonhosted.org/packages/8f/54/88603c70b9dbdaecf23dfebf32311e2dd87040cbdc38694efb03dd680009/pyevspace-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efd7b297b93cee3362193e5d7780d83160c46938c41016339a44fe476daf0561",
                "md5": "941d90184480afcf3556b1771785694b",
                "sha256": "0ef6b0c2bfc10e23c33020b9afd4795d259a8ca47992a0ce6252faab80733d55"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "941d90184480afcf3556b1771785694b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 141407,
            "upload_time": "2023-08-08T02:24:26",
            "upload_time_iso_8601": "2023-08-08T02:24:26.476751Z",
            "url": "https://files.pythonhosted.org/packages/ef/d7/b297b93cee3362193e5d7780d83160c46938c41016339a44fe476daf0561/pyevspace-0.14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e6951917e4680a4a8fcfa45779fb6958212ea0668b9fd87af5c0d684b6990fc",
                "md5": "b31bd37239f09885b51689e7484b5f04",
                "sha256": "f97fe3a60a067db216a84fc50b773103245a7f2ce2a990b58ac41df96bbdccae"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b31bd37239f09885b51689e7484b5f04",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 155333,
            "upload_time": "2023-08-08T02:24:27",
            "upload_time_iso_8601": "2023-08-08T02:24:27.889583Z",
            "url": "https://files.pythonhosted.org/packages/0e/69/51917e4680a4a8fcfa45779fb6958212ea0668b9fd87af5c0d684b6990fc/pyevspace-0.14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a911845aa8b6bb48f44d49c3dd1b197fda5d45b62b3a3196c02056b83a62224",
                "md5": "4430ec013a8a66c0a4dd2ee55abf335e",
                "sha256": "23aeff2cacd83fcd1e54f795c5c7d51c85127192b480a38e54da7a8ca545fcee"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "4430ec013a8a66c0a4dd2ee55abf335e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 144165,
            "upload_time": "2023-08-08T02:24:28",
            "upload_time_iso_8601": "2023-08-08T02:24:28.953297Z",
            "url": "https://files.pythonhosted.org/packages/0a/91/1845aa8b6bb48f44d49c3dd1b197fda5d45b62b3a3196c02056b83a62224/pyevspace-0.14.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec4f5d6fde62c1ddf7cf84a631db9f9fddaf8048d7438f9d730256f23d329247",
                "md5": "dabda5ca6f6913f98d6f4650b9d88443",
                "sha256": "82a62b029ea40035f76db97643505fc8c39fd87f6ec848231688663824333e17"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dabda5ca6f6913f98d6f4650b9d88443",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 158998,
            "upload_time": "2023-08-08T02:24:30",
            "upload_time_iso_8601": "2023-08-08T02:24:30.085232Z",
            "url": "https://files.pythonhosted.org/packages/ec/4f/5d6fde62c1ddf7cf84a631db9f9fddaf8048d7438f9d730256f23d329247/pyevspace-0.14.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ebd5d82fc8b8536a2ce5bcb383ba2b2fa91164c8e9a6f45920a2db8acc89ee8",
                "md5": "d06a9af685cea9b9d502c1945d50bffc",
                "sha256": "16967a2167063db94ac55d4273f9b46d8a47da963815e137277f9795ede89306"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "d06a9af685cea9b9d502c1945d50bffc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 66222,
            "upload_time": "2023-08-08T02:24:31",
            "upload_time_iso_8601": "2023-08-08T02:24:31.702299Z",
            "url": "https://files.pythonhosted.org/packages/8e/bd/5d82fc8b8536a2ce5bcb383ba2b2fa91164c8e9a6f45920a2db8acc89ee8/pyevspace-0.14.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c06b5a8d531e4244b3db0aa932cf47137d7d4f62d1717833a2cff8f41ebf75c4",
                "md5": "4f60498e682c8289328b73c4614b947b",
                "sha256": "9b16c165af9f11427dd2344102e5e391efa0520db998a79480280428bc815ef2"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4f60498e682c8289328b73c4614b947b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 69845,
            "upload_time": "2023-08-08T02:24:33",
            "upload_time_iso_8601": "2023-08-08T02:24:33.121029Z",
            "url": "https://files.pythonhosted.org/packages/c0/6b/5a8d531e4244b3db0aa932cf47137d7d4f62d1717833a2cff8f41ebf75c4/pyevspace-0.14.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fbb178893f33a08e6a3929d47e4faff6810fea6077b5a1ad779be90a325e4bb",
                "md5": "72b68253099ec88caa0b3acdd39256ac",
                "sha256": "fddadcd350db5973c62c024dfa4c57b61fca2044aab806686a77e1755d2f145a"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72b68253099ec88caa0b3acdd39256ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 68799,
            "upload_time": "2023-08-08T02:24:34",
            "upload_time_iso_8601": "2023-08-08T02:24:34.211956Z",
            "url": "https://files.pythonhosted.org/packages/9f/bb/178893f33a08e6a3929d47e4faff6810fea6077b5a1ad779be90a325e4bb/pyevspace-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "216ed23f659cf21e18ec0d9ce599cc3de2a0146c8ef1eebe2c02ced16a010561",
                "md5": "011f719d59918f4013544f1a7e8b38f3",
                "sha256": "200269255fe812df9079ba5c3bb0abfd1003aa9f35da50cb90ebad146b6e0629"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "011f719d59918f4013544f1a7e8b38f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 131919,
            "upload_time": "2023-08-08T02:24:35",
            "upload_time_iso_8601": "2023-08-08T02:24:35.163192Z",
            "url": "https://files.pythonhosted.org/packages/21/6e/d23f659cf21e18ec0d9ce599cc3de2a0146c8ef1eebe2c02ced16a010561/pyevspace-0.14.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e17570e2153e18c974ba47c0f8e77f074bba34684fd1ec06645fec6443a16843",
                "md5": "f7bdb3318ad1b770603030a7ab0ce643",
                "sha256": "29ff7143418e1d8f13f91ac7ee1fefea50999007d6c3096b41d09722bf5b45b0"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7bdb3318ad1b770603030a7ab0ce643",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 145558,
            "upload_time": "2023-08-08T02:24:36",
            "upload_time_iso_8601": "2023-08-08T02:24:36.733379Z",
            "url": "https://files.pythonhosted.org/packages/e1/75/70e2153e18c974ba47c0f8e77f074bba34684fd1ec06645fec6443a16843/pyevspace-0.14.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e1bd0f6b57c4a0c88f80961574339b2bc405ddb01c1dec7a6765f5691b799b7",
                "md5": "b78becfe8d75dbbfd63554bf4b5abea6",
                "sha256": "cc11a5325a89fdef2c01ccc42a0ac38634c741cbb2c451321f11819bb2eba735"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b78becfe8d75dbbfd63554bf4b5abea6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 135421,
            "upload_time": "2023-08-08T02:24:38",
            "upload_time_iso_8601": "2023-08-08T02:24:38.476749Z",
            "url": "https://files.pythonhosted.org/packages/4e/1b/d0f6b57c4a0c88f80961574339b2bc405ddb01c1dec7a6765f5691b799b7/pyevspace-0.14.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4e9eaa72c8e1e6b20afea95f97eef2a56206b156457aca3e146ac01b6d2781c",
                "md5": "427a13d92029e0757f8f69aa50588002",
                "sha256": "5d0c1c78f011ed98885d1940b1363305bc2d68c88549178acfc779141f76eea8"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "427a13d92029e0757f8f69aa50588002",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 149336,
            "upload_time": "2023-08-08T02:24:39",
            "upload_time_iso_8601": "2023-08-08T02:24:39.547489Z",
            "url": "https://files.pythonhosted.org/packages/c4/e9/eaa72c8e1e6b20afea95f97eef2a56206b156457aca3e146ac01b6d2781c/pyevspace-0.14.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4b74db20677a180cd0a72ef447af44d1ba2eabe804a1711d8bed08484d42e83",
                "md5": "559e824559361a159725b7e09e0be9b1",
                "sha256": "d61fd638017061ac05fc9c5849fed12a7810d79c76f95e57c737ccc49dcb1663"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "559e824559361a159725b7e09e0be9b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 66427,
            "upload_time": "2023-08-08T02:24:40",
            "upload_time_iso_8601": "2023-08-08T02:24:40.608746Z",
            "url": "https://files.pythonhosted.org/packages/a4/b7/4db20677a180cd0a72ef447af44d1ba2eabe804a1711d8bed08484d42e83/pyevspace-0.14.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "645643240029e3883756019c50319ab34f1120ee07eb6fb2b28016ce76ecb1c1",
                "md5": "f211adb1af4ae7aa1b56ed20512e15a6",
                "sha256": "cba7bdd76ed2952dba467dcdf31bdcecedfc7def322a364524da442161c91292"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f211adb1af4ae7aa1b56ed20512e15a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 70254,
            "upload_time": "2023-08-08T02:24:41",
            "upload_time_iso_8601": "2023-08-08T02:24:41.558653Z",
            "url": "https://files.pythonhosted.org/packages/64/56/43240029e3883756019c50319ab34f1120ee07eb6fb2b28016ce76ecb1c1/pyevspace-0.14.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05ceb59193664640c692841e0df19ffff4c1119176a3dd44516b8b9a0f943e99",
                "md5": "1ffada4b7fb87a3ae8ca1af36543f2be",
                "sha256": "945e75ab0a3f2d3c6d87ab450abd31e45fe164b802be61e75159c2931bbfcdae"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ffada4b7fb87a3ae8ca1af36543f2be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 68586,
            "upload_time": "2023-08-08T02:24:42",
            "upload_time_iso_8601": "2023-08-08T02:24:42.528199Z",
            "url": "https://files.pythonhosted.org/packages/05/ce/b59193664640c692841e0df19ffff4c1119176a3dd44516b8b9a0f943e99/pyevspace-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db863cb11f722497267ed7d1bba761d7d70314a9e663eb7f31a9acf115f637f4",
                "md5": "38a25351d1d7088d8db9bc5e4951ff9a",
                "sha256": "91172d8fe2c76ef008e26414ce570af9d18d0fc55b1021ce03381fcd88fc6e76"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "38a25351d1d7088d8db9bc5e4951ff9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 133611,
            "upload_time": "2023-08-08T02:24:43",
            "upload_time_iso_8601": "2023-08-08T02:24:43.474344Z",
            "url": "https://files.pythonhosted.org/packages/db/86/3cb11f722497267ed7d1bba761d7d70314a9e663eb7f31a9acf115f637f4/pyevspace-0.14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "186ecb56953761ef3a4db98b9675a195f1c97d21d262c9742789e9ddf0c73e89",
                "md5": "90db75e86b8607c5e836056ff0409631",
                "sha256": "5876b0769b7b8aeec1bcf7fc68971a704211be7e300892f94a2ac9ed23cbd6df"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90db75e86b8607c5e836056ff0409631",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 148172,
            "upload_time": "2023-08-08T02:24:44",
            "upload_time_iso_8601": "2023-08-08T02:24:44.995626Z",
            "url": "https://files.pythonhosted.org/packages/18/6e/cb56953761ef3a4db98b9675a195f1c97d21d262c9742789e9ddf0c73e89/pyevspace-0.14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "793b0a28937595fc8f9a1431ff4372e8598bc64fc2c0e7e63f461df636a99fa7",
                "md5": "90a50641f7556684b0671d6ee43189d1",
                "sha256": "739b53f51017b79bcd9e89d51553da2c25e1d1943173d3d7bd798cb3bb083076"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "90a50641f7556684b0671d6ee43189d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 133287,
            "upload_time": "2023-08-08T02:24:46",
            "upload_time_iso_8601": "2023-08-08T02:24:46.193736Z",
            "url": "https://files.pythonhosted.org/packages/79/3b/0a28937595fc8f9a1431ff4372e8598bc64fc2c0e7e63f461df636a99fa7/pyevspace-0.14.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4609f293c46420c6ed08afc114f72734cd15bfb3946fd2c2a0880c0c475eb0c7",
                "md5": "d5d105dbc407e9cdaa11021cd812cf79",
                "sha256": "f7c838d50f6656e9bd89f94d030cb4cc879b092e4991bd4590e8bd3d81a0066c"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5d105dbc407e9cdaa11021cd812cf79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 147357,
            "upload_time": "2023-08-08T02:24:47",
            "upload_time_iso_8601": "2023-08-08T02:24:47.647068Z",
            "url": "https://files.pythonhosted.org/packages/46/09/f293c46420c6ed08afc114f72734cd15bfb3946fd2c2a0880c0c475eb0c7/pyevspace-0.14.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6399c1fab5783756995a96e25e7e1bf5c1fde205e46b7b8656ea6d4a7eeecea",
                "md5": "70c4ce6a1736736e2bf4e5557c764e45",
                "sha256": "9de48949c081b3095e49aaec47d9e908c78150a2f128a10c71a6679042a6aa97"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "70c4ce6a1736736e2bf4e5557c764e45",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 66323,
            "upload_time": "2023-08-08T02:24:48",
            "upload_time_iso_8601": "2023-08-08T02:24:48.723989Z",
            "url": "https://files.pythonhosted.org/packages/e6/39/9c1fab5783756995a96e25e7e1bf5c1fde205e46b7b8656ea6d4a7eeecea/pyevspace-0.14.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1cc0fd9c240936baaf19607322e6bc49a5af5352e754db61daefddd555221cd",
                "md5": "5a579959f60b199f30c1cd8168b68dd5",
                "sha256": "00bd20fd668cc25be532cb25e416d9c843a3dfdddc85972b23107b0b17664c48"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5a579959f60b199f30c1cd8168b68dd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 70119,
            "upload_time": "2023-08-08T02:24:49",
            "upload_time_iso_8601": "2023-08-08T02:24:49.683237Z",
            "url": "https://files.pythonhosted.org/packages/b1/cc/0fd9c240936baaf19607322e6bc49a5af5352e754db61daefddd555221cd/pyevspace-0.14.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c2623a30240dbbed46a5419169eae288f843e8f92e0bf15f4f571cc2a99f41e",
                "md5": "eb1433f1d6942c62ea170a6d4708d97c",
                "sha256": "1e0597933f1c148017b847b5300997da994809647fb9d94f10b8a9f19e742ce8"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb1433f1d6942c62ea170a6d4708d97c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 66257,
            "upload_time": "2023-08-08T02:24:50",
            "upload_time_iso_8601": "2023-08-08T02:24:50.911527Z",
            "url": "https://files.pythonhosted.org/packages/8c/26/23a30240dbbed46a5419169eae288f843e8f92e0bf15f4f571cc2a99f41e/pyevspace-0.14.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28610408f73b4ad357aacb7eea100dd7ff9155e7f8246a40d35018b1a6b96aa4",
                "md5": "fc521816aacd3706e74e653e0c5f4f70",
                "sha256": "857fc6ffbe6ab9268ba84a75369adb3bc3d0c4363fc3f91c0d5c68e33888ba98"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fc521816aacd3706e74e653e0c5f4f70",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 73290,
            "upload_time": "2023-08-08T02:24:51",
            "upload_time_iso_8601": "2023-08-08T02:24:51.833031Z",
            "url": "https://files.pythonhosted.org/packages/28/61/0408f73b4ad357aacb7eea100dd7ff9155e7f8246a40d35018b1a6b96aa4/pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ddf4ac3a07b75cba7203b604b67549555ed7d565004aaffa6be1c6c5559923c",
                "md5": "d3aa39961d879748a11d1da4eafd541b",
                "sha256": "115f292d0505c137ce745dfb577ae2f0d73a42cf0bb2f09a5072aa2a2911f2aa"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3aa39961d879748a11d1da4eafd541b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 72890,
            "upload_time": "2023-08-08T02:24:52",
            "upload_time_iso_8601": "2023-08-08T02:24:52.741809Z",
            "url": "https://files.pythonhosted.org/packages/8d/df/4ac3a07b75cba7203b604b67549555ed7d565004aaffa6be1c6c5559923c/pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "647653bcbf7eea8fd9f4fdadc93546e6f2c7f956567a4d4d57ad316e355d9987",
                "md5": "54eb04a6b0bf4053d59f4122bf3ac5ed",
                "sha256": "f599658ea4017b115b2cef9c332343de6b9b9a1b12e0022e30b6612c49f8c89c"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "54eb04a6b0bf4053d59f4122bf3ac5ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 69934,
            "upload_time": "2023-08-08T02:24:53",
            "upload_time_iso_8601": "2023-08-08T02:24:53.652772Z",
            "url": "https://files.pythonhosted.org/packages/64/76/53bcbf7eea8fd9f4fdadc93546e6f2c7f956567a4d4d57ad316e355d9987/pyevspace-0.14.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e451fb56b09fdc964339eebca3dc841af6f66a30950c9406153aa3732b2364a",
                "md5": "788471eab1baac3659330c43a55bcfea",
                "sha256": "cc95f9d8cc225eb9db7baeca6f7656397da56a58310d4276d29059bb15055ce3"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "788471eab1baac3659330c43a55bcfea",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 66467,
            "upload_time": "2023-08-08T02:24:54",
            "upload_time_iso_8601": "2023-08-08T02:24:54.825370Z",
            "url": "https://files.pythonhosted.org/packages/4e/45/1fb56b09fdc964339eebca3dc841af6f66a30950c9406153aa3732b2364a/pyevspace-0.14.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "936dc9921c14928538aa17fbcc6c495a3efac5f2e51ad330d6ec37ed012c974c",
                "md5": "30b8f9cb09cb529bac909cdfe16b4e3b",
                "sha256": "e355aba9eb6d6e4ba8ed054c5f31586bdd1b96ab5ad31e297fd839ff1a6d4948"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "30b8f9cb09cb529bac909cdfe16b4e3b",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 73599,
            "upload_time": "2023-08-08T02:24:56",
            "upload_time_iso_8601": "2023-08-08T02:24:56.097665Z",
            "url": "https://files.pythonhosted.org/packages/93/6d/c9921c14928538aa17fbcc6c495a3efac5f2e51ad330d6ec37ed012c974c/pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1376bbd6153612cf9116ac9463172d79b6c47c61b797b6abd7e2536461b4e30b",
                "md5": "a95ba9c399a069c01e333a6c14a431c2",
                "sha256": "15cda3517987b1f970df6232dd26f4b4711251694f1e76e2b186f72b8a2e6922"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a95ba9c399a069c01e333a6c14a431c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 73148,
            "upload_time": "2023-08-08T02:24:57",
            "upload_time_iso_8601": "2023-08-08T02:24:57.542945Z",
            "url": "https://files.pythonhosted.org/packages/13/76/bbd6153612cf9116ac9463172d79b6c47c61b797b6abd7e2536461b4e30b/pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fca9ebe52366e8abce74e3769d657e34734e21d115404a55b153f020e6d16384",
                "md5": "9c4b3364e0b418b6ae5f72181220761e",
                "sha256": "23f3631291d541c8e2650670b47af622c1d3b24c6ecf39982b42d84d4e562282"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9c4b3364e0b418b6ae5f72181220761e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 70357,
            "upload_time": "2023-08-08T02:24:58",
            "upload_time_iso_8601": "2023-08-08T02:24:58.461062Z",
            "url": "https://files.pythonhosted.org/packages/fc/a9/ebe52366e8abce74e3769d657e34734e21d115404a55b153f020e6d16384/pyevspace-0.14.2-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0ed61be3607fda4f3dc51de59bcf932d9c74bee406bc0bf7d44c5dd1b60105e",
                "md5": "1a9459016fe9139cc25f4e55f7a19920",
                "sha256": "ce8692cc84f90dd32919a856481f678eb9ca09ec35f0d3e1bf84c4a1d2d24d36"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a9459016fe9139cc25f4e55f7a19920",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 66467,
            "upload_time": "2023-08-08T02:24:59",
            "upload_time_iso_8601": "2023-08-08T02:24:59.382855Z",
            "url": "https://files.pythonhosted.org/packages/f0/ed/61be3607fda4f3dc51de59bcf932d9c74bee406bc0bf7d44c5dd1b60105e/pyevspace-0.14.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "728dcd9c62c9ac182a3bd460327e2045a0fe4a3a973fb506e5c36e7a85ce7526",
                "md5": "1a74e2c3b5c69902d084260b2ea9249c",
                "sha256": "2d6948e9b1a57242c3a1deb170059cc98773ebb568ca85e8c8cba24de52eb7eb"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1a74e2c3b5c69902d084260b2ea9249c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 73601,
            "upload_time": "2023-08-08T02:25:00",
            "upload_time_iso_8601": "2023-08-08T02:25:00.662126Z",
            "url": "https://files.pythonhosted.org/packages/72/8d/cd9c62c9ac182a3bd460327e2045a0fe4a3a973fb506e5c36e7a85ce7526/pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a187856fc5cc6f3df0212e39f1ff70e6722285123feb80bad319c778217c0684",
                "md5": "4630660cb59e5bc75c4c8a487b2c4008",
                "sha256": "4f789bfb469488aeef4d6824b1d3ea1c5ee455b993aae54ce3d983bd2fd972ce"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4630660cb59e5bc75c4c8a487b2c4008",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 73157,
            "upload_time": "2023-08-08T02:25:01",
            "upload_time_iso_8601": "2023-08-08T02:25:01.835228Z",
            "url": "https://files.pythonhosted.org/packages/a1/87/856fc5cc6f3df0212e39f1ff70e6722285123feb80bad319c778217c0684/pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f29db998534dfb0edc020f0cb0c5c42f906e5076805370e4dab3c01b2ececf90",
                "md5": "4af663f8ae77436b157440405015db6d",
                "sha256": "482757e315c550cc9a6ab6b84fd41e849733ff865140cd6d514dd32dc01cf089"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4af663f8ae77436b157440405015db6d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 70361,
            "upload_time": "2023-08-08T02:25:03",
            "upload_time_iso_8601": "2023-08-08T02:25:03.106502Z",
            "url": "https://files.pythonhosted.org/packages/f2/9d/b998534dfb0edc020f0cb0c5c42f906e5076805370e4dab3c01b2ececf90/pyevspace-0.14.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "934665f88efa28e7fa0e2771c0046eae264c8feab73c00d394f1bb6c2a97b42d",
                "md5": "6405ad27a33f837faff55632024270d1",
                "sha256": "1bcc3ac17b8f425604fa5444e687e2f6bc29846e6c56a01ec311e616eac53dd5"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6405ad27a33f837faff55632024270d1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 66254,
            "upload_time": "2023-08-08T02:25:04",
            "upload_time_iso_8601": "2023-08-08T02:25:04.320820Z",
            "url": "https://files.pythonhosted.org/packages/93/46/65f88efa28e7fa0e2771c0046eae264c8feab73c00d394f1bb6c2a97b42d/pyevspace-0.14.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59b30cc1ff459125b182d8f0435c44d25056ab85d7347baec147bb76554ec479",
                "md5": "d6d1db5fcbc00c2b90fe1fac336b1fb8",
                "sha256": "996c14a59b83a93cf1ee6144638cacd22bfe5993f8aaf98d585ed24249c8b893"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d6d1db5fcbc00c2b90fe1fac336b1fb8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 73346,
            "upload_time": "2023-08-08T02:25:05",
            "upload_time_iso_8601": "2023-08-08T02:25:05.850585Z",
            "url": "https://files.pythonhosted.org/packages/59/b3/0cc1ff459125b182d8f0435c44d25056ab85d7347baec147bb76554ec479/pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bddb1421212e048365658cb231ec8e9f826a3f3cdd0d3753b5c8f3d16697955",
                "md5": "bbff34d0488b08777866e8f7826e6e9f",
                "sha256": "94b26450878967b187ae009abef02c89fb693ae31c57c389f525a6bffc94b7ae"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbff34d0488b08777866e8f7826e6e9f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 72982,
            "upload_time": "2023-08-08T02:25:06",
            "upload_time_iso_8601": "2023-08-08T02:25:06.973838Z",
            "url": "https://files.pythonhosted.org/packages/6b/dd/b1421212e048365658cb231ec8e9f826a3f3cdd0d3753b5c8f3d16697955/pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e40bbb67aea80e8152763da881ac4fa96ffe3e152c241fd722644ec85ec0b97c",
                "md5": "a485b4d8a4a3aced8b2fa37983885b91",
                "sha256": "b23c3c107d46d4c5967860a4a5fed95e207b0b9f59073dbb011cee7541336100"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a485b4d8a4a3aced8b2fa37983885b91",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 70213,
            "upload_time": "2023-08-08T02:25:07",
            "upload_time_iso_8601": "2023-08-08T02:25:07.932673Z",
            "url": "https://files.pythonhosted.org/packages/e4/0b/bb67aea80e8152763da881ac4fa96ffe3e152c241fd722644ec85ec0b97c/pyevspace-0.14.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0734d9df00269bb9579cc0b273e9296c697a104da50fb9e71453e6e5c00dad0c",
                "md5": "63160ca65e9ac8b3c3d5a6662ec74e36",
                "sha256": "d6fcf6556ab0d6c92d70e28508e4b3393d8ecce2eb6e0ccb24b9723033d4cbed"
            },
            "downloads": -1,
            "filename": "pyevspace-0.14.2.tar.gz",
            "has_sig": false,
            "md5_digest": "63160ca65e9ac8b3c3d5a6662ec74e36",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 41340,
            "upload_time": "2023-08-08T02:25:09",
            "upload_time_iso_8601": "2023-08-08T02:25:09.516794Z",
            "url": "https://files.pythonhosted.org/packages/07/34/d9df00269bb9579cc0b273e9296c697a104da50fb9e71453e6e5c00dad0c/pyevspace-0.14.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-08 02:25:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "qbizzle68",
    "github_project": "pyevspace",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "pyevspace"
}
        
Elapsed time: 0.13707s