numpy-quaternion


Namenumpy-quaternion JSON
Version 2023.0.3 PyPI version JSON
download
home_pagehttps://github.com/moble/quaternion
SummaryAdd a quaternion dtype to NumPy
upload_time2024-03-12 05:14:10
maintainer
docs_urlNone
authorMichael Boyle
requires_python
license
keywords
VCS
bugtrack_url
requirements numpy scipy numba
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Test Status](https://github.com/moble/quaternion/workflows/tests/badge.svg)](https://github.com/moble/quaternion/actions)
[![Documentation Status](https://readthedocs.org/projects/quaternion/badge/?version=latest)](https://quaternion.readthedocs.io/en/latest/?badge=latest)
[![PyPI Version](https://img.shields.io/pypi/v/numpy-quaternion?color=)](https://pypi.org/project/numpy-quaternion/)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/quaternion.svg?color=)](https://anaconda.org/conda-forge/quaternion)
[![MIT License](https://img.shields.io/github/license/moble/quaternion.svg)](https://github.com/moble/quaternion/blob/main/LICENSE)
[![DOI](https://zenodo.org/badge/27896013.svg)](https://zenodo.org/badge/latestdoi/27896013)


# Quaternions in numpy

This Python module adds a quaternion dtype to NumPy.

The code was originally based on [code by Martin
Ling](https://github.com/martinling/numpy_quaternion) (which he wrote
with help from Mark Wiebe), but was rewritten with ideas from
[rational](https://github.com/numpy/numpy-dtypes/tree/master/npytypes/rational)
to work with newer python versions (and to fix a few bugs), and
*greatly* expands the applications of quaternions.

See also the pure-python package
[quaternionic](https://github.com/moble/quaternionic).

## Quickstart

```sh
conda install -c conda-forge quaternion
```

or

```sh
python -m pip install --upgrade --force-reinstall numpy-quaternion
```

Optionally add `--user` after `install` in the second command if
you're not using a python environment — though you should start.


## Dependencies

The basic requirements for this code are reasonably current versions
of `python` and `numpy`.  In particular, `python` versions 3.8 through
3.11 are routinely tested.  Earlier `python` versions, including 2.7,
will work with older versions of this package; they *might* still work
with more recent versions of this package, but even numpy no longer
supports `python` previous to 3.8, so your mileage may vary.  Also,
any `numpy` version [greater than
1.13.0](https://github.com/moble/quaternion/issues/114) should work,
but the tests are run on the most recent release at the time of the
test.

However, certain advanced functions in this package (including
`squad`, `mean_rotor_in_intrinsic_metric`,
`integrate_angular_velocity`, and related functions) require
[`scipy`](http://scipy.org/) and can automatically use
[`numba`](http://numba.pydata.org/).  `Scipy` is a standard python
package for scientific computation, and implements interfaces to C and
Fortran codes for optimization (among other things) need for finding
mean and optimal rotors.  `Numba` uses [LLVM](http://llvm.org/) to
compile python code to machine code, accelerating many numerical
functions by factors of anywhere from 2 to 2000.  It is *possible* to
run all the code without `numba`, but these particular functions can
be anywhere from 4 to 400 times slower without it.

Both `scipy` and `numba` can be installed with `pip` or `conda`.
However, because `conda` is specifically geared toward scientific
python, it is generally more robust for these more complicated
packages.  In fact, the main
[`anaconda`](https://www.anaconda.com/products/individual) package
comes with both `numba` and `scipy`.  If you prefer the smaller
download size of [`miniconda`](http://conda.pydata.org/miniconda.html)
(which comes with minimal extras), you'll also have to run this
command:

```sh
conda install numpy scipy numba
```


## Installation

Assuming you use `conda` to manage your python installation (which is
currently the preferred choice for science and engineering with
python), you can install this package simply as

```sh
conda install -c conda-forge quaternion
```

If you prefer to use `pip`, you can instead do

```sh
python -m pip install --upgrade --force-reinstall numpy-quaternion
```

(See [here](https://snarky.ca/why-you-should-use-python-m-pip/) for a
veteran python core contributor's explanation of why you should always
use `python -m pip` instead of just `pip` or `pip3`.)  The `--upgrade
--force-reinstall` options are not always necessary, but will ensure
that pip will update numpy if it has to.

If you refuse to use `conda`, you might want to install inside your
home directory without root privileges.  (Conda does this by default
anyway.)  This is done by adding `--user` to the above command:

```sh
python -m pip install --user --upgrade --force-reinstall numpy-quaternion
```

Note that pip will attempt to compile the code — which requires a
working `C` compiler.

Finally, there's also the fully manual option of just downloading the
code, changing to the code directory, and running

```sh
python -m pip install --upgrade --force-reinstall .
```

This should work regardless of the installation method, as long as you
have a compiler hanging around.


## Basic usage

The full documentation can be found on [Read the
Docs](https://quaternion.readthedocs.io/), and most functions have
docstrings that should explain the relevant points.  The following are
mostly for the purposes of example.

```python
>>> import numpy as np
>>> import quaternion
>>> np.quaternion(1,0,0,0)
quaternion(1, 0, 0, 0)
>>> q1 = np.quaternion(1,2,3,4)
>>> q2 = np.quaternion(5,6,7,8)
>>> q1 * q2
quaternion(-60, 12, 30, 24)
>>> a = np.array([q1, q2])
>>> a
array([quaternion(1, 2, 3, 4), quaternion(5, 6, 7, 8)], dtype=quaternion)
>>> np.exp(a)
array([quaternion(1.69392, -0.78956, -1.18434, -1.57912),
       quaternion(138.909, -25.6861, -29.9671, -34.2481)], dtype=quaternion)
```

Note that this package represents a quaternion as a scalar, followed
by the `x` component of the vector part, followed by `y`, followed by
`z`.  These components can be accessed directly:
```python
>>> q1.w, q1.x, q1.y, q1.z
(1.0, 2.0, 3.0, 4.0)
```
However, this only works on an individual `quaternion`; for arrays it
is better to use "vectorized" operations like `as_float_array`.

The following ufuncs are implemented (which means they run fast on
numpy arrays):
```python
add, subtract, multiply, divide, log, exp, power, negative, conjugate,
copysign, equal, not_equal, less, less_equal, isnan, isinf, isfinite, absolute
```

Quaternion components are stored as double-precision floating point
numbers — `float`s, in python language, or `float64` in more precise
numpy language.  Numpy arrays with `dtype=quaternion` can be accessed
as arrays of doubles without any (slow, memory-consuming) copying of
data; rather, a `view` of the exact same memory space can be created
within a microsecond, regardless of the shape or size of the
quaternion array.

Comparison operations follow the same lexicographic ordering as
tuples.

The unary tests isnan and isinf return true if they would return true
for any individual component; isfinite returns true if it would return
true for all components.

Real types may be cast to quaternions, giving quaternions with zero
for all three imaginary components. Complex types may also be cast to
quaternions, with their single imaginary component becoming the first
imaginary component of the quaternion. Quaternions may not be cast to
real or complex types.

Several array-conversion functions are also included.  For example, to
convert an Nx4 array of floats to an N-dimensional array of
quaternions, use `as_quat_array`:
```python
>>> import numpy as np
>>> import quaternion
>>> a = np.random.rand(7, 4)
>>> a
array([[ 0.93138726,  0.46972279,  0.18706385,  0.86605021],
       [ 0.70633523,  0.69982741,  0.93303559,  0.61440879],
       [ 0.79334456,  0.65912598,  0.0711557 ,  0.46622885],
       [ 0.88185987,  0.9391296 ,  0.73670503,  0.27115149],
       [ 0.49176628,  0.56688076,  0.13216632,  0.33309146],
       [ 0.11951624,  0.86804078,  0.77968826,  0.37229404],
       [ 0.33187593,  0.53391165,  0.8577846 ,  0.18336855]])
>>> qs = quaternion.as_quat_array(a)
>>> qs
array([ quaternion(0.931387262880247, 0.469722787598354, 0.187063852060487, 0.866050210100621),
       quaternion(0.706335233363319, 0.69982740767353, 0.933035590130247, 0.614408786768725),
       quaternion(0.793344561317281, 0.659125976566815, 0.0711557025000925, 0.466228847713644),
       quaternion(0.881859869074069, 0.939129602918467, 0.736705031709562, 0.271151494174001),
       quaternion(0.491766284854505, 0.566880763189927, 0.132166320200012, 0.333091463422536),
       quaternion(0.119516238634238, 0.86804077992676, 0.779688263524229, 0.372294043850009),
       quaternion(0.331875925159073, 0.533911652483908, 0.857784598617977, 0.183368547490701)], dtype=quaternion)
```
[Note that quaternions are printed with full precision, unlike floats,
which is why you see extra digits above.  But the actual data is
identical in the two cases.]  To convert an N-dimensional array of
quaternions to an Nx4 array of floats, use `as_float_array`:
```python
>>> b = quaternion.as_float_array(qs)
>>> b
array([[ 0.93138726,  0.46972279,  0.18706385,  0.86605021],
       [ 0.70633523,  0.69982741,  0.93303559,  0.61440879],
       [ 0.79334456,  0.65912598,  0.0711557 ,  0.46622885],
       [ 0.88185987,  0.9391296 ,  0.73670503,  0.27115149],
       [ 0.49176628,  0.56688076,  0.13216632,  0.33309146],
       [ 0.11951624,  0.86804078,  0.77968826,  0.37229404],
       [ 0.33187593,  0.53391165,  0.8577846 ,  0.18336855]])
```

It is also possible to convert a quaternion to or from a 3x3 array of
floats representing a rotation matrix, or an array of N quaternions to
or from an Nx3x3 array of floats representing N rotation matrices,
using `as_rotation_matrix` and `from_rotation_matrix`.  Similar
conversions are possible for rotation vectors using
`as_rotation_vector` and `from_rotation_vector`, and for spherical
coordinates using `as_spherical_coords` and `from_spherical_coords`.
Finally, it is possible to derive the Euler angles from a quaternion
using `as_euler_angles`, or create a quaternion from Euler angles
using `from_euler_angles` — though be aware that Euler angles are
basically the worst things
ever.<sup>[1](#1-euler-angles-are-awful)</sup> Before you complain
about those functions using something other than your favorite
conventions, please read [this
page](https://github.com/moble/quaternion/wiki/Euler-angles-are-horrible).


## Bug reports and feature requests

Bug reports and feature requests are entirely welcome (with [very few
exceptions](https://github.com/moble/quaternion/wiki/Euler-angles-are-horrible#opening-issues-and-pull-requests)).
The best way to do this is to open an [issue on this code's github
page](https://github.com/moble/quaternion/issues).  For bug reports,
please try to include a minimal working example demonstrating the
problem.

[Pull requests](https://help.github.com/articles/using-pull-requests/)
are also entirely welcome, of course, if you have an idea where the
code is going wrong, or have an idea for a new feature that you know
how to implement.

This code is routinely tested on recent versions of both python (3.8
though 3.11) and numpy (>=1.13).  But the test coverage is not
necessarily as complete as it could be, so bugs may certainly be
present, especially in the higher-level functions like
`mean_rotor_...`.


## Acknowledgments

This code is, of course, hosted on github.  Because it is an
open-source project, the hosting is free, and all the wonderful
features of github are available, including free wiki space and web
page hosting, pull requests, a nice interface to the git logs, etc.
Github user Hannes Ovrén (hovren) pointed out some errors in a
previous version of this code and suggested some nice utility
functions for rotation matrices, etc.  Github user Stijn van Drongelen
(rhymoid) contributed some code that makes compilation work with
MSVC++.  Github user Jon Long (longjon) has provided some elegant
contributions to substantially improve several tricky parts of this
code.  Rebecca Turner (9999years) and Leo Stein (duetosymmetry) did
all the work in getting the documentation onto [Read the
Docs](https://quaternion.readthedocs.io/).

Every change in this code is [automatically
tested](https://github.com/moble/quaternion/actions) on Github
Actions.  The code is downloaded and installed fresh each time, and
then tested, on each of the different supported versions of python, on
each of the supported platforms.  This ensures that no change I make
to the code breaks either installation or any of the features that I
have written tests for.  Github Actions also automatically builds the
`pip` versions of the code hosted on
[pypi](https://pypi.python.org/pypi/numpy-quaternion).  Conda-forge
also uses Github Actions to build [the conda/mamba
version](https://github.com/conda-forge/quaternion-feedstock) hosted
on [anaconda.org](https://anaconda.org/conda-forge/quaternion).  These
are all free services for open-source projects like this one.

The work of creating this code was supported in part by the Sherman
Fairchild Foundation and by NSF Grants No. PHY-1306125 and
AST-1333129.




<br/>

---

###### <sup>1</sup> Euler angles are awful

Euler angles are pretty much [the worst things
ever](https://moble.github.io/spherical_functions/#euler-angles) and it
makes me feel bad even supporting them.  Quaternions are faster, more
accurate, basically free of singularities, more intuitive, and
generally easier to understand.  You can work entirely without Euler
angles (I certainly do).  You absolutely never need them.  But if
you really can't give them up, they are mildly supported.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/moble/quaternion",
    "name": "numpy-quaternion",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Michael Boyle",
    "author_email": "mob22@cornell.edu",
    "download_url": "https://files.pythonhosted.org/packages/30/66/42eaef5f1a4e12a2008691987451936f6f00e18c38166eef24480a4a6e8c/numpy-quaternion-2023.0.3.tar.gz",
    "platform": null,
    "description": "[![Test Status](https://github.com/moble/quaternion/workflows/tests/badge.svg)](https://github.com/moble/quaternion/actions)\n[![Documentation Status](https://readthedocs.org/projects/quaternion/badge/?version=latest)](https://quaternion.readthedocs.io/en/latest/?badge=latest)\n[![PyPI Version](https://img.shields.io/pypi/v/numpy-quaternion?color=)](https://pypi.org/project/numpy-quaternion/)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/quaternion.svg?color=)](https://anaconda.org/conda-forge/quaternion)\n[![MIT License](https://img.shields.io/github/license/moble/quaternion.svg)](https://github.com/moble/quaternion/blob/main/LICENSE)\n[![DOI](https://zenodo.org/badge/27896013.svg)](https://zenodo.org/badge/latestdoi/27896013)\n\n\n# Quaternions in numpy\n\nThis Python module adds a quaternion dtype to NumPy.\n\nThe code was originally based on [code by Martin\nLing](https://github.com/martinling/numpy_quaternion) (which he wrote\nwith help from Mark Wiebe), but was rewritten with ideas from\n[rational](https://github.com/numpy/numpy-dtypes/tree/master/npytypes/rational)\nto work with newer python versions (and to fix a few bugs), and\n*greatly* expands the applications of quaternions.\n\nSee also the pure-python package\n[quaternionic](https://github.com/moble/quaternionic).\n\n## Quickstart\n\n```sh\nconda install -c conda-forge quaternion\n```\n\nor\n\n```sh\npython -m pip install --upgrade --force-reinstall numpy-quaternion\n```\n\nOptionally add `--user` after `install` in the second command if\nyou're not using a python environment \u2014 though you should start.\n\n\n## Dependencies\n\nThe basic requirements for this code are reasonably current versions\nof `python` and `numpy`.  In particular, `python` versions 3.8 through\n3.11 are routinely tested.  Earlier `python` versions, including 2.7,\nwill work with older versions of this package; they *might* still work\nwith more recent versions of this package, but even numpy no longer\nsupports `python` previous to 3.8, so your mileage may vary.  Also,\nany `numpy` version [greater than\n1.13.0](https://github.com/moble/quaternion/issues/114) should work,\nbut the tests are run on the most recent release at the time of the\ntest.\n\nHowever, certain advanced functions in this package (including\n`squad`, `mean_rotor_in_intrinsic_metric`,\n`integrate_angular_velocity`, and related functions) require\n[`scipy`](http://scipy.org/) and can automatically use\n[`numba`](http://numba.pydata.org/).  `Scipy` is a standard python\npackage for scientific computation, and implements interfaces to C and\nFortran codes for optimization (among other things) need for finding\nmean and optimal rotors.  `Numba` uses [LLVM](http://llvm.org/) to\ncompile python code to machine code, accelerating many numerical\nfunctions by factors of anywhere from 2 to 2000.  It is *possible* to\nrun all the code without `numba`, but these particular functions can\nbe anywhere from 4 to 400 times slower without it.\n\nBoth `scipy` and `numba` can be installed with `pip` or `conda`.\nHowever, because `conda` is specifically geared toward scientific\npython, it is generally more robust for these more complicated\npackages.  In fact, the main\n[`anaconda`](https://www.anaconda.com/products/individual) package\ncomes with both `numba` and `scipy`.  If you prefer the smaller\ndownload size of [`miniconda`](http://conda.pydata.org/miniconda.html)\n(which comes with minimal extras), you'll also have to run this\ncommand:\n\n```sh\nconda install numpy scipy numba\n```\n\n\n## Installation\n\nAssuming you use `conda` to manage your python installation (which is\ncurrently the preferred choice for science and engineering with\npython), you can install this package simply as\n\n```sh\nconda install -c conda-forge quaternion\n```\n\nIf you prefer to use `pip`, you can instead do\n\n```sh\npython -m pip install --upgrade --force-reinstall numpy-quaternion\n```\n\n(See [here](https://snarky.ca/why-you-should-use-python-m-pip/) for a\nveteran python core contributor's explanation of why you should always\nuse `python -m pip` instead of just `pip` or `pip3`.)  The `--upgrade\n--force-reinstall` options are not always necessary, but will ensure\nthat pip will update numpy if it has to.\n\nIf you refuse to use `conda`, you might want to install inside your\nhome directory without root privileges.  (Conda does this by default\nanyway.)  This is done by adding `--user` to the above command:\n\n```sh\npython -m pip install --user --upgrade --force-reinstall numpy-quaternion\n```\n\nNote that pip will attempt to compile the code \u2014 which requires a\nworking `C` compiler.\n\nFinally, there's also the fully manual option of just downloading the\ncode, changing to the code directory, and running\n\n```sh\npython -m pip install --upgrade --force-reinstall .\n```\n\nThis should work regardless of the installation method, as long as you\nhave a compiler hanging around.\n\n\n## Basic usage\n\nThe full documentation can be found on [Read the\nDocs](https://quaternion.readthedocs.io/), and most functions have\ndocstrings that should explain the relevant points.  The following are\nmostly for the purposes of example.\n\n```python\n>>> import numpy as np\n>>> import quaternion\n>>> np.quaternion(1,0,0,0)\nquaternion(1, 0, 0, 0)\n>>> q1 = np.quaternion(1,2,3,4)\n>>> q2 = np.quaternion(5,6,7,8)\n>>> q1 * q2\nquaternion(-60, 12, 30, 24)\n>>> a = np.array([q1, q2])\n>>> a\narray([quaternion(1, 2, 3, 4), quaternion(5, 6, 7, 8)], dtype=quaternion)\n>>> np.exp(a)\narray([quaternion(1.69392, -0.78956, -1.18434, -1.57912),\n       quaternion(138.909, -25.6861, -29.9671, -34.2481)], dtype=quaternion)\n```\n\nNote that this package represents a quaternion as a scalar, followed\nby the `x` component of the vector part, followed by `y`, followed by\n`z`.  These components can be accessed directly:\n```python\n>>> q1.w, q1.x, q1.y, q1.z\n(1.0, 2.0, 3.0, 4.0)\n```\nHowever, this only works on an individual `quaternion`; for arrays it\nis better to use \"vectorized\" operations like `as_float_array`.\n\nThe following ufuncs are implemented (which means they run fast on\nnumpy arrays):\n```python\nadd, subtract, multiply, divide, log, exp, power, negative, conjugate,\ncopysign, equal, not_equal, less, less_equal, isnan, isinf, isfinite, absolute\n```\n\nQuaternion components are stored as double-precision floating point\nnumbers \u2014 `float`s, in python language, or `float64` in more precise\nnumpy language.  Numpy arrays with `dtype=quaternion` can be accessed\nas arrays of doubles without any (slow, memory-consuming) copying of\ndata; rather, a `view` of the exact same memory space can be created\nwithin a microsecond, regardless of the shape or size of the\nquaternion array.\n\nComparison operations follow the same lexicographic ordering as\ntuples.\n\nThe unary tests isnan and isinf return true if they would return true\nfor any individual component; isfinite returns true if it would return\ntrue for all components.\n\nReal types may be cast to quaternions, giving quaternions with zero\nfor all three imaginary components. Complex types may also be cast to\nquaternions, with their single imaginary component becoming the first\nimaginary component of the quaternion. Quaternions may not be cast to\nreal or complex types.\n\nSeveral array-conversion functions are also included.  For example, to\nconvert an Nx4 array of floats to an N-dimensional array of\nquaternions, use `as_quat_array`:\n```python\n>>> import numpy as np\n>>> import quaternion\n>>> a = np.random.rand(7, 4)\n>>> a\narray([[ 0.93138726,  0.46972279,  0.18706385,  0.86605021],\n       [ 0.70633523,  0.69982741,  0.93303559,  0.61440879],\n       [ 0.79334456,  0.65912598,  0.0711557 ,  0.46622885],\n       [ 0.88185987,  0.9391296 ,  0.73670503,  0.27115149],\n       [ 0.49176628,  0.56688076,  0.13216632,  0.33309146],\n       [ 0.11951624,  0.86804078,  0.77968826,  0.37229404],\n       [ 0.33187593,  0.53391165,  0.8577846 ,  0.18336855]])\n>>> qs = quaternion.as_quat_array(a)\n>>> qs\narray([ quaternion(0.931387262880247, 0.469722787598354, 0.187063852060487, 0.866050210100621),\n       quaternion(0.706335233363319, 0.69982740767353, 0.933035590130247, 0.614408786768725),\n       quaternion(0.793344561317281, 0.659125976566815, 0.0711557025000925, 0.466228847713644),\n       quaternion(0.881859869074069, 0.939129602918467, 0.736705031709562, 0.271151494174001),\n       quaternion(0.491766284854505, 0.566880763189927, 0.132166320200012, 0.333091463422536),\n       quaternion(0.119516238634238, 0.86804077992676, 0.779688263524229, 0.372294043850009),\n       quaternion(0.331875925159073, 0.533911652483908, 0.857784598617977, 0.183368547490701)], dtype=quaternion)\n```\n[Note that quaternions are printed with full precision, unlike floats,\nwhich is why you see extra digits above.  But the actual data is\nidentical in the two cases.]  To convert an N-dimensional array of\nquaternions to an Nx4 array of floats, use `as_float_array`:\n```python\n>>> b = quaternion.as_float_array(qs)\n>>> b\narray([[ 0.93138726,  0.46972279,  0.18706385,  0.86605021],\n       [ 0.70633523,  0.69982741,  0.93303559,  0.61440879],\n       [ 0.79334456,  0.65912598,  0.0711557 ,  0.46622885],\n       [ 0.88185987,  0.9391296 ,  0.73670503,  0.27115149],\n       [ 0.49176628,  0.56688076,  0.13216632,  0.33309146],\n       [ 0.11951624,  0.86804078,  0.77968826,  0.37229404],\n       [ 0.33187593,  0.53391165,  0.8577846 ,  0.18336855]])\n```\n\nIt is also possible to convert a quaternion to or from a 3x3 array of\nfloats representing a rotation matrix, or an array of N quaternions to\nor from an Nx3x3 array of floats representing N rotation matrices,\nusing `as_rotation_matrix` and `from_rotation_matrix`.  Similar\nconversions are possible for rotation vectors using\n`as_rotation_vector` and `from_rotation_vector`, and for spherical\ncoordinates using `as_spherical_coords` and `from_spherical_coords`.\nFinally, it is possible to derive the Euler angles from a quaternion\nusing `as_euler_angles`, or create a quaternion from Euler angles\nusing `from_euler_angles` \u2014\u00a0though be aware that Euler angles are\nbasically the worst things\never.<sup>[1](#1-euler-angles-are-awful)</sup> Before you complain\nabout those functions using something other than your favorite\nconventions, please read [this\npage](https://github.com/moble/quaternion/wiki/Euler-angles-are-horrible).\n\n\n## Bug reports and feature requests\n\nBug reports and feature requests are entirely welcome (with [very few\nexceptions](https://github.com/moble/quaternion/wiki/Euler-angles-are-horrible#opening-issues-and-pull-requests)).\nThe best way to do this is to open an [issue on this code's github\npage](https://github.com/moble/quaternion/issues).  For bug reports,\nplease try to include a minimal working example demonstrating the\nproblem.\n\n[Pull requests](https://help.github.com/articles/using-pull-requests/)\nare also entirely welcome, of course, if you have an idea where the\ncode is going wrong, or have an idea for a new feature that you know\nhow to implement.\n\nThis code is routinely tested on recent versions of both python (3.8\nthough 3.11) and numpy (>=1.13).  But the test coverage is not\nnecessarily as complete as it could be, so bugs may certainly be\npresent, especially in the higher-level functions like\n`mean_rotor_...`.\n\n\n## Acknowledgments\n\nThis code is, of course, hosted on github.  Because it is an\nopen-source project, the hosting is free, and all the wonderful\nfeatures of github are available, including free wiki space and web\npage hosting, pull requests, a nice interface to the git logs, etc.\nGithub user Hannes Ovr\u00e9n (hovren) pointed out some errors in a\nprevious version of this code and suggested some nice utility\nfunctions for rotation matrices, etc.  Github user Stijn van Drongelen\n(rhymoid) contributed some code that makes compilation work with\nMSVC++.  Github user Jon Long (longjon) has provided some elegant\ncontributions to substantially improve several tricky parts of this\ncode.  Rebecca Turner (9999years) and Leo Stein (duetosymmetry) did\nall the work in getting the documentation onto [Read the\nDocs](https://quaternion.readthedocs.io/).\n\nEvery change in this code is [automatically\ntested](https://github.com/moble/quaternion/actions) on Github\nActions.  The code is downloaded and installed fresh each time, and\nthen tested, on each of the different supported versions of python, on\neach of the supported platforms.  This ensures that no change I make\nto the code breaks either installation or any of the features that I\nhave written tests for.  Github Actions also automatically builds the\n`pip` versions of the code hosted on\n[pypi](https://pypi.python.org/pypi/numpy-quaternion).  Conda-forge\nalso uses Github Actions to build [the conda/mamba\nversion](https://github.com/conda-forge/quaternion-feedstock) hosted\non [anaconda.org](https://anaconda.org/conda-forge/quaternion).  These\nare all free services for open-source projects like this one.\n\nThe work of creating this code was supported in part by the Sherman\nFairchild Foundation and by NSF Grants No. PHY-1306125 and\nAST-1333129.\n\n\n\n\n<br/>\n\n---\n\n###### <sup>1</sup> Euler angles are awful\n\nEuler angles are pretty much [the worst things\never](https://moble.github.io/spherical_functions/#euler-angles) and it\nmakes me feel bad even supporting them.  Quaternions are faster, more\naccurate, basically free of singularities, more intuitive, and\ngenerally easier to understand.  You can work entirely without Euler\nangles (I certainly do).  You absolutely never need them.  But if\nyou really can't give them up, they are mildly supported.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Add a quaternion dtype to NumPy",
    "version": "2023.0.3",
    "project_urls": {
        "Homepage": "https://github.com/moble/quaternion"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d550c72e5b928e448c7a4cfb65de465d15462ebcdf52baf4d079eee92bff18c2",
                "md5": "7dbebcab2e4be107a0d2914a73147005",
                "sha256": "7fb35558e572d17ede74bd295bd39b7b4e430e2454394162a419ec13e398e16f"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7dbebcab2e4be107a0d2914a73147005",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 87149,
            "upload_time": "2024-03-12T05:12:32",
            "upload_time_iso_8601": "2024-03-12T05:12:32.756748Z",
            "url": "https://files.pythonhosted.org/packages/d5/50/c72e5b928e448c7a4cfb65de465d15462ebcdf52baf4d079eee92bff18c2/numpy_quaternion-2023.0.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4915365adf2c4fa7f3abca9ef5cfc9e0106334eac38fefafe30d134d40fe5b1",
                "md5": "9f23aecbb2bbd5b9202f068a7a73af42",
                "sha256": "fcac49e60f26be6db809fec0ce07b36af48cea159c7d5ac4944955814846b3b4"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f23aecbb2bbd5b9202f068a7a73af42",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 61376,
            "upload_time": "2024-03-12T05:12:35",
            "upload_time_iso_8601": "2024-03-12T05:12:35.528959Z",
            "url": "https://files.pythonhosted.org/packages/f4/91/5365adf2c4fa7f3abca9ef5cfc9e0106334eac38fefafe30d134d40fe5b1/numpy_quaternion-2023.0.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f517435f79107c7ff40f934bda85b134f56ad7aba1605bae950ea14c099a5094",
                "md5": "52cdeff0d2f3fec72f2bc18295dd0ada",
                "sha256": "33fa45a2a7e52173ecc10862377dcccc97b6f97c84aabb70e922d29411836694"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "52cdeff0d2f3fec72f2bc18295dd0ada",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 55955,
            "upload_time": "2024-03-12T05:12:37",
            "upload_time_iso_8601": "2024-03-12T05:12:37.954679Z",
            "url": "https://files.pythonhosted.org/packages/f5/17/435f79107c7ff40f934bda85b134f56ad7aba1605bae950ea14c099a5094/numpy_quaternion-2023.0.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dff96374d80314352b5629d4cea853447618846012ed28ef36072ed791a82b02",
                "md5": "cd06f3fd06dc6cf854946b5744262cd3",
                "sha256": "a16cc15587c47fd5ba512c621b2f72e9f7c26b829ef869395f9d16029639849e"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd06f3fd06dc6cf854946b5744262cd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 179548,
            "upload_time": "2024-03-12T05:12:40",
            "upload_time_iso_8601": "2024-03-12T05:12:40.389878Z",
            "url": "https://files.pythonhosted.org/packages/df/f9/6374d80314352b5629d4cea853447618846012ed28ef36072ed791a82b02/numpy_quaternion-2023.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "081dd429b4badf6f950e991a40ca2c2831ac2eb1c1cb5968df3db4d69b6093e6",
                "md5": "a95e406ec2099bcc87cdb470686ff99a",
                "sha256": "f24aee35a72195c3f4002859c48f9a77660385153ea72df7ef3a9dc9c5e6e533"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a95e406ec2099bcc87cdb470686ff99a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 186846,
            "upload_time": "2024-03-12T05:12:42",
            "upload_time_iso_8601": "2024-03-12T05:12:42.620851Z",
            "url": "https://files.pythonhosted.org/packages/08/1d/d429b4badf6f950e991a40ca2c2831ac2eb1c1cb5968df3db4d69b6093e6/numpy_quaternion-2023.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af505a9339fe96784c626a25867cec89895591ee34db03f0396320ba7ce85e7f",
                "md5": "b5b24c04212f69896da51c64ada529c1",
                "sha256": "a05f00ce120089315d67471e01542e9aeffa3069be05e41690d6de5ac36a1da0"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5b24c04212f69896da51c64ada529c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 195830,
            "upload_time": "2024-03-12T05:12:44",
            "upload_time_iso_8601": "2024-03-12T05:12:44.661383Z",
            "url": "https://files.pythonhosted.org/packages/af/50/5a9339fe96784c626a25867cec89895591ee34db03f0396320ba7ce85e7f/numpy_quaternion-2023.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc9755fe1eedf857c41312f061ecee5f1d4fdc8e5a8bc5e424b562a194cb94e0",
                "md5": "d344e7e47d00e56a6da4ea37706f6e17",
                "sha256": "82158827e53fe84b79bb0e1fa993151dd4b25381c148d0486fe0518f96937c55"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d344e7e47d00e56a6da4ea37706f6e17",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 183086,
            "upload_time": "2024-03-12T05:12:46",
            "upload_time_iso_8601": "2024-03-12T05:12:46.429687Z",
            "url": "https://files.pythonhosted.org/packages/bc/97/55fe1eedf857c41312f061ecee5f1d4fdc8e5a8bc5e424b562a194cb94e0/numpy_quaternion-2023.0.3-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "355444f7fcb92c510c3a19487f96fc3ea598520ba02b3dab65058281c12d6ba7",
                "md5": "a32695c25f45ca097074e10f67e64596",
                "sha256": "00462f35b7668e45ec626578cbb7f67c6a258b915d77de606e4f5058c882ed4d"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a32695c25f45ca097074e10f67e64596",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 209561,
            "upload_time": "2024-03-12T05:12:48",
            "upload_time_iso_8601": "2024-03-12T05:12:48.827301Z",
            "url": "https://files.pythonhosted.org/packages/35/54/44f7fcb92c510c3a19487f96fc3ea598520ba02b3dab65058281c12d6ba7/numpy_quaternion-2023.0.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2fd07c4ab36135a5302e66a07580f03f08a84af9045ba5f126a564e107845ec",
                "md5": "54b5210eb9a4f1d46256d4079eb52f39",
                "sha256": "241d635791b5aadb798a56baba0d754b8f5b11ac93e6e490de52324dd06ee608"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "54b5210eb9a4f1d46256d4079eb52f39",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 60876,
            "upload_time": "2024-03-12T05:12:50",
            "upload_time_iso_8601": "2024-03-12T05:12:50.519742Z",
            "url": "https://files.pythonhosted.org/packages/a2/fd/07c4ab36135a5302e66a07580f03f08a84af9045ba5f126a564e107845ec/numpy_quaternion-2023.0.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18d29de862b6904055be1ff796b85e3296fb8600b557fad79c9ac3a5da1dbc97",
                "md5": "4c674e93455513f72d0c1a2b5b5dc5ca",
                "sha256": "f54a63b34f4207f7bf56dda94aecb7926019ba99d860e305048cb4ec126dcd14"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4c674e93455513f72d0c1a2b5b5dc5ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 69751,
            "upload_time": "2024-03-12T05:12:52",
            "upload_time_iso_8601": "2024-03-12T05:12:52.812049Z",
            "url": "https://files.pythonhosted.org/packages/18/d2/9de862b6904055be1ff796b85e3296fb8600b557fad79c9ac3a5da1dbc97/numpy_quaternion-2023.0.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8eb8aabae5a0e6fefdc1988733e4d7386b4b7a1ba40820992ce47d020d48f268",
                "md5": "0d5c3b56402d07b376649645e9557a3c",
                "sha256": "b3aec1175b788b74d788fdef7c221707a2f68cbc20653ddc2a3c15e5332c1fb4"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0d5c3b56402d07b376649645e9557a3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 87179,
            "upload_time": "2024-03-12T05:12:54",
            "upload_time_iso_8601": "2024-03-12T05:12:54.531296Z",
            "url": "https://files.pythonhosted.org/packages/8e/b8/aabae5a0e6fefdc1988733e4d7386b4b7a1ba40820992ce47d020d48f268/numpy_quaternion-2023.0.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f65ac1ebc8bf1ca1b07eb79e96617a7c1c3c3fb1379131a84ebcaef759da5b8f",
                "md5": "fd2a4952b5ac8bc1e2637043552bfeb8",
                "sha256": "734259bfa8da467812a46ed79fcd9e3429e9aaa26f4449f47e65a709abd8b000"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd2a4952b5ac8bc1e2637043552bfeb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 61374,
            "upload_time": "2024-03-12T05:12:56",
            "upload_time_iso_8601": "2024-03-12T05:12:56.687738Z",
            "url": "https://files.pythonhosted.org/packages/f6/5a/c1ebc8bf1ca1b07eb79e96617a7c1c3c3fb1379131a84ebcaef759da5b8f/numpy_quaternion-2023.0.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5bb67e7a441d18776e26ba291556a4370691a5df3ae20ec221ec2af20571424",
                "md5": "33edc385776caa103892ec1273912afa",
                "sha256": "77d98ea3a5c6d005dbda7cf38c3d8bf5de49fa3b5809046083349439930248d0"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "33edc385776caa103892ec1273912afa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 55951,
            "upload_time": "2024-03-12T05:12:58",
            "upload_time_iso_8601": "2024-03-12T05:12:58.180741Z",
            "url": "https://files.pythonhosted.org/packages/f5/bb/67e7a441d18776e26ba291556a4370691a5df3ae20ec221ec2af20571424/numpy_quaternion-2023.0.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b4dd2e58317c0b3c8bcd7b9ae7e3607615c26117ea8647995a86c571caff831",
                "md5": "c899b3074203ebf7dd6b33921f144902",
                "sha256": "324d19204d7ce7b60cfd9b1a351eb2e6bbfda307e5ea8326a2978f5dc082f334"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c899b3074203ebf7dd6b33921f144902",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 180646,
            "upload_time": "2024-03-12T05:13:00",
            "upload_time_iso_8601": "2024-03-12T05:13:00.289999Z",
            "url": "https://files.pythonhosted.org/packages/2b/4d/d2e58317c0b3c8bcd7b9ae7e3607615c26117ea8647995a86c571caff831/numpy_quaternion-2023.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97740552e5f747be524797e638a6b4cfc5d93d4f567b0500bb60da04617d865e",
                "md5": "249a3a8a455f857cdd1f98fb2eb9355c",
                "sha256": "6175a0555b9e6cf8fb22f88113b55e29dbec26622938e61a79ea4fcfcd8ad8e3"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "249a3a8a455f857cdd1f98fb2eb9355c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 187826,
            "upload_time": "2024-03-12T05:13:02",
            "upload_time_iso_8601": "2024-03-12T05:13:02.526918Z",
            "url": "https://files.pythonhosted.org/packages/97/74/0552e5f747be524797e638a6b4cfc5d93d4f567b0500bb60da04617d865e/numpy_quaternion-2023.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a09fb5d49653f9ed30869f1d3e27e24693333bd64fcfb728a7af8dc7ec96a4d8",
                "md5": "0da4dd728256526246a277000b06c71c",
                "sha256": "8ebc517a59487e2424b98a0d6291d1e7ad77ca36d2702015357f62097953de1f"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0da4dd728256526246a277000b06c71c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 196917,
            "upload_time": "2024-03-12T05:13:04",
            "upload_time_iso_8601": "2024-03-12T05:13:04.727647Z",
            "url": "https://files.pythonhosted.org/packages/a0/9f/b5d49653f9ed30869f1d3e27e24693333bd64fcfb728a7af8dc7ec96a4d8/numpy_quaternion-2023.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1f0a3e87a3d529b6790f8950c8c30f337f7756c4444052efed401a139d06349",
                "md5": "a7593bfd118e6ae65d3b86d450cb0f91",
                "sha256": "6699dbba41286da391b1ba40d0bebab8c2417cbce799d70c5745a254630bd0cd"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a7593bfd118e6ae65d3b86d450cb0f91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 184791,
            "upload_time": "2024-03-12T05:13:06",
            "upload_time_iso_8601": "2024-03-12T05:13:06.612547Z",
            "url": "https://files.pythonhosted.org/packages/d1/f0/a3e87a3d529b6790f8950c8c30f337f7756c4444052efed401a139d06349/numpy_quaternion-2023.0.3-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef119649cd1c1baed3ea1eb429fa276ac77b369f55da962414c4b677b44876e1",
                "md5": "1b802585ce0dab11c7913f886fa033e3",
                "sha256": "73e10823b0b0fb0f5f1a5fb6e36db3e09d5ed1b547dd5e6a31ac2f126916dfe5"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b802585ce0dab11c7913f886fa033e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 211402,
            "upload_time": "2024-03-12T05:13:08",
            "upload_time_iso_8601": "2024-03-12T05:13:08.394507Z",
            "url": "https://files.pythonhosted.org/packages/ef/11/9649cd1c1baed3ea1eb429fa276ac77b369f55da962414c4b677b44876e1/numpy_quaternion-2023.0.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33eb692ac7b4c5f21c7fafd946f1bc22e9fb2aebfcbb3e2e278556b81efa89f6",
                "md5": "08ca39b192fbc55f6e9161072f0170d2",
                "sha256": "151f238ad5bfe51e18a8fad6afc75bec060f9ec3ebd01ad0565fb33ab6714818"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "08ca39b192fbc55f6e9161072f0170d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 60887,
            "upload_time": "2024-03-12T05:13:10",
            "upload_time_iso_8601": "2024-03-12T05:13:10.975352Z",
            "url": "https://files.pythonhosted.org/packages/33/eb/692ac7b4c5f21c7fafd946f1bc22e9fb2aebfcbb3e2e278556b81efa89f6/numpy_quaternion-2023.0.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6098cf4d58e39fb26e63c89454b2c1be00c6ba1bf4c2a07bc62713b2d425ac03",
                "md5": "d6172412532d170488ea303d1597c385",
                "sha256": "cd6bed4d09c141062d6e3745e0fcaae80536a36ffa5ba3248771a7ca8d447734"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d6172412532d170488ea303d1597c385",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 69769,
            "upload_time": "2024-03-12T05:13:13",
            "upload_time_iso_8601": "2024-03-12T05:13:13.281097Z",
            "url": "https://files.pythonhosted.org/packages/60/98/cf4d58e39fb26e63c89454b2c1be00c6ba1bf4c2a07bc62713b2d425ac03/numpy_quaternion-2023.0.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0f15a3eeb806e82c1fa0494773bc4039a5eebae06d2015df4442bb9c9762698",
                "md5": "dc92131916088fa7d4ef748f640f8cae",
                "sha256": "7c67e35c3f128f8c32b76be448d8b8f102d4fd8d19086afc816fa8908abd91f0"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "dc92131916088fa7d4ef748f640f8cae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 87492,
            "upload_time": "2024-03-12T05:13:14",
            "upload_time_iso_8601": "2024-03-12T05:13:14.945228Z",
            "url": "https://files.pythonhosted.org/packages/c0/f1/5a3eeb806e82c1fa0494773bc4039a5eebae06d2015df4442bb9c9762698/numpy_quaternion-2023.0.3-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29ede348d8edcccc52e42abf8d0a3fe176889394044edc1855a9a2f2c2244406",
                "md5": "f69a319e4f85ba6c066efb139fafdd78",
                "sha256": "0ba2e4f266a94650d45407ff8507c546951f30a445f3a3f1701e517c6c456dda"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f69a319e4f85ba6c066efb139fafdd78",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 61582,
            "upload_time": "2024-03-12T05:13:16",
            "upload_time_iso_8601": "2024-03-12T05:13:16.413198Z",
            "url": "https://files.pythonhosted.org/packages/29/ed/e348d8edcccc52e42abf8d0a3fe176889394044edc1855a9a2f2c2244406/numpy_quaternion-2023.0.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd248fd2244cf3fe61685ba16cc41f435506d031f5732c652abdc3a627d402d1",
                "md5": "a856e4ead15454044b77e49100fc097e",
                "sha256": "4285e8e4df7216f9adfe15d2802472c89758d92cbf3c7fde31798ca0e22eb7e0"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a856e4ead15454044b77e49100fc097e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 56063,
            "upload_time": "2024-03-12T05:13:18",
            "upload_time_iso_8601": "2024-03-12T05:13:18.673129Z",
            "url": "https://files.pythonhosted.org/packages/dd/24/8fd2244cf3fe61685ba16cc41f435506d031f5732c652abdc3a627d402d1/numpy_quaternion-2023.0.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9eee8142063f6ec73bc3a56f604d23187760e9bf2750d1c2f8a8e70366810ca6",
                "md5": "ec2536b74d43c2c6fed9832f7b6eabff",
                "sha256": "481d386e4863e2aef88b618ac73e6dec9635737d01c9ccddfd53a855edcfea84"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ec2536b74d43c2c6fed9832f7b6eabff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 182455,
            "upload_time": "2024-03-12T05:13:20",
            "upload_time_iso_8601": "2024-03-12T05:13:20.328150Z",
            "url": "https://files.pythonhosted.org/packages/9e/ee/8142063f6ec73bc3a56f604d23187760e9bf2750d1c2f8a8e70366810ca6/numpy_quaternion-2023.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "064e486c2eb582b6fe247169906d1704f9a43041ca421d25279797d1dd31845a",
                "md5": "eed643021ad6952c68199e6e0396610e",
                "sha256": "92be260eccb718f07c67e314601a3cca22bb5cdcba8e6fd6c70febd24f947d4a"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eed643021ad6952c68199e6e0396610e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 198604,
            "upload_time": "2024-03-12T05:13:22",
            "upload_time_iso_8601": "2024-03-12T05:13:22.034839Z",
            "url": "https://files.pythonhosted.org/packages/06/4e/486c2eb582b6fe247169906d1704f9a43041ca421d25279797d1dd31845a/numpy_quaternion-2023.0.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df6147f572c9404a55adc2e0cce92c3d46539358776a9928095ee0f44d8b1430",
                "md5": "a465ea565b569309424d7e24c5004445",
                "sha256": "e56939aae3f493acfa7c09dc5476893a61b3a7843e7c22d7cf65a14f9fe5eba3"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a465ea565b569309424d7e24c5004445",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 213267,
            "upload_time": "2024-03-12T05:13:24",
            "upload_time_iso_8601": "2024-03-12T05:13:24.200409Z",
            "url": "https://files.pythonhosted.org/packages/df/61/47f572c9404a55adc2e0cce92c3d46539358776a9928095ee0f44d8b1430/numpy_quaternion-2023.0.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8119b462c46dbc895356bbb93de918aa1ee9e4d2121db06f78514448187d5eb4",
                "md5": "78e2702981d86e278c54162024b50037",
                "sha256": "1b8fc0d8cdee31cee21d8564726dab3ad8206a4119d60e0732bcd9b8b7d079d2"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "78e2702981d86e278c54162024b50037",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 61145,
            "upload_time": "2024-03-12T05:13:26",
            "upload_time_iso_8601": "2024-03-12T05:13:26.046261Z",
            "url": "https://files.pythonhosted.org/packages/81/19/b462c46dbc895356bbb93de918aa1ee9e4d2121db06f78514448187d5eb4/numpy_quaternion-2023.0.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74f2256dfa245a29bc671515cac8765ee423a94f0d38fe0a17f7bc02802beef",
                "md5": "ba4dc4b2ed1ac4b0f0f4eef71869f70c",
                "sha256": "23f429263e0e6f290ca6f6187a2739567f7fcd5e066259f0098007fa06068d44"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ba4dc4b2ed1ac4b0f0f4eef71869f70c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 69958,
            "upload_time": "2024-03-12T05:13:27",
            "upload_time_iso_8601": "2024-03-12T05:13:27.683579Z",
            "url": "https://files.pythonhosted.org/packages/c7/4f/2256dfa245a29bc671515cac8765ee423a94f0d38fe0a17f7bc02802beef/numpy_quaternion-2023.0.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ca730d0862f8b4b9fbd3e83afcdd574d8b6c2a80ef9b70c182bc075c39e125a",
                "md5": "54bdf1af1e0124a7da26dd36b0d8d9a5",
                "sha256": "85811e0dbf7bb5e0d1d589331ecf452f972f555c1d6be31f3383c5e826184735"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "54bdf1af1e0124a7da26dd36b0d8d9a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 87107,
            "upload_time": "2024-03-12T05:13:29",
            "upload_time_iso_8601": "2024-03-12T05:13:29.485327Z",
            "url": "https://files.pythonhosted.org/packages/6c/a7/30d0862f8b4b9fbd3e83afcdd574d8b6c2a80ef9b70c182bc075c39e125a/numpy_quaternion-2023.0.3-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f88f8c9e06ef0e14c6f609c7df1a136d7ef425b2fc8a867a99e221ff337a842",
                "md5": "42b6ef9e36268580354a2c9d6cffd398",
                "sha256": "13cbd13e3119bbbc2e9c45cae27d5723f94ab758256eaafe75f7bf4deea6537f"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42b6ef9e36268580354a2c9d6cffd398",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 61359,
            "upload_time": "2024-03-12T05:13:31",
            "upload_time_iso_8601": "2024-03-12T05:13:31.605281Z",
            "url": "https://files.pythonhosted.org/packages/1f/88/f8c9e06ef0e14c6f609c7df1a136d7ef425b2fc8a867a99e221ff337a842/numpy_quaternion-2023.0.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2eb9cb33cffcbc7e6d944e10bbd33b4c8f353f60032e91dea6a81bf0b86c8580",
                "md5": "a61e285d346709785705c1d43ae02485",
                "sha256": "ab8912509ff8b6de23c39fa6ae2e6b055893687939382ba2289078f9c8d0f164"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a61e285d346709785705c1d43ae02485",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 55921,
            "upload_time": "2024-03-12T05:13:33",
            "upload_time_iso_8601": "2024-03-12T05:13:33.352544Z",
            "url": "https://files.pythonhosted.org/packages/2e/b9/cb33cffcbc7e6d944e10bbd33b4c8f353f60032e91dea6a81bf0b86c8580/numpy_quaternion-2023.0.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1270775e833d2cbd0e5caf4f4b5d4daca0ce565e3a50ded3f265aa5af62f0cc3",
                "md5": "6e025e06ba7ba79510a178a0ce5886f4",
                "sha256": "c2eef9417c0c7d339846537ce539417aff0e546f05c9c52ae4494966322e0ce7"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6e025e06ba7ba79510a178a0ce5886f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 177345,
            "upload_time": "2024-03-12T05:13:35",
            "upload_time_iso_8601": "2024-03-12T05:13:35.702575Z",
            "url": "https://files.pythonhosted.org/packages/12/70/775e833d2cbd0e5caf4f4b5d4daca0ce565e3a50ded3f265aa5af62f0cc3/numpy_quaternion-2023.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e63d4af73124d291535fde2bb1dc063d3a592ac652707165a29e35a5495fc613",
                "md5": "5569205a0308c0d9deb60603a9e77ca5",
                "sha256": "6992f33b7f0b94a25ff31685eb5ab13d173ccdb996a40b28757da4120e852930"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5569205a0308c0d9deb60603a9e77ca5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 185631,
            "upload_time": "2024-03-12T05:13:38",
            "upload_time_iso_8601": "2024-03-12T05:13:38.017640Z",
            "url": "https://files.pythonhosted.org/packages/e6/3d/4af73124d291535fde2bb1dc063d3a592ac652707165a29e35a5495fc613/numpy_quaternion-2023.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f34d8a569033f98813c145783981d443aa74402ae09829f40d03ffd1c1ae6afd",
                "md5": "741bbfbec3303b39423bb6dee2974b2b",
                "sha256": "db804fed5bc128f4ff143bedf5ae987efc1f8c75b53956cc3f1194ed8732b4b8"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "741bbfbec3303b39423bb6dee2974b2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 192783,
            "upload_time": "2024-03-12T05:13:40",
            "upload_time_iso_8601": "2024-03-12T05:13:40.349874Z",
            "url": "https://files.pythonhosted.org/packages/f3/4d/8a569033f98813c145783981d443aa74402ae09829f40d03ffd1c1ae6afd/numpy_quaternion-2023.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "585e58d8c8e4dde74e048a7579fb9005cb926ee84187948f7ba49f9149d4d85d",
                "md5": "3611ff6146541c0610386f7a2dce3c4b",
                "sha256": "e3579c10c63a40fc466fa051419222fe17010c7ddabcd6300d7ae8ecdf4f68cc"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3611ff6146541c0610386f7a2dce3c4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 184180,
            "upload_time": "2024-03-12T05:13:42",
            "upload_time_iso_8601": "2024-03-12T05:13:42.176848Z",
            "url": "https://files.pythonhosted.org/packages/58/5e/58d8c8e4dde74e048a7579fb9005cb926ee84187948f7ba49f9149d4d85d/numpy_quaternion-2023.0.3-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3cc6e3c0c1865b36332307739157596143878f1abea3204b8ff44ef2a9fd9a5",
                "md5": "a92f53f606c701334d3515c77dcd26b3",
                "sha256": "c2f300ef729e3f0755e5518ef97770c27f29ebd5a1e58699adc2f045aad6958d"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a92f53f606c701334d3515c77dcd26b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 210431,
            "upload_time": "2024-03-12T05:13:43",
            "upload_time_iso_8601": "2024-03-12T05:13:43.955204Z",
            "url": "https://files.pythonhosted.org/packages/d3/cc/6e3c0c1865b36332307739157596143878f1abea3204b8ff44ef2a9fd9a5/numpy_quaternion-2023.0.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84e1ae2de9a7f08d7659f7e0917f3eba89124e63f5c799563ba1a686814592fe",
                "md5": "3294cfa3499438deefd93998c057eabf",
                "sha256": "3489f172485bb86c7f1875f35a885ebdc671e3b5d45eac0e227d141b36a5bf02"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "3294cfa3499438deefd93998c057eabf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 60848,
            "upload_time": "2024-03-12T05:13:45",
            "upload_time_iso_8601": "2024-03-12T05:13:45.741862Z",
            "url": "https://files.pythonhosted.org/packages/84/e1/ae2de9a7f08d7659f7e0917f3eba89124e63f5c799563ba1a686814592fe/numpy_quaternion-2023.0.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fea56a4077ef6c9fc78a2f579b4884525cfb43b194287353f858e0b66e0ae68c",
                "md5": "0e8e69e0e534a812db91fad104d014bf",
                "sha256": "fadc1caa87ac0d7e898250fe30d92e83aa3e0f441edba106d1bffa54b684054e"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0e8e69e0e534a812db91fad104d014bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 69740,
            "upload_time": "2024-03-12T05:13:47",
            "upload_time_iso_8601": "2024-03-12T05:13:47.851473Z",
            "url": "https://files.pythonhosted.org/packages/fe/a5/6a4077ef6c9fc78a2f579b4884525cfb43b194287353f858e0b66e0ae68c/numpy_quaternion-2023.0.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42a6580c8d3cf7108d4550153402b98c35999dfe387924af4edcd94394d74c7f",
                "md5": "de33b38f02149efedaa3125fefdd87e7",
                "sha256": "d0dba8b77df485ca9fdc9b1e8bf57fcbc34e9f08362b73a29df2d5bd72c50fe7"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "de33b38f02149efedaa3125fefdd87e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 87149,
            "upload_time": "2024-03-12T05:13:49",
            "upload_time_iso_8601": "2024-03-12T05:13:49.974056Z",
            "url": "https://files.pythonhosted.org/packages/42/a6/580c8d3cf7108d4550153402b98c35999dfe387924af4edcd94394d74c7f/numpy_quaternion-2023.0.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5927c1cd1a9fc228c090ec630e5621f47a2572f332ab71b867a713adb35f83e",
                "md5": "b65283e5b9a31e8bf079a0eebf39f99e",
                "sha256": "05c7b17fea1304e3f3aad8478148c671940abe6303c904c12da472ebb4e3c201"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b65283e5b9a31e8bf079a0eebf39f99e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 61367,
            "upload_time": "2024-03-12T05:13:51",
            "upload_time_iso_8601": "2024-03-12T05:13:51.548651Z",
            "url": "https://files.pythonhosted.org/packages/d5/92/7c1cd1a9fc228c090ec630e5621f47a2572f332ab71b867a713adb35f83e/numpy_quaternion-2023.0.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48cb0f3a99a52c48d68c3fe259a5e41caea6b3eacb84a20b4744fb109740d5a6",
                "md5": "5d47149ffe704553986c6502c036afa2",
                "sha256": "d65d06b1a8c4f153f3b830601e8c1a1c3d75a92b289c67f5394684de082b36ef"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5d47149ffe704553986c6502c036afa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 55956,
            "upload_time": "2024-03-12T05:13:53",
            "upload_time_iso_8601": "2024-03-12T05:13:53.473393Z",
            "url": "https://files.pythonhosted.org/packages/48/cb/0f3a99a52c48d68c3fe259a5e41caea6b3eacb84a20b4744fb109740d5a6/numpy_quaternion-2023.0.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8aedacb668ab12e40ac95dd61fc0feb794674c87c8f0d7a2101adb7838888e31",
                "md5": "ef436c761cb00696d18cfcff3cf622b3",
                "sha256": "68acbb54ea114b258259a588a3de2b190f58855ff6289a71efb26a22f659e863"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef436c761cb00696d18cfcff3cf622b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 177571,
            "upload_time": "2024-03-12T05:13:55",
            "upload_time_iso_8601": "2024-03-12T05:13:55.137103Z",
            "url": "https://files.pythonhosted.org/packages/8a/ed/acb668ab12e40ac95dd61fc0feb794674c87c8f0d7a2101adb7838888e31/numpy_quaternion-2023.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6440bb858c964696ccd4dd3e210a3e7ae453eb7c2321c25816afc5b44b987b9",
                "md5": "bff5c11232ce3ca4a9bbd56666db4fb4",
                "sha256": "a4e22488ce2a5f4d8b93aafa50d2d659719b46fb358648853d52db12d000f13c"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bff5c11232ce3ca4a9bbd56666db4fb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 185797,
            "upload_time": "2024-03-12T05:13:57",
            "upload_time_iso_8601": "2024-03-12T05:13:57.472163Z",
            "url": "https://files.pythonhosted.org/packages/a6/44/0bb858c964696ccd4dd3e210a3e7ae453eb7c2321c25816afc5b44b987b9/numpy_quaternion-2023.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57676675a07e349e5142007b1edfb44e8a66e3950abc52da45bba327e21126aa",
                "md5": "0f0a86dbed1bb04555114dfac7d2e25e",
                "sha256": "d4e452a95a55bb58016ff5b555cde3ffcf95a4a4ad4d6c92b8f05119324f3229"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f0a86dbed1bb04555114dfac7d2e25e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 194127,
            "upload_time": "2024-03-12T05:13:59",
            "upload_time_iso_8601": "2024-03-12T05:13:59.469740Z",
            "url": "https://files.pythonhosted.org/packages/57/67/6675a07e349e5142007b1edfb44e8a66e3950abc52da45bba327e21126aa/numpy_quaternion-2023.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54a5d8b279904c9e354a3d05f96b0303f443cf6f96dcb0f19a48184b673b8b2f",
                "md5": "0094b6fffc8a0c0e026a9616170b0c50",
                "sha256": "48693acbbb5868d56a370bafd1051d1c7c7ab39f1b852a29e67ac1258938cf4d"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0094b6fffc8a0c0e026a9616170b0c50",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 182228,
            "upload_time": "2024-03-12T05:14:01",
            "upload_time_iso_8601": "2024-03-12T05:14:01.924926Z",
            "url": "https://files.pythonhosted.org/packages/54/a5/d8b279904c9e354a3d05f96b0303f443cf6f96dcb0f19a48184b673b8b2f/numpy_quaternion-2023.0.3-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d4a1f383eac2a3b93158fa9c605c976f020c3ec4fef11b9139f1468e0f53565",
                "md5": "da53867a8e72286b6ab1718cd8f6056a",
                "sha256": "55ff80e4a2d6ca5d0e0e00e2ead59757e2816b50e97a19307ea09b56124bf5b1"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da53867a8e72286b6ab1718cd8f6056a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 208367,
            "upload_time": "2024-03-12T05:14:03",
            "upload_time_iso_8601": "2024-03-12T05:14:03.730003Z",
            "url": "https://files.pythonhosted.org/packages/2d/4a/1f383eac2a3b93158fa9c605c976f020c3ec4fef11b9139f1468e0f53565/numpy_quaternion-2023.0.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1ce7d4d433e5c12cf916fa1d9b15e2b552b74c59f3e889d7c61aecf6827eebe",
                "md5": "f31cadd25976c85acd4c2212c8e38698",
                "sha256": "1a99125c750ad5c7d17bf4c69b03fb9c86e418c582c9991ef9c119fd97a8a640"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "f31cadd25976c85acd4c2212c8e38698",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 60849,
            "upload_time": "2024-03-12T05:14:05",
            "upload_time_iso_8601": "2024-03-12T05:14:05.912608Z",
            "url": "https://files.pythonhosted.org/packages/f1/ce/7d4d433e5c12cf916fa1d9b15e2b552b74c59f3e889d7c61aecf6827eebe/numpy_quaternion-2023.0.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2942f928718d47d9334b9cd9b861869be87e6011c940fc9a3e5b386da6474013",
                "md5": "13700ce1165030ad40441b611641bcba",
                "sha256": "ed5667e9dd4c16f4d88407f041009374fd53c034b3d9b61a7496a515fb235a9b"
            },
            "downloads": -1,
            "filename": "numpy_quaternion-2023.0.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "13700ce1165030ad40441b611641bcba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 69740,
            "upload_time": "2024-03-12T05:14:08",
            "upload_time_iso_8601": "2024-03-12T05:14:08.423480Z",
            "url": "https://files.pythonhosted.org/packages/29/42/f928718d47d9334b9cd9b861869be87e6011c940fc9a3e5b386da6474013/numpy_quaternion-2023.0.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "306642eaef5f1a4e12a2008691987451936f6f00e18c38166eef24480a4a6e8c",
                "md5": "1da003052a3b2cf1fa24893af35888db",
                "sha256": "392bf3cb4eee36c0e9271534e93e39e46cdb4f7e2062b08cb38bd0872061ff6c"
            },
            "downloads": -1,
            "filename": "numpy-quaternion-2023.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "1da003052a3b2cf1fa24893af35888db",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 65476,
            "upload_time": "2024-03-12T05:14:10",
            "upload_time_iso_8601": "2024-03-12T05:14:10.563023Z",
            "url": "https://files.pythonhosted.org/packages/30/66/42eaef5f1a4e12a2008691987451936f6f00e18c38166eef24480a4a6e8c/numpy-quaternion-2023.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-12 05:14:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "moble",
    "github_project": "quaternion",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.13"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.5.0"
                ]
            ]
        },
        {
            "name": "numba",
            "specs": [
                [
                    ">=",
                    "0.49.1"
                ]
            ]
        }
    ],
    "lcname": "numpy-quaternion"
}
        
Elapsed time: 0.23324s