{ "info": { "author": "Vyas Ramasubramani", "author_email": "vramasub@umich.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Mathematics" ], "description": "# rowan\n\n[![ReadTheDocs Status](https://readthedocs.org/projects/rowan/badge/?version=latest)](http://rowan.readthedocs.io/en/latest/?badge=latest)\n[![CircleCI](https://circleci.com/gh/glotzerlab/rowan.svg?style=svg)](https://circleci.com/gh/glotzerlab/rowan)\n[![Codecov](https://codecov.io/gh/glotzerlab/rowan/branch/master/graph/badge.svg)](https://codecov.io/gh/glotzerlab/rowan)\n[![PyPI](https://img.shields.io/pypi/v/rowan.svg)](https://pypi.org/project/rowan/)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/2ff6c23cb9be4f77827428a87e0e9cfc)](https://www.codacy.com/app/vramasub/rowan?utm_source=github.com&utm_medium=referral&utm_content=glotzerlab/rowan&utm_campaign=Badge_Grade)\n[![Zenodo](https://zenodo.org/badge/DOI/10.5281/zenodo.1323676.svg)](https://doi.org/10.5281/zenodo.1323676)\n[![JOSS](http://joss.theoj.org/papers/10.21105/joss.00787/status.svg)](https://doi.org/10.21105/joss.00787)\n\nWelcome to rowan, a python package for quaternions.\nThe package is built entirely on top of NumPy and represents quaternions using NumPy arrays, meaning that all functions support arbitrarily high-dimensional arrays of quaternions.\nQuaternions are encoded as arrays of shape `(...,4)`, with the convention that the final dimension of an array `(a, b, c, d)` represents the quaternion `a + bi + cj + dk`.\nThe package covers all basic quaternion algebraic and calculus operations, and also provides features for measuring distances, performing point cloud mapping, and interpolating.\nIf you have any questions about how to work with rowan, please visit the\n[ReadTheDocs page](http://rowan.readthedocs.io/en/latest/).\n\n## Authors\n\n* Vyas Ramasubramani (Lead developer)\n\n## Setup\n\nThe recommended methods for installing rowan are using **pip** or **conda**.\n\n### Installation via pip\n\nTo install the package from PyPI, execute:\n```bash\npip install rowan --user\n```\n\n### Installation via conda\n\nTo install the package from conda, first add the **conda-forge** channel:\n```bash\nconda config --add channels conda-forge\n```\n\nAfter the **conda-forge** channel has been added, you can install rowan by\nexecuting\n```bash\nconda install rowan\n```\n\n### Installation from source\n\nTo install from source, execute:\n```bash\ngit clone https://github.com/glotzerlab/rowan.git\ncd rowan\npython setup.py install --user\n```\n\n### Requirements\n\n* Python = 2.7, >= 3.3\n* NumPy >= 1.10\n\n## Testing\n\nThe package is currently tested for Python versions 2.7 and Python >= 3.3 on Unix-like systems.\nContinuous integrated testing is performed using CircleCI on these Python versions with NumPy versions 1.10 and above.\n\nTo run the packaged unit tests, execute the following line from the root of the repository:\n\n```bash\npython -m unittest discover tests\n```\n\nTo check test coverage, make sure the coverage module is installed:\n\n```bash\npip install coverage\n```\n\nand then run the packaged unit tests with the coverage module:\n\n```bash\ncoverage run -m unittest discover tests\n```\n\n## Quickstart\nThis library can be used to work with quaternions by simply instantiating the appropriate NumPy arrays and passing them to the required functions.\nFor example:\n\n```python\nimport rowan\nimport numpy as np\none = np.array([10, 0, 0, 0])\none_unit = rowan.normalize(one)\nassert(np.all(one_unit == np.array([1, 0, 0, 0])))\nif not np.all(one_unit == rowan.multiply(one_unit, one_unit)):\n raise RuntimeError(\"Multiplication failed!\")\n\none_vec = np.array([1, 0, 0])\nrotated_vector = rowan.rotate(one_unit, one_vec)\n\nmat = np.eye(3)\nquat_rotate = rowan.from_matrix(mat)\nalpha, beta, gamma = rowan.to_euler(quat_rotate)\nquat_rotate_returned = rowan.from_euler(alpha, beta, gamma)\nidentity = rowan.to_matrix(quat_rotate_returned)\n```\n\n## Documentation\nDocumentation for rowan is written in [reStructuredText](http://docutils.sourceforge.net/rst.html) and compiled using [Sphinx](http://www.sphinx-doc.org/en/master/).\nTo build the documentation, first install Sphinx:\n\n```bash\npip install sphinx sphinx_rtd_theme\n```\n\nYou can then use Sphinx to create the actual documentation in either PDF or HTML form by running the following commands in the rowan root directory:\n\n```bash\ncd doc\nmake html # For html output\nmake latexpdf # For a LaTeX compiled PDF file\nopen build/html/index.html\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/glotzerlab/rowan", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "rowan", "package_url": "https://pypi.org/project/rowan/", "platform": "", "project_url": "https://pypi.org/project/rowan/", "project_urls": { "Homepage": "https://github.com/glotzerlab/rowan" }, "release_url": "https://pypi.org/project/rowan/1.2.2/", "requires_dist": [ "numpy (>=1.10)" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "summary": "Perform quaternion operations using NumPy arrays", "version": "1.2.2" }, "last_serial": 5816193, "releases": { "0.4.3": [ { "comment_text": "", "digests": { "md5": "e8859e093595f3aaf52136f307b1a5a7", "sha256": "ffe372fd64de6726d883ebd0a82cf7b01e89217011544bfee462c3e0b7ec4047" }, "downloads": -1, "filename": "rowan-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e8859e093595f3aaf52136f307b1a5a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 14078, "upload_time": "2018-04-11T14:53:44", "url": "https://files.pythonhosted.org/packages/87/57/7a52b2c281aefe07fb6537ffbcf76ce443079b3d072777908d11820bce12/rowan-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efbbe050306257b9aca2abb5ad93dcb0", "sha256": "117788050be4ea386e43ab75a2370ab0386a291b0f6753a11955e22ffd9b20d8" }, "downloads": -1, "filename": "rowan-0.4.3.tar.gz", "has_sig": false, "md5_digest": "efbbe050306257b9aca2abb5ad93dcb0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 16045, "upload_time": "2018-04-11T14:53:45", "url": "https://files.pythonhosted.org/packages/93/e6/f3a671d8b71019fcf4f4107c4c752b18cb9c51f574ce63332c1ac08f512d/rowan-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "d0eea0807fb8e04d4bbf6b324a69cf7b", "sha256": "d4aaef98fab00bd6ebc3b0495e944a7fcb9419a50209deda2f676a3550ff55c3" }, "downloads": -1, "filename": "rowan-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d0eea0807fb8e04d4bbf6b324a69cf7b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 18324, "upload_time": "2018-04-13T03:51:37", "url": "https://files.pythonhosted.org/packages/a9/24/b4434150cfb5ff519fdb92404436918104cefaa0bb7323f63dba445ddd54/rowan-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3da6a6bb2234ef745cdef7f0cbf047f2", "sha256": "74028b22c64386cdee2ffa28bc660568cae3a89d29085f5686c9a39c3c0cb95f" }, "downloads": -1, "filename": "rowan-0.5.0.tar.gz", "has_sig": false, "md5_digest": "3da6a6bb2234ef745cdef7f0cbf047f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 19205, "upload_time": "2018-04-13T03:51:38", "url": "https://files.pythonhosted.org/packages/ec/7b/6d21b4c24838c1410ebffcbf8b76a933d700194f24b63090c85c67730a7c/rowan-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "71ad3f3fc477e87fb93298466c0040be", "sha256": "a2ee286176505a1843caf117f266481b657f65558c40e426b10ff03dffdc5767" }, "downloads": -1, "filename": "rowan-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "71ad3f3fc477e87fb93298466c0040be", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 18350, "upload_time": "2018-04-13T04:39:50", "url": "https://files.pythonhosted.org/packages/93/df/6bfe6cc33cc9eab147f8063e295e9d85eb12dd5945add6811eefb1f6398d/rowan-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a006adee7e72242cdc8286834aef174", "sha256": "0d5467664369a488ddab28820f9dfd0ec3464e32791ad7dbefe847806a811175" }, "downloads": -1, "filename": "rowan-0.5.1.tar.gz", "has_sig": false, "md5_digest": "4a006adee7e72242cdc8286834aef174", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 19294, "upload_time": "2018-04-13T04:39:51", "url": "https://files.pythonhosted.org/packages/42/8d/4fbc121fc6ecf8a0e3d6bce19261cda6957aba3a16b200f74e2665acf474/rowan-0.5.1.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "6a99c46834ce8c392bdd2db0dfef987e", "sha256": "ce7910e5190928b4f9f70b78c0a8a4308b0740fd0ea04e8b05baf907a13f6b68" }, "downloads": -1, "filename": "rowan-0.6.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a99c46834ce8c392bdd2db0dfef987e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 22639, "upload_time": "2018-04-21T01:10:57", "url": "https://files.pythonhosted.org/packages/25/48/d837a906b14dff918f3de9892266ddb14a6cd484939b65224989a7916c7b/rowan-0.6.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a81120e5110be8aa1cbb9bfa4b5a4815", "sha256": "28dbcd607e302fa9e147f6a065a936c57c742e01bbce4c52e920497fd477fc6f" }, "downloads": -1, "filename": "rowan-0.6.1.1.tar.gz", "has_sig": false, "md5_digest": "a81120e5110be8aa1cbb9bfa4b5a4815", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 23100, "upload_time": "2018-04-21T01:10:59", "url": "https://files.pythonhosted.org/packages/c2/d2/78d85997079219c8ec17ae835d849e0aa09d2441ad39368ac4f94416f268/rowan-0.6.1.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "3aa789e16f31df53bd83b1cf947fc721", "sha256": "48396f5dd13196c0e2a159fa38efc5b90d911fa7f0796c5b5f7754ae28ebb0ea" }, "downloads": -1, "filename": "rowan-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3aa789e16f31df53bd83b1cf947fc721", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 22932, "upload_time": "2018-05-29T16:20:41", "url": "https://files.pythonhosted.org/packages/5d/8b/8acde21be78058d8185974fd69919316308d42394d697c58cecf88d91ba1/rowan-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7aa0d49cb250f7bf51576bb6d104e60a", "sha256": "a19b635a39c12276e10ed35cbe3f9972dc2c7229f707552b33113517b4338530" }, "downloads": -1, "filename": "rowan-1.0.0.tar.gz", "has_sig": false, "md5_digest": "7aa0d49cb250f7bf51576bb6d104e60a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 23499, "upload_time": "2018-05-29T16:20:43", "url": "https://files.pythonhosted.org/packages/d6/89/250380b51733949342d6d78d6281f5fefe54e4340e2d13df4ffe49e207f1/rowan-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "0882e0a1af07c4f7feea49cf379dfe07", "sha256": "0b57c52ea7db46b6474ee6088e51441072826fd2f18b6e25d9e2349352e4ce21" }, "downloads": -1, "filename": "rowan-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0882e0a1af07c4f7feea49cf379dfe07", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 24566, "upload_time": "2018-07-30T22:49:41", "url": "https://files.pythonhosted.org/packages/f0/8a/8629e34480b35911678e1a4d7a2f7f8e64e084aae55fee922ae65fc67f92/rowan-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0e0c96001d3b46a205d0b5e9852098e", "sha256": "44093d4d92a7020a2fef133f76db1b57af509d8e2e6d8c8922fa7a7230a512de" }, "downloads": -1, "filename": "rowan-1.1.0.tar.gz", "has_sig": false, "md5_digest": "d0e0c96001d3b46a205d0b5e9852098e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 25239, "upload_time": "2018-07-30T22:49:42", "url": "https://files.pythonhosted.org/packages/6e/e8/0a69625777bba38e65e3289a11e0f22cd89f2a31fc9f3ba408d553359956/rowan-1.1.0.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "393259d3fb2d02cc0ee807d31ecbd360", "sha256": "4a89c258d3d89fe2f5a770ca71c0e7b2d87262168044f8fd98cfcfda6620f7e6" }, "downloads": -1, "filename": "rowan-1.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "393259d3fb2d02cc0ee807d31ecbd360", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 25668, "upload_time": "2018-10-18T20:01:10", "url": "https://files.pythonhosted.org/packages/b0/f5/e46efefb20b046d59f58501b6813be01927b93acd5a9be38d97b9f7dcd01/rowan-1.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "473eb32ce04c64046aad29f65160f858", "sha256": "4ac4a1140bdc80816f3125b755b87b0303f7cb195385c1c4464935d75062eaa7" }, "downloads": -1, "filename": "rowan-1.1.6.tar.gz", "has_sig": false, "md5_digest": "473eb32ce04c64046aad29f65160f858", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 23749, "upload_time": "2018-10-18T20:01:11", "url": "https://files.pythonhosted.org/packages/64/43/3d2b101c94607e758eaf4b0026fce8a56de6c31ad611f23bbf751f1e7670/rowan-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "6c5daf6fc529ec41f8f308501ba4d3a7", "sha256": "713b2ed5bfd118ea95d6883d969fea629e32153da866b474eb0059c11d3a254e" }, "downloads": -1, "filename": "rowan-1.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c5daf6fc529ec41f8f308501ba4d3a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 24544, "upload_time": "2019-01-23T23:01:52", "url": "https://files.pythonhosted.org/packages/9e/e3/5d7768a5ffd47db752a0e64e0a8f40c3cf9870d0d0e8096193c9ba777e99/rowan-1.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ecce4353cd57ef0e8c578a69769822e", "sha256": "7d3821011ddf795e1bd764954de7355a458b42c6eca57bb97fa3a10f0fd2d328" }, "downloads": -1, "filename": "rowan-1.1.7.tar.gz", "has_sig": false, "md5_digest": "3ecce4353cd57ef0e8c578a69769822e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 25154, "upload_time": "2019-01-23T23:01:53", "url": "https://files.pythonhosted.org/packages/22/07/3e3d5367a85e0932995e0983a6d1f2848a22cafdf7e0728b738c3dfef411/rowan-1.1.7.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "0a3892c0509c24917546eaa9b5f69d87", "sha256": "3df46863f0548ae8268bedd6e80a8f5d1ba9ad1d02222bf205bbb37e8d826e84" }, "downloads": -1, "filename": "rowan-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a3892c0509c24917546eaa9b5f69d87", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 25634, "upload_time": "2019-02-12T21:00:35", "url": "https://files.pythonhosted.org/packages/af/e8/73355e9dcf5cd6095f9a6e73221ed382b35750989db68ab46c58e8409f52/rowan-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e7777c82a43fa16d6fcb7b8bde0f29b", "sha256": "f9f7f092b1e3c5b5fdfd193f3e4a2f989ea1efe52e7c07c5a2f33863914fbe9f" }, "downloads": -1, "filename": "rowan-1.2.0.tar.gz", "has_sig": false, "md5_digest": "3e7777c82a43fa16d6fcb7b8bde0f29b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 25811, "upload_time": "2019-02-12T21:00:37", "url": "https://files.pythonhosted.org/packages/40/e2/b6bd784172c533106b00d107774674750cbfb616ae9a856fc670be79f160/rowan-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "bcda076528e43e367233d7b9e4c72641", "sha256": "1d98bc5e0ff083991b0229aca5a69f5561ea3f51e4eaf661a7a27df56d2e3335" }, "downloads": -1, "filename": "rowan-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcda076528e43e367233d7b9e4c72641", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 25677, "upload_time": "2019-05-30T17:37:10", "url": "https://files.pythonhosted.org/packages/b3/c8/a86c49c801b814b95d29681d5b1c2a98dbc99356a5a2adafed8bd5668abb/rowan-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e52339ec1242e8089ef8fa5adb7b0cb2", "sha256": "c3d263dc9f2b27af989fe82391b89ccb4bc5e1c3d7705e56c586014c1c718a5e" }, "downloads": -1, "filename": "rowan-1.2.1.tar.gz", "has_sig": false, "md5_digest": "e52339ec1242e8089ef8fa5adb7b0cb2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 26862, "upload_time": "2019-05-30T17:37:11", "url": "https://files.pythonhosted.org/packages/91/5b/fdd39670695b6dbe6aca67dc2ab98d9f65e22f588cbc2d94fdc90c618aea/rowan-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "35cfbd9d1518804e43be2f3423f319fb", "sha256": "c4b39070ce219989504dacc99cadebf752489331ec8d9851b4eb574ddddce243" }, "downloads": -1, "filename": "rowan-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "35cfbd9d1518804e43be2f3423f319fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 27201, "upload_time": "2019-09-11T17:51:30", "url": "https://files.pythonhosted.org/packages/1f/a1/9cb0ac53b14d9f700d2f5791fb661e7db2dd8a1996283f9b24496de7cda6/rowan-1.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a59a62ca3c8cf33aa1365afcca59ec7b", "sha256": "eec83a8bc86ab010ebda8985917fb8c93973c263d2031bd4e22b70c3d61157dc" }, "downloads": -1, "filename": "rowan-1.2.2.tar.gz", "has_sig": false, "md5_digest": "a59a62ca3c8cf33aa1365afcca59ec7b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 28495, "upload_time": "2019-09-11T17:51:32", "url": "https://files.pythonhosted.org/packages/85/5f/cc8a695ff9c62904f50e268e19a23ff502d2d5d262e2fe365f5999ee01be/rowan-1.2.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "35cfbd9d1518804e43be2f3423f319fb", "sha256": "c4b39070ce219989504dacc99cadebf752489331ec8d9851b4eb574ddddce243" }, "downloads": -1, "filename": "rowan-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "35cfbd9d1518804e43be2f3423f319fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 27201, "upload_time": "2019-09-11T17:51:30", "url": "https://files.pythonhosted.org/packages/1f/a1/9cb0ac53b14d9f700d2f5791fb661e7db2dd8a1996283f9b24496de7cda6/rowan-1.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a59a62ca3c8cf33aa1365afcca59ec7b", "sha256": "eec83a8bc86ab010ebda8985917fb8c93973c263d2031bd4e22b70c3d61157dc" }, "downloads": -1, "filename": "rowan-1.2.2.tar.gz", "has_sig": false, "md5_digest": "a59a62ca3c8cf33aa1365afcca59ec7b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 28495, "upload_time": "2019-09-11T17:51:32", "url": "https://files.pythonhosted.org/packages/85/5f/cc8a695ff9c62904f50e268e19a23ff502d2d5d262e2fe365f5999ee01be/rowan-1.2.2.tar.gz" } ] }