Skip to main content

A Python 3-dimensional Euclidean vector space library.

Project description

PyEVSpace 0.16.1

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.1.tar.gz (63.3 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.1-cp314-cp314-win_amd64.whl (78.2 kB view details)

Uploaded CPython 3.14Windows x86-64

pyevspace-0.16.1-cp314-cp314-win32.whl (74.6 kB view details)

Uploaded CPython 3.14Windows x86

pyevspace-0.16.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (80.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyevspace-0.16.1-cp313-cp313-win_amd64.whl (76.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pyevspace-0.16.1-cp313-cp313-win32.whl (73.6 kB view details)

Uploaded CPython 3.13Windows x86

pyevspace-0.16.1-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.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (310.7 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pyevspace-0.16.1-cp312-cp312-win_amd64.whl (76.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pyevspace-0.16.1-cp312-cp312-win32.whl (73.6 kB view details)

Uploaded CPython 3.12Windows x86

pyevspace-0.16.1-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.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (311.2 kB view details)

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

pyevspace-0.16.1-cp312-cp312-macosx_11_0_arm64.whl (80.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyevspace-0.16.1-cp311-cp311-win_amd64.whl (76.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyevspace-0.16.1-cp311-cp311-win32.whl (73.6 kB view details)

Uploaded CPython 3.11Windows x86

pyevspace-0.16.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (80.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyevspace-0.16.1-cp310-cp310-win_amd64.whl (75.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pyevspace-0.16.1-cp310-cp310-win32.whl (73.2 kB view details)

Uploaded CPython 3.10Windows x86

pyevspace-0.16.1-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.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (317.9 kB view details)

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

pyevspace-0.16.1-cp310-cp310-macosx_11_0_arm64.whl (82.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1.tar.gz
Algorithm Hash digest
SHA256 74ff34cac8fc8b51989666f420e080c9faf32477e0fabe0ff243dbbe427757ae
MD5 f701262ebd7c27dd46a6913584f47e97
BLAKE2b-256 9bd83812d6d00ea46dc275e76650c2c20034082924663913f145dcdf74feb7b2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 30b78a98b3bb274c3e8aa8ed00306a27635ce9fb6ffa57647b9f1b101a59cd3d
MD5 f92cf38b790046fa78d0284dd8ecaa19
BLAKE2b-256 5c479f1d9737dd40cd87a947bd8c47b30a027b6c72926edfbc0298b0170cdbcc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fd951e69c4d531a69ce84f461822c36aa6e9a9f6443a592dee944218ff7ccf5c
MD5 4741db50acdbbf42546eaeaa7853ae82
BLAKE2b-256 96ea813e21fd0360ab503504ec73325562b19caae3e3a07be1280b4ef4dc64c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c9f9c6021092a1c63b66836cc3cfaee26381e7e6be062ac1f49fc17299a4455
MD5 3ae364e5eeab082e2043400430e6d89a
BLAKE2b-256 543220bf2909d2904cca5cd0ea7a8f1f64ffb65cda71bcdad4e3bcafe92851e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe49e798587af7eee3ce273017ed2a75789fa7c3b1643839feed2e8ed49f7daf
MD5 7b87a7436e09ae5333444c135c2ccfe4
BLAKE2b-256 f126aa5eed941dac67947371b1d2942327434ec76e18b3d1cf3045e652a10544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df241a79b22a60a91b76373fdf0d327b5f7a3829c4d1a98fe2eb8d3d3673d6ae
MD5 b1dec717b6272018a7fcd63bd0f95689
BLAKE2b-256 d83d2ac9242c89fe6b37c50c0ab5cab10767a796e0c4176763444984dc0c20ac

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92c8b9bdccce216daa2237450633829727950e7867a72af1165182654f71a6f0
MD5 e2b72ddd01a0905bbe3d7bb4095a6681
BLAKE2b-256 821c49cc57b694858fab10e80ed3b0d86a321fbcf60844c343b733a8e4bfde03

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 72be5e32d991fe3f111440d8ff2066fcd145a83a58f7f6d89cc46275b9d6cb5b
MD5 d113dc38a2e84378684c95da2b8f061d
BLAKE2b-256 a18c891a7b18952656c5239cac843e583b9992dc68c9d75187494cc8e99d367b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9882d027024b9870d989b03fa9dfe1d127e60d41d02268ee23150763045901d0
MD5 79781f26d55c5f8c8a1fc5fabec418d9
BLAKE2b-256 2e60b1343e9e42a6fb536411dc8d459bfd77178f14289a9eabc563bc49c5679b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8da3f630bb39da008fdbbf9eff0279e16b77246f37c68b0bc927d38d3db7f17
MD5 1b13b4940397c2cd70f68588377a77f4
BLAKE2b-256 347a027c266cef8e3c2666b0b1538da2acb18ac5794ec9acf7669adcad56f411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2a6ef4c950eb882a874f6cc6228f8a8fbaf472d7615e4d44b3f360587febe2e
MD5 041069ba3bcaa71b2fd3120eb24c537e
BLAKE2b-256 ba4e08299301755815e110477ab0e774b4a9af5f8bb000c87d540b8f23ad1556

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3892e95f09fb03a856b799220fcb51353ca64f0fff775f5d46c25304a3b9f81e
MD5 3d3de9bede1e087ab5d98987bfbbec99
BLAKE2b-256 d2bcd9763f5d6a00232fb2de6be0063f6d266bd53a9499ad0b33f8251d279ff5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4905f41781f05c79fffcb48bb526c793fff54049f874bd7436603df0335ee8c9
MD5 4bff864d0d22d9e19230e791fad2f216
BLAKE2b-256 ad88ac98c69151bfdb721e793949a612ed299923b240e7f0c0e1f34211d6ab3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0641568010d9f9692684729725c36a490f3b4852fcb513d4ec6f26808d9420d
MD5 65fc8dd4b02716bf4c5276cceccfff5b
BLAKE2b-256 2b1bce1b62bdad3e2ae9a0b85f2c0f674c0509413a3b018392b99ee3454cd29a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6501183514ea011f9d75c704370ed6d58305f8408901ac169c2d5dafc395f98f
MD5 13f23b26c6650a8082e18bdf02bde51f
BLAKE2b-256 7590d1128e9427ffee9bc500c0627061677249712824bc1b8f437ecc5e81bbd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 765e284ad5a8916045df5c8d033e51c7368a760f144cd16605f94054ce699b7d
MD5 e8beb7c27d882ce57be6cf32f2335bc9
BLAKE2b-256 0b8b654a5e05924f0b996463e6ed559dd4a25b3130e988d6c725f725782c5971

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyevspace-0.16.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 76.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyevspace-0.16.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c63f07af2ad1eaa8c2f2fc90f05dc03735ee44fd0634aaa14ba9e0477c9538a1
MD5 e6a47fc1368a3b9dfb14c1e2854a886c
BLAKE2b-256 3f8a608c0edb7b3c7338c7913300d77bf26935b0a9c1bbe9866896a5af2c0de3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0eca3e969c1b58a688c48ebf84a769ff1d22cb09bb699eb69836545cb3954819
MD5 b469209e7de0604cb229c388a36df4af
BLAKE2b-256 d304c80fbf84494c2b45db2f74cd5a61c99a044a63282d67774d91f303c79c31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dc98b20fe2da1c869567c9b9d5e706029bce67704bd7907a96dc10c455a17c5
MD5 bdd404ace7a3a0408578a42fa6928185
BLAKE2b-256 ee57a84424a126ac6c8e8e532a97ace4b1720c6c2abb803940de9e8dae6c05d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce96cbbbab366f3eb5f4c1e5a5915892e7350fcd29ab5ebd8ce3446099539cdc
MD5 0a49d190291b5a3e9daf988f57a4ed78
BLAKE2b-256 c44db79308bd4455c5a80ca9bc393c890dc69768c8de03f1dc8a33ee1911e3e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8072919bfa9b9abbc519364bba0dabf517d596a081b6283efc2e0d358cf94ad
MD5 f760817638493ccdffa6d162fba114fb
BLAKE2b-256 7cb5a267858392ae01b2b46f6884359040c43486b9bc633d93518dd5738a1ed9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3ade7c8dc207563c3b303b341e8df1b95bd75c4c5465d32363b99b4034017ab5
MD5 d1d54a3a4b2812e882f865f6c59295af
BLAKE2b-256 6330cfc52fd58b4e757305c7de2ba2a20f0b48a32134eae80ccbf1501fb44354

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyevspace-0.16.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2ba7d008a6abb4b7ae733b1ad3d0867b120ad2bdbb4ac5f8a4e735b34db51b86
MD5 9e5f6723387d39371627116c5acc7fa7
BLAKE2b-256 982f7cba74fb5cea1f0648bfc46008747745e4b7346cb774f88c55a0249a8bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88e858b695d0d840c4efb2395d3da9c9588de973fc30ea1a5481c28a03157cee
MD5 56fda0159ad2b39d25a07968d1439475
BLAKE2b-256 9eef969bcb2f099c5c2def75f16a4278b2dd3b67022000266200e60d9ba379bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11547d26fbcd02eb6b08d21be1b0a7f4bb90737488b43a67263f6f786d64fe0c
MD5 6024b7ea9f6d6d555f656262ad8b1ba4
BLAKE2b-256 b992fc40d540525fd7195cb916da56b1a05259fa1ca2579da02355452e0d56bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyevspace-0.16.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdd8679b9bebd7bd78f763349489ecb348d866d88a3fbb12212cbdb442c214bc
MD5 76c788f98ee653f2103214f59725b48c
BLAKE2b-256 48647f249f579c863f6e6bd077e72104d747e58321a7c8536fe6dbf8333ab1c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyevspace-0.16.1-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