Skip to main content

A Python 3-dimensional Euclidean vector space library.

Project description

PyEVSpace 0.16.0

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

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.16.0.tar.gz (63.2 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.0-cp314-cp314-win_amd64.whl (78.4 kB view details)

Uploaded CPython 3.14Windows x86-64

pyevspace-0.16.0-cp314-cp314-win32.whl (75.1 kB view details)

Uploaded CPython 3.14Windows x86

pyevspace-0.16.0-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.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (310.3 kB view details)

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

pyevspace-0.16.0-cp314-cp314-macosx_11_0_arm64.whl (80.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyevspace-0.16.0-cp313-cp313-win_amd64.whl (77.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pyevspace-0.16.0-cp313-cp313-win32.whl (74.0 kB view details)

Uploaded CPython 3.13Windows x86

pyevspace-0.16.0-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.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (310.6 kB view details)

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

pyevspace-0.16.0-cp313-cp313-macosx_11_0_arm64.whl (80.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyevspace-0.16.0-cp312-cp312-win_amd64.whl (77.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pyevspace-0.16.0-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.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (311.1 kB view details)

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

pyevspace-0.16.0-cp312-cp312-macosx_11_0_arm64.whl (80.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pyevspace-0.16.0-cp311-cp311-win32.whl (74.0 kB view details)

Uploaded CPython 3.11Windows x86

pyevspace-0.16.0-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.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (311.0 kB view details)

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

pyevspace-0.16.0-cp311-cp311-macosx_11_0_arm64.whl (80.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyevspace-0.16.0-cp310-cp310-win_amd64.whl (76.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pyevspace-0.16.0-cp310-cp310-win32.whl (73.6 kB view details)

Uploaded CPython 3.10Windows x86

pyevspace-0.16.0-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.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (317.8 kB view details)

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

pyevspace-0.16.0-cp310-cp310-macosx_11_0_arm64.whl (82.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyevspace-0.16.0.tar.gz
  • Upload date:
  • Size: 63.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0.tar.gz
Algorithm Hash digest
SHA256 afacebce6648068d563005cbb368f4c583e1ee5212f912b320f6774eb07c3a00
MD5 b7a8f9d063ed3291c083bfad9351918f
BLAKE2b-256 a1302807da4068a934e8a5a6bf62a5cfe778e04450e487625a449f2660dd7f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0.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.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyevspace-0.16.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 78.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 818811c081d94e5ed90863364774cf8bf0b1b613381f10668344048c24ea052d
MD5 130f0f569fd1bd55d2aec8231946ecc9
BLAKE2b-256 26fe956161351513c3890ba043eafbd7e7757e8b0cbe5d413ba75174af912dc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyevspace-0.16.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 75.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e32c733ad845ee3c673ff2178d81f39fd28e35ffc170e8a15fda3fa51e16d658
MD5 c1eca04cf8027d370b8be4d38ce01684
BLAKE2b-256 0eeccf3721d4e6c10c659026b30d91b6c7b338ecd8a5bd7f7a54869dfc1ccce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b34ad1ad5fc49ffd112a8142528122af383bc69633e14818618d1cc34b5d141
MD5 cd16a8d31f5f9bcc72f612f1ddb087b1
BLAKE2b-256 e8fc4f02c31d53bb1a6dd39b6a661c2bae51f1c74cd6aab489477c52c8ed6e79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b58a4c5a24a777840b6647a48415c390879d00437f58e2fbe5c95a9ca1cde69b
MD5 8345a352dd04baf8517d8c6ba654c75e
BLAKE2b-256 ca5f15dd9b48c9502927963e74039ef0b93c2af53c3cc29b8be4b294556d2dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cdb9f836536d863180d07b945bd7f2f8d130af0fc24eb06c6558e2d136146ac
MD5 c47bdd29e089081842f63d9621a08925
BLAKE2b-256 eee2584400dcecb9a1a2b3369e860998f2f7feaa462a775bdec094f30884e1e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyevspace-0.16.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 77.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3dae0689b93473077b4af7bed363ccb82712e38c03420c0b3002f918aed1bf58
MD5 cd730ff3e040150e6a51fac650369a11
BLAKE2b-256 04a4417156403e57c5ce1f8380d88d051de65b9afce70e3c12f30582eac980f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyevspace-0.16.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 74.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 959031fad0f64caedaf30cc86b5b7d168d4e75d1f95992ff3ce8993dcc76f101
MD5 04842616a1e01a7b5014e42240a1c03f
BLAKE2b-256 06c28d4748dea5925165c0270d5a04eb074919c3afe7ac1c951b7cce29e1de1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2772c51f0c700843a16023a0369be4f2c86af29cb29d5faf5de4e61f03dc7326
MD5 a25b49948ada0be7f150500ebe9ba6a5
BLAKE2b-256 40712fd8cc72d5adeeff298ce823fd5281ab09b7b0c93afe5aea95724ec84a81

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 275a4834bb1cdc5aa5e73f0c296a1e876ae8090c43aea9ca080a12bc9d680360
MD5 1d7a230bcfa51eaddd8a5fe430ae11c0
BLAKE2b-256 2ef499faaf6ac1b903274d46656d031e9d44a12602a45a637ecd6da7f32ea720

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5664db27d9ba4218145288a3e12db41f8dee49d1d8444a519e43cfef96153ea2
MD5 34c7d04136c66851fbadea92231084f4
BLAKE2b-256 a61f4924ab8ca61871c4d50ec210903e8146cfbabf24224b45c8af12fcec7d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyevspace-0.16.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 77.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ebffaf949b0aa49fee884f10e616dada70815a2fca0eb45697b8ecc250bbb1b4
MD5 76404e90e7ddb38b0343fb032aeaa0f7
BLAKE2b-256 068a9c7d71706206bda29e7a598cdbac04ba02bdb41eecf779dbe8d2fce896e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for pyevspace-0.16.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9073201b6efd9ba3149ad90317ebaaebc1e066e6e5826ffee0810f23e3af9bc2
MD5 6dfc83d7d7e98f7209741bca644151c5
BLAKE2b-256 f05ba112defa33c46bb1c0e3cba87be74d7c4e5488d759cca723ed1155d7698a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fb2a42302614519396b04589ba745f35fdb28ac5478318ebb8c0320401c6410
MD5 fe6bdf25f06311c076c1c68cd386ebd8
BLAKE2b-256 f522a6def5b5607d3a6ec0367848869c857930fd1715a3e07945a1513c04f1e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10820a133672da42d9184758f364cb67fafb0e9703e2f39ff177610824093ebf
MD5 dc6270caa86e5cf9703dd8785a638229
BLAKE2b-256 8774f36b2fcf0f611b903f7b1689c410637d64b7be9b38f7b9851bbd04579d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2eec0666e8ca6b11ae12ea3c81af268405fb3f811f03ff1a889ea0c7a06755f7
MD5 1eb92ddb505f3834a1e17f2d99408e60
BLAKE2b-256 a6adedf98d362392d4c89a9a4a09091d5b9dd33b28fa4ed17b7ccfaac74fc5e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyevspace-0.16.0-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/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6818f93dc3099d95ac3970dbbaa24314159188ff25da7a40857e2747c121c191
MD5 516d336010a3bb8de213c90a3cef3868
BLAKE2b-256 eb4f0c3c336cc7c9096b4edb6b1632ab9d8260b38b4b41bf710dc115a2c671f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyevspace-0.16.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 74.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 08c9985d0e1d97119465a58ae5883d42083943794ab0ab16b68d51bfdefeeb08
MD5 edba90c13117e798b745c6d4d3a3c3f5
BLAKE2b-256 36775f7667337ffd10c72d3e2377b703bb7cbc7664ec1bd40e0f10400ec3a72d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00af9e098adc97bf4682df1b5d29f8ce8e47787741820ea0971b3ab1e6cccf22
MD5 6a6ee47013553e2e739c899f89fb24f1
BLAKE2b-256 c5ec47b34adbf3437ca3aaf48d9b28552d833afc0a05f39157534f08eae324bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aed7d4e416bcd81a6b686b19572c1bddd683524164830d7280ea3790ded910e3
MD5 228338b50a8adda093f4ec529e099a0b
BLAKE2b-256 94d0ac11c8e2a57c2e90467d04a723d53f16597e45fea2523cf065fd45ead536

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a996b74d1c5cdde9bc5b3c0a4a9bcb82be9b560bb35f27474874ac19f3091409
MD5 5add02c295878b99ba571fa3c0d09afa
BLAKE2b-256 622c46309c17779ca887f4ee3077cf6025555344d6dbcc07623a136c5541e729

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyevspace-0.16.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 76.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d0c8d12aee6c8019b588a39df448f58d9018662ceae67c3d0aec202343f4224d
MD5 34f5e8e50bf97d7ad9074e0355f9b565
BLAKE2b-256 52b1a7db6c9cabff4e8dce75df9b5973280c058e0e9f3800d633b57cf97de2e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyevspace-0.16.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyevspace-0.16.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ed6ac4a180d619b0c493ead1bdba9f6502bf24c5eac63467eef512619a53df59
MD5 eee03fb4d1dd0b2c6d2b9803feea7be4
BLAKE2b-256 ab67f052ab4bf79d8417ea7ed56eafa70506a43ae969aaaa55cf0e50812cdcea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9eeb88695da82e0f5a0dfb85fde9f1a381eefa72a9a7778e41e275665927b8e7
MD5 7bd019c7775bce536470fa96ddb78f57
BLAKE2b-256 6eb014eb293234a6ef608cec3a8452aba1ab45f126b6b6f8a7b11f491b2685e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2305b3e93d442716ebd44be6488bb38466571a0f07456eb0743f6dd94f67d262
MD5 08aac68645230bf52fefd9d7d79b25b1
BLAKE2b-256 2e87ed659ae97905efc84fa22a6aade65f995c2a14db923d1c51e00e711a18d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyevspace-0.16.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5aeca03bc73ecc3ada887e312058fa894f01bf5c9ed612980266691b06a79e6
MD5 4c59eae01dcb9b7551ed4fe0126a0bf2
BLAKE2b-256 49f0d91c101f75829df8b075453c1516e3bd4ece754dd91181c8a33e7fdca7ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.0-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 Pingdom Monitoring Sentry Error logging StatusPage Status page