Skip to main content

PyEVSpace 0.16.2

Test 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 optimized for 3-dimensional space only, and ideal for projects and apps modeling real world systems.

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

And installed with

pip install .

Usage

The package defines a Vector and Matrix type, that behave like containers representing those types.

import pyevspace as evs

vector1 = evs.Vector(1, 2, 3)
vector2 = evs.Vector(4, 5, 6)

result = vector1 + vector2
result = 1.5 * vector1
dot_product = evs.vector_dot(vector1, vector2)

Matrices are used for rotations:

matrix = evs.compute_rotation_matrix(math.pi / 2, evs.X_AXIS)
vector = evs.Vector(1, 2, 3)
rotated_vector = vector @ matrix

But a suite of functions can apply the rotations for you:

vector = evs.Vector(1, 2, 3)
matrix = evs.compute_rotation_matrix(math.pi / 2, evs.Y_AXIS)
rotated_vector = evs.rotate_to(matrix, vector)

# or avoid computing the matrix yourself
rotated_vector = evs.rotate_to(math.pi / 2, evs.Y_AXIS, vector)

More complex rotations like Euler rotations are supported as well:

vector = evs.Vector(1, 2, 3)
angles = evs.EulerAngles(1, 2, 3)
rotated_vector = rotate_from(evs.XYZ, angles, vector)

Checkout the API reference to learn more!

License

