Skip to main content

A Python 3-dimensional Euclidean vector space.

Project description

PyEVSpace 0.14.2

Github test action PyPi Supported Python versions License

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.

Install

The python module can be installed with

pip install pyevspace

Alternatively the repository can be downloaded or cloned using:

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:

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

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).

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

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

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyevspace-0.14.2.tar.gz (41.3 kB view details)

Uploaded Source

Built Distributions

pyevspace-0.14.2-pp310-pypy310_pp73-win_amd64.whl (69.9 kB view details)

Uploaded PyPy Windows x86-64

pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (72.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyevspace-0.14.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (66.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyevspace-0.14.2-pp39-pypy39_pp73-win_amd64.whl (70.2 kB view details)

Uploaded PyPy Windows x86-64

pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyevspace-0.14.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (66.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyevspace-0.14.2-pp38-pypy38_pp73-win_amd64.whl (70.4 kB view details)

Uploaded PyPy Windows x86-64

pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyevspace-0.14.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (66.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyevspace-0.14.2-pp37-pypy37_pp73-win_amd64.whl (70.4 kB view details)

Uploaded PyPy Windows x86-64

pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyevspace-0.14.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (66.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyevspace-0.14.2-cp311-cp311-win_amd64.whl (69.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyevspace-0.14.2-cp311-cp311-win32.whl (66.2 kB view details)

Uploaded CPython 3.11 Windows x86

pyevspace-0.14.2-cp311-cp311-musllinux_1_1_x86_64.whl (159.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyevspace-0.14.2-cp311-cp311-musllinux_1_1_i686.whl (144.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pyevspace-0.14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (155.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyevspace-0.14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (141.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyevspace-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl (68.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyevspace-0.14.2-cp310-cp310-win_amd64.whl (69.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyevspace-0.14.2-cp310-cp310-win32.whl (66.2 kB view details)

Uploaded CPython 3.10 Windows x86

pyevspace-0.14.2-cp310-cp310-musllinux_1_1_x86_64.whl (153.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyevspace-0.14.2-cp310-cp310-musllinux_1_1_i686.whl (139.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pyevspace-0.14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (152.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyevspace-0.14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (138.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyevspace-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl (68.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyevspace-0.14.2-cp39-cp39-win_amd64.whl (70.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyevspace-0.14.2-cp39-cp39-win32.whl (66.3 kB view details)

Uploaded CPython 3.9 Windows x86

pyevspace-0.14.2-cp39-cp39-musllinux_1_1_x86_64.whl (147.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyevspace-0.14.2-cp39-cp39-musllinux_1_1_i686.whl (133.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pyevspace-0.14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (148.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyevspace-0.14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (133.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyevspace-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl (68.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyevspace-0.14.2-cp38-cp38-win_amd64.whl (70.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyevspace-0.14.2-cp38-cp38-win32.whl (66.4 kB view details)

Uploaded CPython 3.8 Windows x86

pyevspace-0.14.2-cp38-cp38-musllinux_1_1_x86_64.whl (149.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pyevspace-0.14.2-cp38-cp38-musllinux_1_1_i686.whl (135.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pyevspace-0.14.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (145.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyevspace-0.14.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (131.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyevspace-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl (68.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file pyevspace-0.14.2.tar.gz.

File metadata

  • Download URL: pyevspace-0.14.2.tar.gz
  • Upload date:
  • Size: 41.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyevspace-0.14.2.tar.gz
Algorithm Hash digest
SHA256 d6fcf6556ab0d6c92d70e28508e4b3393d8ecce2eb6e0ccb24b9723033d4cbed
MD5 63160ca65e9ac8b3c3d5a6662ec74e36
BLAKE2b-256 0734d9df00269bb9579cc0b273e9296c697a104da50fb9e71453e6e5c00dad0c

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f599658ea4017b115b2cef9c332343de6b9b9a1b12e0022e30b6612c49f8c89c
MD5 54eb04a6b0bf4053d59f4122bf3ac5ed
BLAKE2b-256 647653bcbf7eea8fd9f4fdadc93546e6f2c7f956567a4d4d57ad316e355d9987

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 115f292d0505c137ce745dfb577ae2f0d73a42cf0bb2f09a5072aa2a2911f2aa
MD5 d3aa39961d879748a11d1da4eafd541b
BLAKE2b-256 8ddf4ac3a07b75cba7203b604b67549555ed7d565004aaffa6be1c6c5559923c

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 857fc6ffbe6ab9268ba84a75369adb3bc3d0c4363fc3f91c0d5c68e33888ba98
MD5 fc521816aacd3706e74e653e0c5f4f70
BLAKE2b-256 28610408f73b4ad357aacb7eea100dd7ff9155e7f8246a40d35018b1a6b96aa4

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e0597933f1c148017b847b5300997da994809647fb9d94f10b8a9f19e742ce8
MD5 eb1433f1d6942c62ea170a6d4708d97c
BLAKE2b-256 8c2623a30240dbbed46a5419169eae288f843e8f92e0bf15f4f571cc2a99f41e

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b23c3c107d46d4c5967860a4a5fed95e207b0b9f59073dbb011cee7541336100
MD5 a485b4d8a4a3aced8b2fa37983885b91
BLAKE2b-256 e40bbb67aea80e8152763da881ac4fa96ffe3e152c241fd722644ec85ec0b97c

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94b26450878967b187ae009abef02c89fb693ae31c57c389f525a6bffc94b7ae
MD5 bbff34d0488b08777866e8f7826e6e9f
BLAKE2b-256 6bddb1421212e048365658cb231ec8e9f826a3f3cdd0d3753b5c8f3d16697955

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 996c14a59b83a93cf1ee6144638cacd22bfe5993f8aaf98d585ed24249c8b893
MD5 d6d1db5fcbc00c2b90fe1fac336b1fb8
BLAKE2b-256 59b30cc1ff459125b182d8f0435c44d25056ab85d7347baec147bb76554ec479

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1bcc3ac17b8f425604fa5444e687e2f6bc29846e6c56a01ec311e616eac53dd5
MD5 6405ad27a33f837faff55632024270d1
BLAKE2b-256 934665f88efa28e7fa0e2771c0046eae264c8feab73c00d394f1bb6c2a97b42d

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 482757e315c550cc9a6ab6b84fd41e849733ff865140cd6d514dd32dc01cf089
MD5 4af663f8ae77436b157440405015db6d
BLAKE2b-256 f29db998534dfb0edc020f0cb0c5c42f906e5076805370e4dab3c01b2ececf90

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f789bfb469488aeef4d6824b1d3ea1c5ee455b993aae54ce3d983bd2fd972ce
MD5 4630660cb59e5bc75c4c8a487b2c4008
BLAKE2b-256 a187856fc5cc6f3df0212e39f1ff70e6722285123feb80bad319c778217c0684

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d6948e9b1a57242c3a1deb170059cc98773ebb568ca85e8c8cba24de52eb7eb
MD5 1a74e2c3b5c69902d084260b2ea9249c
BLAKE2b-256 728dcd9c62c9ac182a3bd460327e2045a0fe4a3a973fb506e5c36e7a85ce7526

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce8692cc84f90dd32919a856481f678eb9ca09ec35f0d3e1bf84c4a1d2d24d36
MD5 1a9459016fe9139cc25f4e55f7a19920
BLAKE2b-256 f0ed61be3607fda4f3dc51de59bcf932d9c74bee406bc0bf7d44c5dd1b60105e

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 23f3631291d541c8e2650670b47af622c1d3b24c6ecf39982b42d84d4e562282
MD5 9c4b3364e0b418b6ae5f72181220761e
BLAKE2b-256 fca9ebe52366e8abce74e3769d657e34734e21d115404a55b153f020e6d16384

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15cda3517987b1f970df6232dd26f4b4711251694f1e76e2b186f72b8a2e6922
MD5 a95ba9c399a069c01e333a6c14a431c2
BLAKE2b-256 1376bbd6153612cf9116ac9463172d79b6c47c61b797b6abd7e2536461b4e30b

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e355aba9eb6d6e4ba8ed054c5f31586bdd1b96ab5ad31e297fd839ff1a6d4948
MD5 30b8f9cb09cb529bac909cdfe16b4e3b
BLAKE2b-256 936dc9921c14928538aa17fbcc6c495a3efac5f2e51ad330d6ec37ed012c974c

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc95f9d8cc225eb9db7baeca6f7656397da56a58310d4276d29059bb15055ce3
MD5 788471eab1baac3659330c43a55bcfea
BLAKE2b-256 4e451fb56b09fdc964339eebca3dc841af6f66a30950c9406153aa3732b2364a

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b16c165af9f11427dd2344102e5e391efa0520db998a79480280428bc815ef2
MD5 4f60498e682c8289328b73c4614b947b
BLAKE2b-256 c06b5a8d531e4244b3db0aa932cf47137d7d4f62d1717833a2cff8f41ebf75c4

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyevspace-0.14.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyevspace-0.14.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 16967a2167063db94ac55d4273f9b46d8a47da963815e137277f9795ede89306
MD5 d06a9af685cea9b9d502c1945d50bffc
BLAKE2b-256 8ebd5d82fc8b8536a2ce5bcb383ba2b2fa91164c8e9a6f45920a2db8acc89ee8

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82a62b029ea40035f76db97643505fc8c39fd87f6ec848231688663824333e17
MD5 dabda5ca6f6913f98d6f4650b9d88443
BLAKE2b-256 ec4f5d6fde62c1ddf7cf84a631db9f9fddaf8048d7438f9d730256f23d329247

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 23aeff2cacd83fcd1e54f795c5c7d51c85127192b480a38e54da7a8ca545fcee
MD5 4430ec013a8a66c0a4dd2ee55abf335e
BLAKE2b-256 0a911845aa8b6bb48f44d49c3dd1b197fda5d45b62b3a3196c02056b83a62224

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f97fe3a60a067db216a84fc50b773103245a7f2ce2a990b58ac41df96bbdccae
MD5 b31bd37239f09885b51689e7484b5f04
BLAKE2b-256 0e6951917e4680a4a8fcfa45779fb6958212ea0668b9fd87af5c0d684b6990fc

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ef6b0c2bfc10e23c33020b9afd4795d259a8ca47992a0ce6252faab80733d55
MD5 941d90184480afcf3556b1771785694b
BLAKE2b-256 efd7b297b93cee3362193e5d7780d83160c46938c41016339a44fe476daf0561

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34d4b1521a17fffa5c6e0a477d84096d38ac9765713b33664fc8c45acbf4774d
MD5 08b4f3783bd3afa9726f5f3143222047
BLAKE2b-256 8f5488603c70b9dbdaecf23dfebf32311e2dd87040cbdc38694efb03dd680009

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f0d4211c45995df810e4bbaa768ba4bfe6dd7d5e84f601c8c7842515b72b4f7
MD5 e09a0b3e287b308318d1343eeb5c4624
BLAKE2b-256 b02e18668c3325a2b196e69b047bc0d490ab83753bd1fb6263696e04652b4884

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyevspace-0.14.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyevspace-0.14.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5dc50eadd34892871fda7aa2e1e76fc689cf78a6d561d435ba65a8b5cd1d2777
MD5 4e0df1e96e6abdae851a60af5b446b86
BLAKE2b-256 921938e18a05dfbfcb52e49c5888721062b0e5951f825d3dcbb503828705d182

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea33c784d4a4bdcef3638bbd214b280a0198ff7785cec7b6c9d93632c666d2f7
MD5 77cb6ff8387d7df0818b26295f0df9e7
BLAKE2b-256 fbdf7b1a131ff3b4e7368d6e93501827cff7f31e80327bbdd3a0c56291e461d8

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0cc6574227024dbfe195c387acf4011f081a4c426d219b32d9446adb668407fe
MD5 35acd0695e7177c3e0c965d8dbc0af2f
BLAKE2b-256 0c32834d67c9e41f5ef2205f5eefced877e91592fdd661a079e362e06e324bed

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bce298cb2513180176e727bb344e0b146cb8b6c35f6376beebbfbd603967024
MD5 447f47c8a19bb50e04d793491ba6c823
BLAKE2b-256 9f6a194aab69f04ba054a03fbb42e147eb9a71a94a3101377c13913692cf4a71

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67a74bc9cf8e54853a4034ff1434a0d2de762c73dceaa7fc6b859660760df20b
MD5 37efd012ec749d2f1a50ce56e2ba6d08
BLAKE2b-256 2322403f049bfc96a74b566d021305b84ec023ce9a39526f027d7cdf8e55f9eb

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cfef26509dd20b10af78f95e81e1173199d5b9482a762a3a130164e976ba79fc
MD5 e4ae2e66aea8bb24731876c6c82e866a
BLAKE2b-256 e226dad2d67b0b7e876e044454ed13e4dd7b18e3e7d793e91eb56fa984afd806

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 00bd20fd668cc25be532cb25e416d9c843a3dfdddc85972b23107b0b17664c48
MD5 5a579959f60b199f30c1cd8168b68dd5
BLAKE2b-256 b1cc0fd9c240936baaf19607322e6bc49a5af5352e754db61daefddd555221cd

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyevspace-0.14.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyevspace-0.14.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9de48949c081b3095e49aaec47d9e908c78150a2f128a10c71a6679042a6aa97
MD5 70c4ce6a1736736e2bf4e5557c764e45
BLAKE2b-256 e6399c1fab5783756995a96e25e7e1bf5c1fde205e46b7b8656ea6d4a7eeecea

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f7c838d50f6656e9bd89f94d030cb4cc879b092e4991bd4590e8bd3d81a0066c
MD5 d5d105dbc407e9cdaa11021cd812cf79
BLAKE2b-256 4609f293c46420c6ed08afc114f72734cd15bfb3946fd2c2a0880c0c475eb0c7

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 739b53f51017b79bcd9e89d51553da2c25e1d1943173d3d7bd798cb3bb083076
MD5 90a50641f7556684b0671d6ee43189d1
BLAKE2b-256 793b0a28937595fc8f9a1431ff4372e8598bc64fc2c0e7e63f461df636a99fa7

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5876b0769b7b8aeec1bcf7fc68971a704211be7e300892f94a2ac9ed23cbd6df
MD5 90db75e86b8607c5e836056ff0409631
BLAKE2b-256 186ecb56953761ef3a4db98b9675a195f1c97d21d262c9742789e9ddf0c73e89

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91172d8fe2c76ef008e26414ce570af9d18d0fc55b1021ce03381fcd88fc6e76
MD5 38a25351d1d7088d8db9bc5e4951ff9a
BLAKE2b-256 db863cb11f722497267ed7d1bba761d7d70314a9e663eb7f31a9acf115f637f4

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 945e75ab0a3f2d3c6d87ab450abd31e45fe164b802be61e75159c2931bbfcdae
MD5 1ffada4b7fb87a3ae8ca1af36543f2be
BLAKE2b-256 05ceb59193664640c692841e0df19ffff4c1119176a3dd44516b8b9a0f943e99

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cba7bdd76ed2952dba467dcdf31bdcecedfc7def322a364524da442161c91292
MD5 f211adb1af4ae7aa1b56ed20512e15a6
BLAKE2b-256 645643240029e3883756019c50319ab34f1120ee07eb6fb2b28016ce76ecb1c1

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyevspace-0.14.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 66.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pyevspace-0.14.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d61fd638017061ac05fc9c5849fed12a7810d79c76f95e57c737ccc49dcb1663
MD5 559e824559361a159725b7e09e0be9b1
BLAKE2b-256 a4b74db20677a180cd0a72ef447af44d1ba2eabe804a1711d8bed08484d42e83

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d0c1c78f011ed98885d1940b1363305bc2d68c88549178acfc779141f76eea8
MD5 427a13d92029e0757f8f69aa50588002
BLAKE2b-256 c4e9eaa72c8e1e6b20afea95f97eef2a56206b156457aca3e146ac01b6d2781c

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cc11a5325a89fdef2c01ccc42a0ac38634c741cbb2c451321f11819bb2eba735
MD5 b78becfe8d75dbbfd63554bf4b5abea6
BLAKE2b-256 4e1bd0f6b57c4a0c88f80961574339b2bc405ddb01c1dec7a6765f5691b799b7

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29ff7143418e1d8f13f91ac7ee1fefea50999007d6c3096b41d09722bf5b45b0
MD5 f7bdb3318ad1b770603030a7ab0ce643
BLAKE2b-256 e17570e2153e18c974ba47c0f8e77f074bba34684fd1ec06645fec6443a16843

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 200269255fe812df9079ba5c3bb0abfd1003aa9f35da50cb90ebad146b6e0629
MD5 011f719d59918f4013544f1a7e8b38f3
BLAKE2b-256 216ed23f659cf21e18ec0d9ce599cc3de2a0146c8ef1eebe2c02ced16a010561

See more details on using hashes here.

File details

Details for the file pyevspace-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fddadcd350db5973c62c024dfa4c57b61fca2044aab806686a77e1755d2f145a
MD5 72b68253099ec88caa0b3acdd39256ac
BLAKE2b-256 9fbb178893f33a08e6a3929d47e4faff6810fea6077b5a1ad779be90a325e4bb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page