transformations


Nametransformations JSON
Version 2024.4.24 PyPI version JSON
download
home_pagehttps://www.cgohlke.com
SummaryHomogeneous Transformation Matrices and Quaternions
upload_time2024-04-27 04:43:12
maintainerNone
docs_urlNone
authorChristoph Gohlke
requires_python>=3.9
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Homogeneous Transformation Matrices and Quaternions
===================================================

Transformations is a Python library for calculating 4x4 matrices for
translating, rotating, reflecting, scaling, shearing, projecting,
orthogonalizing, and superimposing arrays of 3D homogeneous coordinates
as well as for converting between rotation matrices, Euler angles,
and quaternions. Also includes an Arcball control object and
functions to decompose transformation matrices.

The transformations library is no longer actively developed.

:Author: `Christoph Gohlke <https://www.cgohlke.com>`_
:License: BSD 3-Clause
:Version: 2024.4.24

Quickstart
----------

Install the transformations package and all dependencies from the
`Python Package Index <https://pypi.org/project/transformations/>`_::

    python -m pip install -U transformations

See `Examples`_ for using the programming interface.

Source code and support are available on
`GitHub <https://github.com/cgohlke/transformations>`_.

Requirements
------------

This revision was tested with the following requirements and dependencies
(other versions may work):

- `CPython <https://www.python.org>`_ 3.9.13, 3.10.11, 3.11.9, 3.12.3
- `NumPy <https://pypi.org/project/numpy/>`_ 1.26.4

Revisions
---------

2024.4.24

- Support NumPy 2.

2024.1.6

- Remove support for Python 3.8 and numpy 1.22 (NEP 29).

2022.9.26