MIT

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.16.2.tar.gz (63.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyevspace-0.16.2-cp314-cp314-win_amd64.whl (78.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pyevspace-0.16.2-cp314-cp314-win32.whl (74.9 kB view details)

Uploaded CPython 3.14Windows x86

pyevspace-0.16.2-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyevspace-0.16.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (312.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyevspace-0.16.2-cp314-cp314-macosx_11_0_arm64.whl (80.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyevspace-0.16.2-cp313-cp313-win_amd64.whl (77.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pyevspace-0.16.2-cp313-cp313-win32.whl (73.9 kB view details)

Uploaded CPython 3.13Windows x86

pyevspace-0.16.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyevspace-0.16.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (312.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyevspace-0.16.2-cp313-cp313-macosx_11_0_arm64.whl (80.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyevspace-0.16.2-cp312-cp312-win_amd64.whl (77.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pyevspace-0.16.2-cp312-cp312-win32.whl (74.0 kB view details)

Uploaded CPython 3.12Windows x86

pyevspace-0.16.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyevspace-0.16.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (313.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyevspace-0.16.2-cp312-cp312-macosx_11_0_arm64.whl (80.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyevspace-0.16.2-cp311-cp311-win_amd64.whl (77.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pyevspace-0.16.2-cp311-cp311-win32.whl (73.9 kB view details)

Uploaded CPython 3.11Windows x86

pyevspace-0.16.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyevspace-0.16.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (312.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyevspace-0.16.2-cp311-cp311-macosx_11_0_arm64.whl (80.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyevspace-0.16.2-cp310-cp310-win_amd64.whl (75.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pyevspace-0.16.2-cp310-cp310-win32.whl (73.5 kB view details)

Uploaded CPython 3.10Windows x86

pyevspace-0.16.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyevspace-0.16.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (318.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyevspace-0.16.2-cp310-cp310-macosx_11_0_arm64.whl (82.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyevspace-0.16.2.tar.gz
  • Upload date:
  • Size: 63.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2.tar.gz
Algorithm Hash digest
SHA256 4704045e0d749bea81726a57313d9101e62bf4b507c7659439f7d83cf6577acf
MD5 213e29dbd34a72799284c8b31dee88b3
BLAKE2b-256 c5383ce76b9c43474fb4d84fa8da92b3f93052398d8d7da042cc71b496e4c5a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2.tar.gz:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyevspace-0.16.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 78.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd8acec7064ea1f68b208ccf014fb432db8678b07e304b99699ea08c6c1b18ae
MD5 9be58f88c6c772ea039cda4b3d5903d6
BLAKE2b-256 bb85d178d3f9eb5d6aeb5976a6103ca15e3b8f63b240fc0cd901e4732c6f104b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp314-cp314-win_amd64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyevspace-0.16.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3bafbd67dcf3ed3bd612a009adfdb82b072b97a533562a597a46bb8531a8613c
MD5 910baf2ea223fef475745ed9dd566b30
BLAKE2b-256 384695729a953df498c900f1bd441dd40c795b6a6b90a367f0bf74f26b68d1d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp314-cp314-win32.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc9365fe1d4ed192a3057e8b7e7d8a361fe07fa4995edbb82e4403db98cc0cf6
MD5 43c7c089b5a549f3423c8d5f42649d85
BLAKE2b-256 bba6c7517ffdc90c83c2c59e3c9bf5b593fc501691ebe66b112b8c0e5cd2eb1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26376119c75351278b924b554590d52f50ddfbb942b0fb2612a202e9c6f50bcf
MD5 47bb7610282d696671d3befc3724e8f0
BLAKE2b-256 3a0e83d8c86b0ca33d89f265edb3bf80c1c63cab3df733c964223fe2ea991ffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06e91558635174929371875b2adc2741837157298b5a90f0afe15705d64959e0
MD5 f1f0422268f6968c6c94ed7bf0dad2cc
BLAKE2b-256 bb28610440f5d404f52b53f9de2d07fdff0a0230f91f3c07a5ab0b38b52ef920

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyevspace-0.16.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 77.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 48db06be1f213905b8ac0a6960436f2e1e6aa7ea3f09d6b7363857b79efe36ff
MD5 139f730956a41897cbc1da44f5e13518
BLAKE2b-256 1242395661fafefa20b15615eeaf34ac365cdac22b1211b7c9137bf17f597335

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyevspace-0.16.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9ee14adb396b3a1f1ecda3b8981cb7844a632fe44f84388498fc1a21c7bb66c5
MD5 998cbbe1637dcc3213298a3a1df36ccf
BLAKE2b-256 30b6e1d550dd939e080d73a83e9a089efd3d1c4015b989c5ec4715f2c0592cde

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp313-cp313-win32.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8123b4221e48b97c70cc853c5ce7a843d10cfcbb8c9cbf1f555fa9b10d1a18d2
MD5 3d2c7c3fab510edce78d2f836e1326ac
BLAKE2b-256 d84acc0ee9cce0b37304583bc0fbc0e34bb1eaeafc021d9d79a33012c5c5920f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f453d5aba7bd6867d6c8250b65ec73a541da6115a26f19142431f8a7e0662228
MD5 7b07207caa818588979444e83c50da62
BLAKE2b-256 254bc512412c3bc4fc17244ce1b12fd093e4afce5c0c3a353fa449b7d5569ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2728925a087a814637164f3f39260653e5dfecc7c6089f89a8eccdff830dc4d4
MD5 aee0151a5ca1ec9ef771c7b13fc55b8f
BLAKE2b-256 9c9550da77abb5b985fcd5c139c4a4d0d8dd74128c8b9365c3ac87ec4c8cb1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyevspace-0.16.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 77.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52bf7e7df1bbd5516bf4199e7e25228691784eda7b76eb506e15199f68b552d7
MD5 15f0a9e8ac55990aa00ee895475f645c
BLAKE2b-256 36f2c797b42f3014bb1115081b59a8801619553df9229f3e066a85bba76664fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyevspace-0.16.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 74.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1ad1d2e085d2df5c8ed7c211ba87f937429b0162e34c088ea4d5cda1da5ae251
MD5 12e2886a615d3d01d226aaf35b3125e1
BLAKE2b-256 00185ce30d99eeaeaaa9de13734600f1229e301561cd2dfb67ebb2ca1a305321

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp312-cp312-win32.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4a3c04aef10f866ec524eb78d743fe9a1e224aff202f217694f64d561be6506
MD5 afb8a7816f6810a3ec741355e58ce17f
BLAKE2b-256 4bcd35513612c35b5f8edce3939fdbe6ee8975201c2ea926cacfe5b2975e21e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 583f2c7e962fc860e924e10bc05e153a3b979a07490e6f77c08fe864dc329df8
MD5 4d0b2c045ed4bc287ce9f7289871000b
BLAKE2b-256 7d6f0be6bf943d3e2cd7789722aa3bb7be393b78263c99d3078332e456248e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 632372bce7c2536f6a5daf6f60915712eb1852a4b6e1d00c36c043a4642c8b13
MD5 2388d1616cb595f88ca3181bc03267d5
BLAKE2b-256 32f82168ccb27e792dabe843c33a9743ab1d1db8b7a7185b0964dde3c11da719

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyevspace-0.16.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 77.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7da723857d75bb3fc799200d929675338136efb4002f4361d8f9aefe753e2fea
MD5 23666f830b11cf34d566d33fe4bf6a6c
BLAKE2b-256 2f96388bf37df81afbceea09913cb90697150bdb27e92ef91576c6e0c4a39e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyevspace-0.16.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9370eab5be5d50977b87f502ffc3898420a42d69e59c63e28c34a9ebb4d8fac7
MD5 f0c69753e183813f10187b922dc9a4dc
BLAKE2b-256 eb60dab3cf6bac905a9e4b809945790b0f51a3902770daf2a6d478da63651bfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp311-cp311-win32.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bccbb85ff7022ff44f082efb0de6382dd3d5cd74d83c083997d814a3d1e61b4a
MD5 cb9b48b95647b9ac82fd46a6c66268df
BLAKE2b-256 79807e6f1b7f1ff8d5c744dc99f40020f85637a039e3fc0babdb0f0daf128ea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fdb5f99722e77d9afd173aeeb93b901956449e5879ec0ef384e9b675a131b5d2
MD5 5354bfcc0df1b78d9ba9b94d6f92c4c2
BLAKE2b-256 13241c118fac08a645e5d7c17020dc3b40abfb97806cc06e0bffe3ddd6753a2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 046b45abecb8e196d9ad07f077240d9053257ab9429c3c889d3ca2460639457a
MD5 730caed1e9186326d365884bb41f8e18
BLAKE2b-256 9dd6dd6008eb0525c630b57b612733712dbf127f1da938dd3f5335902c4b1458

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyevspace-0.16.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 75.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 606ef5cf943875cff03d698dc8b69ee0584e48aacf6d3e8ad96810696dca25a4
MD5 69d043eb2997879de05adc418b86626b
BLAKE2b-256 ca0f06c151e0cf21ea8fb0bcb4dd4a9b8fdf5712bac03503bb5bb02cbc53bb42

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyevspace-0.16.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 73.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyevspace-0.16.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 92d5911b91855c4f411d85ace70bfe8066fbea7adda4239c9eca7eb22b56cfaf
MD5 95e726404aad254b3d268716b9a444a7
BLAKE2b-256 6a37c3278abd4996ab9d145c58f4aace9763da2233c611d008fe4903086fcef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp310-cp310-win32.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 254f0a435931a0417ed231c039598b2249c90e8f33053fa329352fd2a3972491
MD5 26ae81bdeb73980b61d3fb4a458235ba
BLAKE2b-256 0133d5435c6baa5bcdc8c2bc462e81c65f8dd5bff7c625f895ed7aad4c421b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c826ee4610c1bd3a4392f6e6e09b6a503029ce218b861fe01e0cc117ac95112d
MD5 c5e235b68f1ae58082b2346ecd65fd65
BLAKE2b-256 51c57d84a17942f57b5c458939a41d63a1f3c33257f9f21c96c9ea3af25c90b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyevspace-0.16.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e58228657c7e439c0fd9d6c7719e631b86b9bfc28b10c527fd72f2a449c008f8
MD5 fde3bb0570fdddb5fc1a223460777198
BLAKE2b-256 6d4db4413a595bfb03667f54561b0f2b8aef37ba0ca366ef91436f92725cf3fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on qbizzle68/pyevspace

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page