- Add dimension check on superimposition_matrix (#2).

2022.8.26

- Update metadata
- Remove support for Python 3.7 (NEP 29).

2021.6.6

- Remove support for Python 3.6 (NEP 29).

2020.1.1

- Remove support for Python 2.7 and 3.5.

2019.4.22

- Fix setup requirements.

Notes
-----

Transformations.py is no longer actively developed and has a few known issues
and numerical instabilities. The module is mostly superseded by other modules
for 3D transformations and quaternions:

- `Pytransform3d <https://github.com/dfki-ric/pytransform3d>`_
- `Scipy.spatial.transform <https://github.com/scipy/scipy/tree/master/
  scipy/spatial/transform>`_
- `Transforms3d <https://github.com/matthew-brett/transforms3d>`_
  (includes most code of this module)
- `Numpy-quaternion <https://github.com/moble/quaternion>`_
- `Blender.mathutils <https://docs.blender.org/api/master/mathutils.html>`_

The API is not stable yet and is expected to change between revisions.

This Python code is not optimized for speed. Refer to the transformations.c
module for a faster implementation of some functions.

Documentation in HTML format can be generated with epydoc.

Matrices (M) can be inverted using numpy.linalg.inv(M), be concatenated using
numpy.dot(M0, M1), or transform homogeneous coordinate arrays (v) using
numpy.dot(M, v) for shape (4, -1) column vectors, respectively
numpy.dot(v, M.T) for shape (-1, 4) row vectors ("array of points").

This module follows the "column vectors on the right" and "row major storage"
(C contiguous) conventions. The translation components are in the right column
of the transformation matrix, i.e. M[:3, 3].
The transpose of the transformation matrices may have to be used to interface
with other graphics systems, e.g. OpenGL's glMultMatrixd(). See also [16].

Calculations are carried out with numpy.float64 precision.

Vector, point, quaternion, and matrix function arguments are expected to be
"array like", i.e. tuple, list, or numpy arrays.

Return types are numpy arrays unless specified otherwise.

Angles are in radians unless specified otherwise.

Quaternions w+ix+jy+kz are represented as [w, x, y, z].

A triple of Euler angles can be applied/interpreted in 24 ways, which can
be specified using a 4 character string or encoded 4-tuple:

  *Axes 4-string*: e.g. 'sxyz' or 'ryxy'

  - first character : rotations are applied to 's'tatic or 'r'otating frame
  - remaining characters : successive rotation axis 'x', 'y', or 'z'

  *Axes 4-tuple*: e.g. (0, 0, 0, 0) or (1, 1, 1, 1)

  - inner axis: code of axis ('x':0, 'y':1, 'z':2) of rightmost matrix.
  - parity : even (0) if inner axis 'x' is followed by 'y', 'y' is followed
    by 'z', or 'z' is followed by 'x'. Otherwise odd (1).
  - repetition : first and last axis are same (1) or different (0).
  - frame : rotations are applied to static (0) or rotating (1) frame.

References
----------

1.  Matrices and transformations. Ronald Goldman.
    In "Graphics Gems I", pp 472-475. Morgan Kaufmann, 1990.
2.  More matrices and transformations: shear and pseudo-perspective.
    Ronald Goldman. In "Graphics Gems II", pp 320-323. Morgan Kaufmann, 1991.
3.  Decomposing a matrix into simple transformations. Spencer Thomas.
    In "Graphics Gems II", pp 320-323. Morgan Kaufmann, 1991.
4.  Recovering the data from the transformation matrix. Ronald Goldman.
    In "Graphics Gems II", pp 324-331. Morgan Kaufmann, 1991.
5.  Euler angle conversion. Ken Shoemake.
    In "Graphics Gems IV", pp 222-229. Morgan Kaufmann, 1994.
6.  Arcball rotation control. Ken Shoemake.
    In "Graphics Gems IV", pp 175-192. Morgan Kaufmann, 1994.
7.  Representing attitude: Euler angles, unit quaternions, and rotation
    vectors. James Diebel. 2006.
8.  A discussion of the solution for the best rotation to relate two sets
    of vectors. W Kabsch. Acta Cryst. 1978. A34, 827-828.
9.  Closed-form solution of absolute orientation using unit quaternions.
    BKP Horn. J Opt Soc Am A. 1987. 4(4):629-642.
10. Quaternions. Ken Shoemake.
    http://www.sfu.ca/~jwa3/cmpt461/files/quatut.pdf
11. From quaternion to matrix and back. JMP van Waveren. 2005.
    http://www.intel.com/cd/ids/developer/asmo-na/eng/293748.htm
12. Uniform random rotations. Ken Shoemake.
    In "Graphics Gems III", pp 124-132. Morgan Kaufmann, 1992.
13. Quaternion in molecular modeling. CFF Karney.
    J Mol Graph Mod, 25(5):595-604
14. New method for extracting the quaternion from a rotation matrix.
    Itzhack Y Bar-Itzhack, J Guid Contr Dynam. 2000. 23(6): 1085-1087.
15. Multiple View Geometry in Computer Vision. Hartley and Zissermann.
    Cambridge University Press; 2nd Ed. 2004. Chapter 4, Algorithm 4.7, p 130.
16. Column Vectors vs. Row Vectors.
    http://steve.hollasch.net/cgindex/math/matrix/column-vec.html

Examples
--------

>>> alpha, beta, gamma = 0.123, -1.234, 2.345
>>> origin, xaxis, yaxis, zaxis = [0, 0, 0], [1, 0, 0], [0, 1, 0], [0, 0, 1]
>>> I = identity_matrix()
>>> Rx = rotation_matrix(alpha, xaxis)
>>> Ry = rotation_matrix(beta, yaxis)
>>> Rz = rotation_matrix(gamma, zaxis)
>>> R = concatenate_matrices(Rx, Ry, Rz)
>>> euler = euler_from_matrix(R, 'rxyz')
>>> numpy.allclose([alpha, beta, gamma], euler)
True
>>> Re = euler_matrix(alpha, beta, gamma, 'rxyz')
>>> is_same_transform(R, Re)
True
>>> al, be, ga = euler_from_matrix(Re, 'rxyz')
>>> is_same_transform(Re, euler_matrix(al, be, ga, 'rxyz'))
True
>>> qx = quaternion_about_axis(alpha, xaxis)
>>> qy = quaternion_about_axis(beta, yaxis)
>>> qz = quaternion_about_axis(gamma, zaxis)
>>> q = quaternion_multiply(qx, qy)
>>> q = quaternion_multiply(q, qz)
>>> Rq = quaternion_matrix(q)
>>> is_same_transform(R, Rq)
True
>>> S = scale_matrix(1.23, origin)
>>> T = translation_matrix([1, 2, 3])
>>> Z = shear_matrix(beta, xaxis, origin, zaxis)
>>> R = random_rotation_matrix(numpy.random.rand(3))
>>> M = concatenate_matrices(T, R, Z, S)
>>> scale, shear, angles, trans, persp = decompose_matrix(M)
>>> numpy.allclose(scale, 1.23)
True
>>> numpy.allclose(trans, [1, 2, 3])
True
>>> numpy.allclose(shear, [0, math.tan(beta), 0])
True
>>> is_same_transform(R, euler_matrix(axes='sxyz', *angles))
True
>>> M1 = compose_matrix(scale, shear, angles, trans, persp)
>>> is_same_transform(M, M1)
True
>>> v0, v1 = random_vector(3), random_vector(3)
>>> M = rotation_matrix(angle_between_vectors(v0, v1), vector_product(v0, v1))
>>> v2 = numpy.dot(v0, M[:3,:3].T)
>>> numpy.allclose(unit_vector(v1), unit_vector(v2))
True

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.cgohlke.com",
    "name": "transformations",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Christoph Gohlke",
    "author_email": "cgohlke@cgohlke.com",
    "download_url": "https://files.pythonhosted.org/packages/3d/f6/6e73a65ee3241fc16110d848f96f95c708b9f3a3712e58c27480dea1da73/transformations-2024.4.24.tar.gz",
    "platform": "any",
    "description": "Homogeneous Transformation Matrices and Quaternions\n===================================================\n\nTransformations is a Python library for calculating 4x4 matrices for\ntranslating, rotating, reflecting, scaling, shearing, projecting,\northogonalizing, and superimposing arrays of 3D homogeneous coordinates\nas well as for converting between rotation matrices, Euler angles,\nand quaternions. Also includes an Arcball control object and\nfunctions to decompose transformation matrices.\n\nThe transformations library is no longer actively developed.\n\n:Author: `Christoph Gohlke <https://www.cgohlke.com>`_\n:License: BSD 3-Clause\n:Version: 2024.4.24\n\nQuickstart\n----------\n\nInstall the transformations package and all dependencies from the\n`Python Package Index <https://pypi.org/project/transformations/>`_::\n\n    python -m pip install -U transformations\n\nSee `Examples`_ for using the programming interface.\n\nSource code and support are available on\n`GitHub <https://github.com/cgohlke/transformations>`_.\n\nRequirements\n------------\n\nThis revision was tested with the following requirements and dependencies\n(other versions may work):\n\n- `CPython <https://www.python.org>`_ 3.9.13, 3.10.11, 3.11.9, 3.12.3\n- `NumPy <https://pypi.org/project/numpy/>`_ 1.26.4\n\nRevisions\n---------\n\n2024.4.24\n\n- Support NumPy 2.\n\n2024.1.6\n\n- Remove support for Python 3.8 and numpy 1.22 (NEP 29).\n\n2022.9.26\n\n- Add dimension check on superimposition_matrix (#2).\n\n2022.8.26\n\n- Update metadata\n- Remove support for Python 3.7 (NEP 29).\n\n2021.6.6\n\n- Remove support for Python 3.6 (NEP 29).\n\n2020.1.1\n\n- Remove support for Python 2.7 and 3.5.\n\n2019.4.22\n\n- Fix setup requirements.\n\nNotes\n-----\n\nTransformations.py is no longer actively developed and has a few known issues\nand numerical instabilities. The module is mostly superseded by other modules\nfor 3D transformations and quaternions:\n\n- `Pytransform3d <https://github.com/dfki-ric/pytransform3d>`_\n- `Scipy.spatial.transform <https://github.com/scipy/scipy/tree/master/\n  scipy/spatial/transform>`_\n- `Transforms3d <https://github.com/matthew-brett/transforms3d>`_\n  (includes most code of this module)\n- `Numpy-quaternion <https://github.com/moble/quaternion>`_\n- `Blender.mathutils <https://docs.blender.org/api/master/mathutils.html>`_\n\nThe API is not stable yet and is expected to change between revisions.\n\nThis Python code is not optimized for speed. Refer to the transformations.c\nmodule for a faster implementation of some functions.\n\nDocumentation in HTML format can be generated with epydoc.\n\nMatrices (M) can be inverted using numpy.linalg.inv(M), be concatenated using\nnumpy.dot(M0, M1), or transform homogeneous coordinate arrays (v) using\nnumpy.dot(M, v) for shape (4, -1) column vectors, respectively\nnumpy.dot(v, M.T) for shape (-1, 4) row vectors (\"array of points\").\n\nThis module follows the \"column vectors on the right\" and \"row major storage\"\n(C contiguous) conventions. The translation components are in the right column\nof the transformation matrix, i.e. M[:3, 3].\nThe transpose of the transformation matrices may have to be used to interface\nwith other graphics systems, e.g. OpenGL's glMultMatrixd(). See also [16].\n\nCalculations are carried out with numpy.float64 precision.\n\nVector, point, quaternion, and matrix function arguments are expected to be\n\"array like\", i.e. tuple, list, or numpy arrays.\n\nReturn types are numpy arrays unless specified otherwise.\n\nAngles are in radians unless specified otherwise.\n\nQuaternions w+ix+jy+kz are represented as [w, x, y, z].\n\nA triple of Euler angles can be applied/interpreted in 24 ways, which can\nbe specified using a 4 character string or encoded 4-tuple:\n\n  *Axes 4-string*: e.g. 'sxyz' or 'ryxy'\n\n  - first character : rotations are applied to 's'tatic or 'r'otating frame\n  - remaining characters : successive rotation axis 'x', 'y', or 'z'\n\n  *Axes 4-tuple*: e.g. (0, 0, 0, 0) or (1, 1, 1, 1)\n\n  - inner axis: code of axis ('x':0, 'y':1, 'z':2) of rightmost matrix.\n  - parity : even (0) if inner axis 'x' is followed by 'y', 'y' is followed\n    by 'z', or 'z' is followed by 'x'. Otherwise odd (1).\n  - repetition : first and last axis are same (1) or different (0).\n  - frame : rotations are applied to static (0) or rotating (1) frame.\n\nReferences\n----------\n\n1.  Matrices and transformations. Ronald Goldman.\n    In \"Graphics Gems I\", pp 472-475. Morgan Kaufmann, 1990.\n2.  More matrices and transformations: shear and pseudo-perspective.\n    Ronald Goldman. In \"Graphics Gems II\", pp 320-323. Morgan Kaufmann, 1991.\n3.  Decomposing a matrix into simple transformations. Spencer Thomas.\n    In \"Graphics Gems II\", pp 320-323. Morgan Kaufmann, 1991.\n4.  Recovering the data from the transformation matrix. Ronald Goldman.\n    In \"Graphics Gems II\", pp 324-331. Morgan Kaufmann, 1991.\n5.  Euler angle conversion. Ken Shoemake.\n    In \"Graphics Gems IV\", pp 222-229. Morgan Kaufmann, 1994.\n6.  Arcball rotation control. Ken Shoemake.\n    In \"Graphics Gems IV\", pp 175-192. Morgan Kaufmann, 1994.\n7.  Representing attitude: Euler angles, unit quaternions, and rotation\n    vectors. James Diebel. 2006.\n8.  A discussion of the solution for the best rotation to relate two sets\n    of vectors. W Kabsch. Acta Cryst. 1978. A34, 827-828.\n9.  Closed-form solution of absolute orientation using unit quaternions.\n    BKP Horn. J Opt Soc Am A. 1987. 4(4):629-642.\n10. Quaternions. Ken Shoemake.\n    http://www.sfu.ca/~jwa3/cmpt461/files/quatut.pdf\n11. From quaternion to matrix and back. JMP van Waveren. 2005.\n    http://www.intel.com/cd/ids/developer/asmo-na/eng/293748.htm\n12. Uniform random rotations. Ken Shoemake.\n    In \"Graphics Gems III\", pp 124-132. Morgan Kaufmann, 1992.\n13. Quaternion in molecular modeling. CFF Karney.\n    J Mol Graph Mod, 25(5):595-604\n14. New method for extracting the quaternion from a rotation matrix.\n    Itzhack Y Bar-Itzhack, J Guid Contr Dynam. 2000. 23(6): 1085-1087.\n15. Multiple View Geometry in Computer Vision. Hartley and Zissermann.\n    Cambridge University Press; 2nd Ed. 2004. Chapter 4, Algorithm 4.7, p 130.\n16. Column Vectors vs. Row Vectors.\n    http://steve.hollasch.net/cgindex/math/matrix/column-vec.html\n\nExamples\n--------\n\n>>> alpha, beta, gamma = 0.123, -1.234, 2.345\n>>> origin, xaxis, yaxis, zaxis = [0, 0, 0], [1, 0, 0], [0, 1, 0], [0, 0, 1]\n>>> I = identity_matrix()\n>>> Rx = rotation_matrix(alpha, xaxis)\n>>> Ry = rotation_matrix(beta, yaxis)\n>>> Rz = rotation_matrix(gamma, zaxis)\n>>> R = concatenate_matrices(Rx, Ry, Rz)\n>>> euler = euler_from_matrix(R, 'rxyz')\n>>> numpy.allclose([alpha, beta, gamma], euler)\nTrue\n>>> Re = euler_matrix(alpha, beta, gamma, 'rxyz')\n>>> is_same_transform(R, Re)\nTrue\n>>> al, be, ga = euler_from_matrix(Re, 'rxyz')\n>>> is_same_transform(Re, euler_matrix(al, be, ga, 'rxyz'))\nTrue\n>>> qx = quaternion_about_axis(alpha, xaxis)\n>>> qy = quaternion_about_axis(beta, yaxis)\n>>> qz = quaternion_about_axis(gamma, zaxis)\n>>> q = quaternion_multiply(qx, qy)\n>>> q = quaternion_multiply(q, qz)\n>>> Rq = quaternion_matrix(q)\n>>> is_same_transform(R, Rq)\nTrue\n>>> S = scale_matrix(1.23, origin)\n>>> T = translation_matrix([1, 2, 3])\n>>> Z = shear_matrix(beta, xaxis, origin, zaxis)\n>>> R = random_rotation_matrix(numpy.random.rand(3))\n>>> M = concatenate_matrices(T, R, Z, S)\n>>> scale, shear, angles, trans, persp = decompose_matrix(M)\n>>> numpy.allclose(scale, 1.23)\nTrue\n>>> numpy.allclose(trans, [1, 2, 3])\nTrue\n>>> numpy.allclose(shear, [0, math.tan(beta), 0])\nTrue\n>>> is_same_transform(R, euler_matrix(axes='sxyz', *angles))\nTrue\n>>> M1 = compose_matrix(scale, shear, angles, trans, persp)\n>>> is_same_transform(M, M1)\nTrue\n>>> v0, v1 = random_vector(3), random_vector(3)\n>>> M = rotation_matrix(angle_between_vectors(v0, v1), vector_product(v0, v1))\n>>> v2 = numpy.dot(v0, M[:3,:3].T)\n>>> numpy.allclose(unit_vector(v1), unit_vector(v2))\nTrue\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Homogeneous Transformation Matrices and Quaternions",
    "version": "2024.4.24",
    "project_urls": {
        "Bug Tracker": "https://github.com/cgohlke/transformations/issues",
        "Homepage": "https://www.cgohlke.com",
        "Source Code": "https://github.com/cgohlke/transformations"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5505ed2cd28a6490dc081e387680fb787a6470dc8f0445b581a1808ea8dc4576",
                "md5": "9a8d0a3adad694790d7bdbc85e42e8e0",
                "sha256": "94ad54de561bf65056c75b784b9a38b76f061b5725cbdd2811e84967af435095"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a8d0a3adad694790d7bdbc85e42e8e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 58165,
            "upload_time": "2024-04-27T04:42:40",
            "upload_time_iso_8601": "2024-04-27T04:42:40.318907Z",
            "url": "https://files.pythonhosted.org/packages/55/05/ed2cd28a6490dc081e387680fb787a6470dc8f0445b581a1808ea8dc4576/transformations-2024.4.24-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da08b49073ec1dcd36a018412e3034f0fa0a9628b48264216347e8257762958d",
                "md5": "f9167678174951cc3956ac3fe372e0ff",
                "sha256": "b1d18fae252dc09ce15dbc259e7df4fba2773e3ee349ace2e6103ce76c5b7bbd"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f9167678174951cc3956ac3fe372e0ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 55257,
            "upload_time": "2024-04-27T04:42:41",
            "upload_time_iso_8601": "2024-04-27T04:42:41.730965Z",
            "url": "https://files.pythonhosted.org/packages/da/08/b49073ec1dcd36a018412e3034f0fa0a9628b48264216347e8257762958d/transformations-2024.4.24-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55d92b95e1f9da0ebaaf25a1143fd294e7771499dd2e35afc059c01a5ea8378e",
                "md5": "0b5a93c3288e59bac4bfdc57abd56d5c",
                "sha256": "334ab71bd9a2cabee7f90b8cb6e1fcb9e59540b70aae62337817ab5f442cfd8b"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b5a93c3288e59bac4bfdc57abd56d5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 140231,
            "upload_time": "2024-04-27T04:42:42",
            "upload_time_iso_8601": "2024-04-27T04:42:42.937662Z",
            "url": "https://files.pythonhosted.org/packages/55/d9/2b95e1f9da0ebaaf25a1143fd294e7771499dd2e35afc059c01a5ea8378e/transformations-2024.4.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce371dd8fd1e0d1b23a8a8b14b54647f7b0e134bdf8e69299dd5becd19b23967",
                "md5": "c9528b4a04b3636217cbaa7fcc94c6fe",
                "sha256": "dc6c3165d417af6a8b7119ec19b13716152455810d929a1addbbb3a391f127f4"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c9528b4a04b3636217cbaa7fcc94c6fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 53244,
            "upload_time": "2024-04-27T04:42:44",
            "upload_time_iso_8601": "2024-04-27T04:42:44.545626Z",
            "url": "https://files.pythonhosted.org/packages/ce/37/1dd8fd1e0d1b23a8a8b14b54647f7b0e134bdf8e69299dd5becd19b23967/transformations-2024.4.24-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91322c8a75ab20049cfe7afc3a61ef5e238aba979b93c8204d97280bcdb5bc6b",
                "md5": "06edabdf3e1096f74f4ccb1d1fb62e5d",
                "sha256": "8608270a223e15c8d6cc2f190fa5c7a8639c8edd21910a89c9d7a68aec5dda17"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "06edabdf3e1096f74f4ccb1d1fb62e5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 58058,
            "upload_time": "2024-04-27T04:42:46",
            "upload_time_iso_8601": "2024-04-27T04:42:46.308546Z",
            "url": "https://files.pythonhosted.org/packages/91/32/2c8a75ab20049cfe7afc3a61ef5e238aba979b93c8204d97280bcdb5bc6b/transformations-2024.4.24-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b97a49a6e70e492d9942b5121f43035d60d5b2ea3148eb03e009e3289cfe87df",
                "md5": "719eb3542a5cb99abb23a85c6afac7e7",
                "sha256": "6f45e7f134b3595cb6fcc556af0a63cab958ca333165bf308d43c0806d637bae"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "719eb3542a5cb99abb23a85c6afac7e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 58164,
            "upload_time": "2024-04-27T04:42:48",
            "upload_time_iso_8601": "2024-04-27T04:42:48.003900Z",
            "url": "https://files.pythonhosted.org/packages/b9/7a/49a6e70e492d9942b5121f43035d60d5b2ea3148eb03e009e3289cfe87df/transformations-2024.4.24-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6ce1b2bf9ef9f21c07a68d0dc28311b86f510c3d3a868aafb1c846e998a8ce6",
                "md5": "0ae766b4b432dad854491e5b71292915",
                "sha256": "ad3fd3f24153bb4c31ea2b036176945eb6263f23182d6633e7ceda286d871a71"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0ae766b4b432dad854491e5b71292915",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 55253,
            "upload_time": "2024-04-27T04:42:49",
            "upload_time_iso_8601": "2024-04-27T04:42:49.105021Z",
            "url": "https://files.pythonhosted.org/packages/e6/ce/1b2bf9ef9f21c07a68d0dc28311b86f510c3d3a868aafb1c846e998a8ce6/transformations-2024.4.24-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9619e6f12de26e3a4a05b7db1d8c56491f44a2a46f2cf8e08925b445c2089a55",
                "md5": "5853eb4fd7bace94380162a55bd5a2bf",
                "sha256": "12e837df500f2f4399dfb601584dc2210aabc414e6b1cf68819e7e62a5d75a70"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5853eb4fd7bace94380162a55bd5a2bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 141261,
            "upload_time": "2024-04-27T04:42:50",
            "upload_time_iso_8601": "2024-04-27T04:42:50.743143Z",
            "url": "https://files.pythonhosted.org/packages/96/19/e6f12de26e3a4a05b7db1d8c56491f44a2a46f2cf8e08925b445c2089a55/transformations-2024.4.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f479ab59192775371514a69f81fcc68f79672c4bd478971176088d307f9bfda",
                "md5": "6957af642f5be0b402f6bd511f0a5cbb",
                "sha256": "6965b3c5d89a62af8e9b6ab19372a29351147fba7fce35fa00a0873fbb593e2e"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "6957af642f5be0b402f6bd511f0a5cbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 53242,
            "upload_time": "2024-04-27T04:42:52",
            "upload_time_iso_8601": "2024-04-27T04:42:52.442354Z",
            "url": "https://files.pythonhosted.org/packages/2f/47/9ab59192775371514a69f81fcc68f79672c4bd478971176088d307f9bfda/transformations-2024.4.24-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "affd2bdf152af6c762fa721ed47302b73f73cc2f9659ab95534f1ee7821a23fb",
                "md5": "e7e933ff3e8c2f98d43f04b032f8bce1",
                "sha256": "adaf6776a4a97c5b3d1623b66cdd5d039b8d8cb33fdf1f9f6c2e65d50d9d12db"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e7e933ff3e8c2f98d43f04b032f8bce1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 58060,
            "upload_time": "2024-04-27T04:42:53",
            "upload_time_iso_8601": "2024-04-27T04:42:53.553935Z",
            "url": "https://files.pythonhosted.org/packages/af/fd/2bdf152af6c762fa721ed47302b73f73cc2f9659ab95534f1ee7821a23fb/transformations-2024.4.24-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8a8527acd6bb2feeffef96668e87395fe63d7071de30cd3eb3e3561031c2d6a",
                "md5": "3cf2557f0bbac0a869fcc6593e013720",
                "sha256": "d5badf9d20cc712b94eb56ec6d4f2373a8ef56124806a8cc9afc7c14d1f70783"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "3cf2557f0bbac0a869fcc6593e013720",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 51082,
            "upload_time": "2024-04-27T04:42:55",
            "upload_time_iso_8601": "2024-04-27T04:42:55.119316Z",
            "url": "https://files.pythonhosted.org/packages/c8/a8/527acd6bb2feeffef96668e87395fe63d7071de30cd3eb3e3561031c2d6a/transformations-2024.4.24-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b35809dbd34e37bb1a64c3a1bee225073037db217df2cb41e5b05f2439dfd16e",
                "md5": "efcba10fe4b16b492551dba808e342f4",
                "sha256": "1fa447eec78a202a533a16f6c6a5fa60e29de2d9e77afb5fb1562e97d0196c4a"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "efcba10fe4b16b492551dba808e342f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 58141,
            "upload_time": "2024-04-27T04:42:56",
            "upload_time_iso_8601": "2024-04-27T04:42:56.151703Z",
            "url": "https://files.pythonhosted.org/packages/b3/58/09dbd34e37bb1a64c3a1bee225073037db217df2cb41e5b05f2439dfd16e/transformations-2024.4.24-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8eae05193eec9c318f967ee9960c6ddb5469172b7ee2485eae15139fcdaa6d44",
                "md5": "d89c5c912f3d7c60b5c850237dd671d6",
                "sha256": "bc15a401dec462636f530ddc7b0f5b19f9861977cf5f60d6f6f5011463e029b5"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d89c5c912f3d7c60b5c850237dd671d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 55195,
            "upload_time": "2024-04-27T04:42:57",
            "upload_time_iso_8601": "2024-04-27T04:42:57.770904Z",
            "url": "https://files.pythonhosted.org/packages/8e/ae/05193eec9c318f967ee9960c6ddb5469172b7ee2485eae15139fcdaa6d44/transformations-2024.4.24-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ede942bf76af26ac264aba34b80d23de7f0cd103e566887339a71b5b8e97352c",
                "md5": "c0ae7f5909784dbc19ce1bc4d215d0bf",
                "sha256": "9d7b18903c31addff9062a284b583ae07fd5bba5f7db43a2a430161c3ea64ed1"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0ae7f5909784dbc19ce1bc4d215d0bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 145231,
            "upload_time": "2024-04-27T04:42:59",
            "upload_time_iso_8601": "2024-04-27T04:42:59.329722Z",
            "url": "https://files.pythonhosted.org/packages/ed/e9/42bf76af26ac264aba34b80d23de7f0cd103e566887339a71b5b8e97352c/transformations-2024.4.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e279ec2f4e497ad2ad488d66ff7f73d8ccc9603d2ddc9f77aa197df8e840058a",
                "md5": "5ac45134459cd7d4171555dc2ad2ad6d",
                "sha256": "ab304689f31b881092c899ca3270eb5bde3f7624ea7d1b199d649c0c8356ee0c"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "5ac45134459cd7d4171555dc2ad2ad6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 53308,
            "upload_time": "2024-04-27T04:43:00",
            "upload_time_iso_8601": "2024-04-27T04:43:00.626834Z",
            "url": "https://files.pythonhosted.org/packages/e2/79/ec2f4e497ad2ad488d66ff7f73d8ccc9603d2ddc9f77aa197df8e840058a/transformations-2024.4.24-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18ec65337a49e989146174921e5447b502fb80834ad92fa6fa3a41613025d1c5",
                "md5": "cbd88d781819f0b644751df68b8de874",
                "sha256": "d06d2330d7f792c5ed9569339564e6ba2acbb807d800d2b175f773b9f7785f21"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cbd88d781819f0b644751df68b8de874",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 58342,
            "upload_time": "2024-04-27T04:43:02",
            "upload_time_iso_8601": "2024-04-27T04:43:02.396562Z",
            "url": "https://files.pythonhosted.org/packages/18/ec/65337a49e989146174921e5447b502fb80834ad92fa6fa3a41613025d1c5/transformations-2024.4.24-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adebcfa5a8f3da4b4910bf4e3ffa5ccd70a9d959f2abba0425a3b10d73fd71ab",
                "md5": "d1192762a0824f78904cbaeefc844034",
                "sha256": "13b336ddc7767c48aa0ae3fccfd33c9cde1cb2ac76ed284b8400f96a5d1d8300"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "d1192762a0824f78904cbaeefc844034",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 51236,
            "upload_time": "2024-04-27T04:43:04",
            "upload_time_iso_8601": "2024-04-27T04:43:04.182650Z",
            "url": "https://files.pythonhosted.org/packages/ad/eb/cfa5a8f3da4b4910bf4e3ffa5ccd70a9d959f2abba0425a3b10d73fd71ab/transformations-2024.4.24-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb7cfc3b96acde5a7d8a42070a4da40edc3fbbc38c415ab577e7ce09880b8774",
                "md5": "f356b33e9be232fe792c9441ce578f19",
                "sha256": "8b1e9ad42ae067869f18ea5e7e83b912e3e33240c5fba7ab771ca7e422a8cb5c"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f356b33e9be232fe792c9441ce578f19",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 58158,
            "upload_time": "2024-04-27T04:43:05",
            "upload_time_iso_8601": "2024-04-27T04:43:05.868112Z",
            "url": "https://files.pythonhosted.org/packages/fb/7c/fc3b96acde5a7d8a42070a4da40edc3fbbc38c415ab577e7ce09880b8774/transformations-2024.4.24-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1715054334a6098f26182a2af9b118f4bf7c6e86ff21c2f9acab92da7b1ebceb",
                "md5": "860b811682a7027b9576f0e0e0939fb9",
                "sha256": "25667f962db724c93603e9a496c7b16e69c4a8ed3fe01814729fbd89a8c8dbc5"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "860b811682a7027b9576f0e0e0939fb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 55248,
            "upload_time": "2024-04-27T04:43:07",
            "upload_time_iso_8601": "2024-04-27T04:43:07.112128Z",
            "url": "https://files.pythonhosted.org/packages/17/15/054334a6098f26182a2af9b118f4bf7c6e86ff21c2f9acab92da7b1ebceb/transformations-2024.4.24-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b1dcc62cbb10584d15c8d922b3df4b8c927e710d7543e7f238caad9e8d71cfe",
                "md5": "f2ac7bbc2d95e7795369eaa2b6ffb0bb",
                "sha256": "c745d6fb13196ad4c631edc4870c2eb3cd4aff541055b0307631cd8e3d3ce606"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2ac7bbc2d95e7795369eaa2b6ffb0bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 139896,
            "upload_time": "2024-04-27T04:43:09",
            "upload_time_iso_8601": "2024-04-27T04:43:09.031273Z",
            "url": "https://files.pythonhosted.org/packages/3b/1d/cc62cbb10584d15c8d922b3df4b8c927e710d7543e7f238caad9e8d71cfe/transformations-2024.4.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0331727884e1b0911b601d2eadc7341e303770ee07dcf76718dfd56fbaf44c84",
                "md5": "2fe9897fe3fe9c98a4e35f54d6c388a8",
                "sha256": "8ec83dd8f8ad441f305774dc8a5ebc771410c9a3823ab0c5102b846d46053727"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "2fe9897fe3fe9c98a4e35f54d6c388a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 53249,
            "upload_time": "2024-04-27T04:43:10",
            "upload_time_iso_8601": "2024-04-27T04:43:10.142971Z",
            "url": "https://files.pythonhosted.org/packages/03/31/727884e1b0911b601d2eadc7341e303770ee07dcf76718dfd56fbaf44c84/transformations-2024.4.24-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8213c76c91ee85f23151f2e726837344d20c1b9cbb5c5473b726a15038efd380",
                "md5": "ac32685083794993aff0fd5207659695",
                "sha256": "8f65545ef88a5415420da2d2d831c47c7f623cbbde140a939a4c9580f630088e"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac32685083794993aff0fd5207659695",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 58074,
            "upload_time": "2024-04-27T04:43:11",
            "upload_time_iso_8601": "2024-04-27T04:43:11.271585Z",
            "url": "https://files.pythonhosted.org/packages/82/13/c76c91ee85f23151f2e726837344d20c1b9cbb5c5473b726a15038efd380/transformations-2024.4.24-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3df66e73a65ee3241fc16110d848f96f95c708b9f3a3712e58c27480dea1da73",
                "md5": "07138ec5cef7f249d8993e58c58e0cf3",
                "sha256": "82f82b1a9162a13b01790d6d674fd80a9b89df9488817193da7fe4233e72d54b"
            },
            "downloads": -1,
            "filename": "transformations-2024.4.24.tar.gz",
            "has_sig": false,
            "md5_digest": "07138ec5cef7f249d8993e58c58e0cf3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 47099,
            "upload_time": "2024-04-27T04:43:12",
            "upload_time_iso_8601": "2024-04-27T04:43:12.354901Z",
            "url": "https://files.pythonhosted.org/packages/3d/f6/6e73a65ee3241fc16110d848f96f95c708b9f3a3712e58c27480dea1da73/transformations-2024.4.24.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 04:43:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cgohlke",
    "github_project": "transformations",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "transformations"
}
        
Elapsed time: 0.24598s