{ "info": { "author": "Leo C. Stein", "author_email": "leo.stein@gmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Astronomy", "Topic :: Scientific/Engineering :: Physics" ], "description": "[![github](https://img.shields.io/badge/GitHub-qnm-blue.svg)](https://github.com/duetosymmetry/qnm)\n[![PyPI version](https://badge.fury.io/py/qnm.svg)](https://badge.fury.io/py/qnm)\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2593978.svg)](https://zenodo.org/record/2593978)\n[![JOSS status](https://joss.theoj.org/papers/85532a74baaa67a24518de1365f1bcf5/status.svg)](https://joss.theoj.org/papers/85532a74baaa67a24518de1365f1bcf5)\n[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/duetosymmetry/qnm/blob/master/LICENSE)\n[![Build Status](https://travis-ci.org/duetosymmetry/qnm.svg?branch=master)](https://travis-ci.org/duetosymmetry/qnm)\n[![Documentation Status](https://readthedocs.org/projects/qnm/badge/?version=latest)](https://qnm.readthedocs.io/en/latest/?badge=latest)\n\n\n# Welcome to qnm\n`qnm` is an open-source Python package for computing the Kerr\nquasinormal mode frequencies, angular separation constants, and\nspherical-spheroidal mixing coefficients. The `qnm` package includes a\nLeaver solver with the [Cook-Zalutskiy spectral\napproach](https://arxiv.org/abs/1410.7698) to the angular sector, and\na caching mechanism to avoid repeating calculations.\n\nWith this python package, you can compute the QNMs labeled by\ndifferent (s,l,m,n), at a desired dimensionless spin parameter 0\u2264a<1.\nThe angular sector is treated as a spectral decomposition of\nspin-weighted *spheroidal* harmonics into spin-weighted spherical\nharmonics. Therefore you get the spherical-spheroidal decomposition\ncoefficients for free when solving for \u03c9 and A ([see below for\ndetails](#spherical-spheroidal-decomposition)).\n\nWe have precomputed a large cache of low-lying modes (s=-2 and s=-1,\nall l<8, all n<7). These can be automatically installed with a single\nfunction call, and interpolated for good initial guesses for\nroot-finding at some value of a.\n\n## Installation\n\n### PyPI\n_**qnm**_ is available through [PyPI](https://pypi.org/project/qnm/):\n\n```shell\npip install qnm\n```\n\n### From source\n\n```shell\ngit clone https://github.com/duetosymmetry/qnm.git\ncd qnm\npython setup.py install\n```\n\nIf you do not have root permissions, replace the last step with\n`python setup.py install --user`. Instead of using `setup.py`\nmanually, you can also replace the last step with `pip install .` or\n`pip install --user .`.\n\n## Dependencies\nAll of these can be installed through pip or conda.\n* [numpy](https://docs.scipy.org/doc/numpy/user/install.html)\n* [scipy](https://www.scipy.org/install.html)\n* [numba](http://numba.pydata.org/numba-doc/latest/user/installing.html)\n* [tqdm](https://tqdm.github.io) (just for `qnm.download_data()` progress)\n* [pathlib2](https://pypi.org/project/pathlib2/) (backport of\n `pathlib` to pre-3.4 python)\n\n## Documentation\n\nAutomatically-generated API documentation is available on [Read the Docs: qnm](https://qnm.readthedocs.io/).\n\n\n## Usage\n\nThe highest-level interface is via `qnm.cached.KerrSeqCache`, which\nloads cached *spin sequences* from disk. A spin sequence is just a mode\nlabeled by (s,l,m,n), with the spin a ranging from a=0 to some\nmaximum, e.g. 0.9995. A large number of low-lying spin sequences have\nbeen precomputed and are available online. The first time you use the\npackage, download the precomputed sequences:\n\n```python\nimport qnm\n\nqnm.download_data() # Only need to do this once\n# Trying to fetch https://duetosymmetry.com/files/qnm/data.tar.bz2\n# Trying to decompress file //qnm/data.tar.bz2\n# Data directory //qnm/data contains 860 pickle files\n```\n\nThen, use `qnm.modes_cache` to load a\n`qnm.spinsequence.KerrSpinSeq` of interest. If the mode is not\navailable, it will try to compute it (see detailed documentation for\nhow to control that calculation).\n\n```python\ngrav_220 = qnm.modes_cache(s=-2,l=2,m=2,n=0)\nomega, A, C = grav_220(a=0.68)\nprint(omega)\n# (0.5239751042900845-0.08151262363119974j)\n```\n\nCalling a spin sequence `seq` with `seq(a)` will return the complex\nquasinormal mode frequency omega, the complex angular separation\nconstant A, and a vector C of coefficients for decomposing the\nassociated spin-weighted spheroidal harmonics as a sum of\nspin-weighted spherical harmonics ([see below for\ndetails](#spherical-spheroidal-decomposition)).\n\nVisual inspections of modes are very useful to check if the solver is\nbehaving well. This is easily accomplished with matplotlib. Here are\nsome partial examples (for the full examples, see the file\n[`notebooks/examples.ipynb`](notebooks/examples.ipynb) in the source repo):\n\n```python\nimport numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\n\ns, l, m = (-2, 2, 2)\nmode_list = [(s, l, m, n) for n in np.arange(0,7)]\nmodes = { ind : qnm.modes_cache(*ind) for ind in mode_list }\n\nplt.subplot(1, 2, 1)\nfor mode, seq in modes.items():\n plt.plot(np.real(seq.omega),np.imag(seq.omega))\n\nplt.subplot(1, 2, 2)\nfor mode, seq in modes.items():\n plt.plot(np.real(seq.A),np.imag(seq.A))\n```\n\nWhich results in the following figure (modulo formatting):\n\n![example_22n plot](notebooks/example_22n.png)\n\n```python\ns, l, n = (-2, 2, 0)\nmode_list = [(s, l, m, n) for m in np.arange(-l,l+1)]\nmodes = { ind : qnm.modes_cache(*ind) for ind in mode_list }\n\nplt.subplot(1, 2, 1)\nfor mode, seq in modes.items():\n plt.plot(np.real(seq.omega),np.imag(seq.omega))\n\nplt.subplot(1, 2, 2)\nfor mode, seq in modes.items():\n plt.plot(np.real(seq.A),np.imag(seq.A))\n```\n\nWhich results in the following figure (modulo formatting):\n\n![example_2m0 plot](notebooks/example_2m0.png)\n\n## Precision and validation\n\nThe default tolerances for continued fractions, `cf_tol`, is 1e-10, and\nfor complex root-polishing, `tol`, is DBL_EPSILON\u22451.5e-8. These can\nbe changed at runtime so you can re-polish the cached values to higher\nprecision.\n\n[Greg Cook's precomputed data\ntables](https://zenodo.org/record/2650358) (which were computed with\narbitrary-precision arithmetic) can be used for validating the results\nof this code. See the comparison notebook\n[`notebooks/Comparison-against-Cook-data.ipynb`](notebooks/Comparison-against-Cook-data.ipynb)\nto see such a comparison, which can be modified to compare any of the\navailable modes.\n\n## Spherical-spheroidal decomposition\n\nThe angular dependence of QNMs are naturally spin-weighted *spheroidal*\nharmonics. The spheroidals are not actually a complete orthogonal\nbasis set. Meanwhile spin-weighted *spherical* harmonics are complete\nand orthonormal, and are used much more commonly. Therefore you\ntypically want to express a spheroidal (on the left hand side) in\nterms of sphericals (on the right hand side),\n\n![equation `$${}_s Y_{\\\\ell m}(\\\\theta, \\\\phi; a\\\\omega) = {\\\\sum_{\\\\ell'=\\\\ell_{\\\\min} (s,m)}^{\\\\ell_\\\\max}} C_{\\\\ell' \\\\ell m}(a\\\\omega)\\\\ {}_s Y_{\\\\ell' m}(\\\\theta, \\\\phi) \\\\,.$$`](https://latex.codecogs.com/gif.latex?%7B%7D_s%20Y_%7B%5Cell%20m%7D%28%5Ctheta%2C%20%5Cphi%3B%20a%5Comega%29%20%3D%20%7B%5Csum_%7B%5Cell%27%3D%5Cell_%7B%5Cmin%7D%20%28s%2Cm%29%7D%5E%7B%5Cell_%5Cmax%7D%7D%20C_%7B%5Cell%27%20%5Cell%20m%7D%28a%5Comega%29%5C%20%7B%7D_s%20Y_%7B%5Cell%27%20m%7D%28%5Ctheta%2C%20%5Cphi%29%20%5C%2C.)\n\nHere \u2113min=max(|m|,|s|) and \u2113max can be chosen at run time. The C\ncoefficients are returned as a complex ndarray, with the zeroth\nelement corresponding to \u2113min.\nTo avoid indexing errors, you can get the ndarray of \u2113 values by\ncalling `qnm.angular.ells`, e.g.\n\n```\nells = qnm.angular.ells(s=-2, m=2, l_max=grav_220.l_max)\n```\n\n## Contributing\nContributions are welcome! There are at least two ways to contribute to this codebase:\n\n1. If you find a bug or want to suggest an enhancement, use the [issue tracker](https://github.com/duetosymmetry/qnm/issues) on GitHub. It's a good idea to look through past issues, too, to see if anybody has run into the same problem or made the same suggestion before.\n2. If you will write or edit the python code, we use the [fork and pull request](https://help.github.com/articles/creating-a-pull-request-from-a-fork/) model.\n\nYou are also allowed to make use of this code for other purposes, as detailed in the [MIT license](LICENSE). For any type of contribution, please follow the [code of conduct](CODE_OF_CONDUCT.md).\n\n## How to cite\nIf this package contributes to a project that leads to a publication,\nplease acknowledge this by citing the `qnm` article in JOSS. The\nfollowing BibTeX entry is available in the `qnm.__bibtex__` string:\n```\n@article{Stein:2019mop,\n author = \"Stein, Leo C.\",\n title = \"{qnm: A Python package for calculating Kerr quasinormal\n modes, separation constants, and spherical-spheroidal\n mixing coefficients}\",\n year = \"2019\",\n eprint = \"1908.10377\",\n archivePrefix = \"arXiv\",\n primaryClass = \"gr-qc\",\n SLACcitation = \"%%CITATION = ARXIV:1908.10377;%%\"\n}\n```\n\n## Credits\nThe code is developed and maintained by [Leo C. Stein](https://duetosymmetry.com).\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/duetosymmetry/qnm/", "keywords": "black holes quasinormal modes physics scientific computing numerical methods", "license": "", "maintainer": "", "maintainer_email": "", "name": "qnm", "package_url": "https://pypi.org/project/qnm/", "platform": "", "project_url": "https://pypi.org/project/qnm/", "project_urls": { "Homepage": "https://github.com/duetosymmetry/qnm/" }, "release_url": "https://pypi.org/project/qnm/0.4.0/", "requires_dist": [ "numpy", "scipy", "numba", "tqdm", "pathlib2 ; python_version < \"3.4\"" ], "requires_python": "", "summary": "Calculate quasinormal modes of Kerr black holes.", "version": "0.4.0" }, "last_serial": 5881221, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "4c4383979e4fd25e0f9a21f3b5b30d5e", "sha256": "b98247ce7cd0a710bd5261cd6086304cb78bd3f962c701aa5c8d1dde5ce1c4d9" }, "downloads": -1, "filename": "qnm-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4c4383979e4fd25e0f9a21f3b5b30d5e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 68443, "upload_time": "2019-02-17T06:32:31", "url": "https://files.pythonhosted.org/packages/eb/e1/e70b8d1325b2f9f778cd3c3ed9cd09a9bbbbf80375526ff235510a0c49ae/qnm-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3bfdde652af4318665e6bec8107da766", "sha256": "47beec7e412e195df60ed6597e0648328d799c67e4e8f335ff25112e9b38269b" }, "downloads": -1, "filename": "qnm-0.1.1.tar.gz", "has_sig": false, "md5_digest": "3bfdde652af4318665e6bec8107da766", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13304, "upload_time": "2019-02-17T06:32:34", "url": "https://files.pythonhosted.org/packages/aa/76/5b3f03aa764353ba36116caab652dc682b1f8e140725621ee75fac67c3fb/qnm-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "d67bb9c3aa0ab0af8e5b6f9c9fff2c1f", "sha256": "2b15177d2481370bed71c3d8ce41994ae57e1f6e2274cb4277a457341b35015c" }, "downloads": -1, "filename": "qnm-0.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "d67bb9c3aa0ab0af8e5b6f9c9fff2c1f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 74021, "upload_time": "2019-02-18T17:36:19", "url": "https://files.pythonhosted.org/packages/bc/70/3d09be20cc90924803a6e640b651dbc9dd3e5e5c60803f61776e286e3980/qnm-0.1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "811daf2addff6ae7ae36988434a2a05f", "sha256": "a00f4ee832a65796d4ca0c1c884682ac30de8414742640ea0a6456c8a754b534" }, "downloads": -1, "filename": "qnm-0.1.2.tar.gz", "has_sig": false, "md5_digest": "811daf2addff6ae7ae36988434a2a05f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15265, "upload_time": "2019-02-18T17:36:21", "url": "https://files.pythonhosted.org/packages/41/01/7c50f04491244abb01897f7712c02cf25e9b5c4fdc62a4805dd5cdf9e876/qnm-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "71e8d67667ac9e5b4f66d23f559b498e", "sha256": "8ab331bc719994776cf30d8d3f0ea81c42dc8055062f16f419417d8003d0aa98" }, "downloads": -1, "filename": "qnm-0.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "71e8d67667ac9e5b4f66d23f559b498e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 75707, "upload_time": "2019-02-18T23:43:36", "url": "https://files.pythonhosted.org/packages/8a/52/425d3d4c06cbd4aa87095c5f5ebce913983dd4a058f57787dbed62ea20c2/qnm-0.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24dc557096aa99aec7bc502f2105c679", "sha256": "ea306b2ba7dbe31bc12e4b3c0588c7b014c1b9ee44ef259bbbd392d77893c7d0" }, "downloads": -1, "filename": "qnm-0.1.3.tar.gz", "has_sig": false, "md5_digest": "24dc557096aa99aec7bc502f2105c679", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16874, "upload_time": "2019-02-18T23:43:38", "url": "https://files.pythonhosted.org/packages/36/7b/560500f71372098bacc155406e5381838c2793427ceba88313e70c6059d0/qnm-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "4aef281e57aa45e1c882d7c8672003ac", "sha256": "c8ea637a32e803c1b302eff38626bc7b06937a57bb4b008de1440184ad813a70" }, "downloads": -1, "filename": "qnm-0.1.4-py2-none-any.whl", "has_sig": false, "md5_digest": "4aef281e57aa45e1c882d7c8672003ac", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 80071, "upload_time": "2019-02-25T03:39:24", "url": "https://files.pythonhosted.org/packages/6d/80/454fbe7c5affd0997ec31ea1ad7acc577b61771f2e4441be6317ed49550b/qnm-0.1.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3150121f237a9da6e7ceaca94ec7d755", "sha256": "bb8806e32617dd00ed2138ed87231597342fe0cd1ea388f0fb57c4cc9393342b" }, "downloads": -1, "filename": "qnm-0.1.4.tar.gz", "has_sig": false, "md5_digest": "3150121f237a9da6e7ceaca94ec7d755", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18286, "upload_time": "2019-02-25T03:39:28", "url": "https://files.pythonhosted.org/packages/e1/22/8d5c347f934cca7c5843da64275c59dc7f6fd89c328f7c7645eb4155dc2f/qnm-0.1.4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "c895a71b0bb633935bca4df210d694e6", "sha256": "cadf332771f93644d40c208db457f56bf4a19968dc83b5a1da32752fb6181678" }, "downloads": -1, "filename": "qnm-0.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c895a71b0bb633935bca4df210d694e6", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 84556, "upload_time": "2019-03-10T01:02:49", "url": "https://files.pythonhosted.org/packages/bd/ad/0e79024bbe5e087b9df156902a8d08636c861cce4e83d9abf7bbc6e44a52/qnm-0.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26653dfe19ea8dffb0931956ed9bcdae", "sha256": "b6e7d6a393cca3ec36f9341eb2190a6e6f2fcc5adab9c44623ca0f47179d8778" }, "downloads": -1, "filename": "qnm-0.2.0.tar.gz", "has_sig": false, "md5_digest": "26653dfe19ea8dffb0931956ed9bcdae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22482, "upload_time": "2019-03-10T01:02:53", "url": "https://files.pythonhosted.org/packages/a3/b4/4e98b834d4c42c0510f8d40fc10d1e7dd8ede03089f991578af77d2284c5/qnm-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "c7036989eccb52335d28a07a25670ac9", "sha256": "fc24ecc47a298af53e5a5c90d6c6fb45a9e65754fbfa70c3b978ff5f181c9202" }, "downloads": -1, "filename": "qnm-0.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "c7036989eccb52335d28a07a25670ac9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 85978, "upload_time": "2019-03-11T03:37:30", "url": "https://files.pythonhosted.org/packages/c4/6e/7db043bbb6a7684413d152f6bfd1b3245f8ae2e495ff3c8f4f1ca125a768/qnm-0.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8f869c63e91ab9be8068677c6d761bd", "sha256": "682ee14e6c99218596955a4781b49657651d3ce8a7b2ff9a164c6c043b74bdeb" }, "downloads": -1, "filename": "qnm-0.2.1.tar.gz", "has_sig": false, "md5_digest": "c8f869c63e91ab9be8068677c6d761bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24676, "upload_time": "2019-03-11T03:37:31", "url": "https://files.pythonhosted.org/packages/71/e7/4239a53dac2abf4c4ae355f8379b23604e877852a5c409238cc976a19f8f/qnm-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "01dcba21654d1b043b695eb7aaf6d784", "sha256": "fe68b10382ca0d4d9f82fe04db5ae3936e6c3edbfd5c436c632500426cd2ad8a" }, "downloads": -1, "filename": "qnm-0.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "01dcba21654d1b043b695eb7aaf6d784", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 85979, "upload_time": "2019-03-13T02:07:07", "url": "https://files.pythonhosted.org/packages/b5/a8/341aaa2c0caf25e62d302b2dbdcb492cc1f48b663f63a666b255771a0406/qnm-0.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bfbf9bf41cb52697da827cca19cb757a", "sha256": "a01606571dfa60f9a0c99455930e682a948a3a588037b69d40dd936f48ed3c42" }, "downloads": -1, "filename": "qnm-0.2.2.tar.gz", "has_sig": false, "md5_digest": "bfbf9bf41cb52697da827cca19cb757a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24666, "upload_time": "2019-03-13T02:07:08", "url": "https://files.pythonhosted.org/packages/d0/36/b6309200893663339434ea172aad22aeb8b443c65f16a394217522d9fde2/qnm-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "0c763bd8a27abf8a6e7520af4050a9ab", "sha256": "fb1a4d3f754a958fd777fd06628803dc44da8f570028ca79d048a75186a5bc42" }, "downloads": -1, "filename": "qnm-0.2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "0c763bd8a27abf8a6e7520af4050a9ab", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 86311, "upload_time": "2019-03-14T22:47:44", "url": "https://files.pythonhosted.org/packages/96/05/73409de334d2585bae3f4d545e6342421f45312a56d50b0e20083c98cda1/qnm-0.2.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d82d6f4b2541769e45af7ae2f92d9b65", "sha256": "d5c00b90380a7286101ecf2f8767985927a985592406a358ce8efea7f0508cfe" }, "downloads": -1, "filename": "qnm-0.2.3.tar.gz", "has_sig": false, "md5_digest": "d82d6f4b2541769e45af7ae2f92d9b65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24997, "upload_time": "2019-03-14T22:47:46", "url": "https://files.pythonhosted.org/packages/e3/57/e651cc1aa269a4e45333e8fd7cafdd15cd7d37ceee9f5c2fef43ee92a1ee/qnm-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "2455ab15bf10a301f2d80a71ce803d31", "sha256": "f1e1ab884278b1d4a8cb22d8bef342d8dcc4bc4c8ad5c8354ef13eb2bb59cd34" }, "downloads": -1, "filename": "qnm-0.2.4-py2-none-any.whl", "has_sig": false, "md5_digest": "2455ab15bf10a301f2d80a71ce803d31", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 86551, "upload_time": "2019-04-09T04:33:21", "url": "https://files.pythonhosted.org/packages/40/ed/3dafe2de33ea29f6aafc091cb690397bedc734a32ba4ab77ee38a7aa93a7/qnm-0.2.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f2fecbbd98dfcf413c648ee984f4a74", "sha256": "00bdc726e6ee72abac030e7d1c1e145372d1d44ba4bb57b40fb165921dd31e9d" }, "downloads": -1, "filename": "qnm-0.2.4.tar.gz", "has_sig": false, "md5_digest": "3f2fecbbd98dfcf413c648ee984f4a74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25490, "upload_time": "2019-04-09T04:33:22", "url": "https://files.pythonhosted.org/packages/22/fe/df3f7a730dc9bb26bd1668a35fa2affb622498525d99a3478aa0b57d7643/qnm-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "b887ed43d442cc39b29b38f56b75afda", "sha256": "20c5f69426ea0fb72fbbc893f1920d0929194ccb52d573360bb6b5fd0398c6bf" }, "downloads": -1, "filename": "qnm-0.2.5-py2-none-any.whl", "has_sig": false, "md5_digest": "b887ed43d442cc39b29b38f56b75afda", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 87522, "upload_time": "2019-04-22T21:36:21", "url": "https://files.pythonhosted.org/packages/e9/e6/da6ad0bd8410aad0302affc6b5d9af520594f5348f641b186b4cdda667a9/qnm-0.2.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40cfb58b21e5ca01ebae4126da161862", "sha256": "0d0d4078ed6d4bf241f45edc24ed43ca65869b224b795c922290fe36de61fd4f" }, "downloads": -1, "filename": "qnm-0.2.5.tar.gz", "has_sig": false, "md5_digest": "40cfb58b21e5ca01ebae4126da161862", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26899, "upload_time": "2019-04-22T21:36:22", "url": "https://files.pythonhosted.org/packages/85/72/ed716bb6c694edc3115407b53188327ceb7661d694a1d315d051a8257ac8/qnm-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "4a1745d14c67f4988d6bbd2c4ab6ff37", "sha256": "b7e40f7076814feb5eb5932ed791a64701c6402e900f4e2aa5e0358674f362e0" }, "downloads": -1, "filename": "qnm-0.2.6-py2-none-any.whl", "has_sig": false, "md5_digest": "4a1745d14c67f4988d6bbd2c4ab6ff37", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 88632, "upload_time": "2019-05-17T01:02:55", "url": "https://files.pythonhosted.org/packages/a0/c3/d8ebe17dfa060a63bea8d302879d60ccea0ead9a384f5e53e34e507a74cf/qnm-0.2.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "99f4705638a9bc0024c3ba308c5234fd", "sha256": "e35de9264a9b28fdfe856271088b1e37b14fe7feafb185dba715b99008592e30" }, "downloads": -1, "filename": "qnm-0.2.6.tar.gz", "has_sig": false, "md5_digest": "99f4705638a9bc0024c3ba308c5234fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27779, "upload_time": "2019-05-17T01:02:57", "url": "https://files.pythonhosted.org/packages/68/eb/7998d8868c68281541843dc8c57d5120300521547c8c3b206f90fafdfcca/qnm-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "522925f31bc4a761025edf0a35bee35a", "sha256": "4ce37e3b25f70e1d9701ed3a7f1671abf280f54f1992e9030f6e9c34ff359ab6" }, "downloads": -1, "filename": "qnm-0.2.7-py2-none-any.whl", "has_sig": false, "md5_digest": "522925f31bc4a761025edf0a35bee35a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 89220, "upload_time": "2019-05-17T04:16:42", "url": "https://files.pythonhosted.org/packages/a4/df/0988f8e1e68ca06c153b6aee85e396092295f300a26d7c4c265a61a9ba43/qnm-0.2.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "34694f40f2d3b135f40765653b7e7d4c", "sha256": "f1e8d84a5df3fc1966d13a3fa84a72bac7fc47b4bb910e4773717a27faba810b" }, "downloads": -1, "filename": "qnm-0.2.7.tar.gz", "has_sig": false, "md5_digest": "34694f40f2d3b135f40765653b7e7d4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28301, "upload_time": "2019-05-17T04:16:44", "url": "https://files.pythonhosted.org/packages/46/5b/3f03e88d97c47aa78a03b5303f25907951624586a7786b07c0d3d09b2292/qnm-0.2.7.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "f77bfab2970380b70673dc546aa6c7be", "sha256": "161ee502e6194afffddd2580f21e033e1a131a26477c14c8bc286b0e14185383" }, "downloads": -1, "filename": "qnm-0.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "f77bfab2970380b70673dc546aa6c7be", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 89544, "upload_time": "2019-08-20T18:03:15", "url": "https://files.pythonhosted.org/packages/a2/a4/a269e3c314a601eb315dd63be7fa6c956fc4f95e74871bd552b316fdedd8/qnm-0.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f852479e14c4f11d698275ec6e88b54", "sha256": "1526ff2db32d48ebddb4a0c295a9572b0bd0aa63f8b216295d1a18198e2d5e57" }, "downloads": -1, "filename": "qnm-0.3.0.tar.gz", "has_sig": false, "md5_digest": "5f852479e14c4f11d698275ec6e88b54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28460, "upload_time": "2019-08-20T18:03:17", "url": "https://files.pythonhosted.org/packages/75/34/c7b6313c446dfd6ba5a76fb3a26ab3f4f98901a775f5e50a4274a7f8cfd1/qnm-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "f37f0778b07d52d2ed985e27a3e7ecc9", "sha256": "6e6089fd6bb82cf83c4dfc0bab2d70802a11cf50a8abae86685874795dc077e7" }, "downloads": -1, "filename": "qnm-0.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "f37f0778b07d52d2ed985e27a3e7ecc9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 94017, "upload_time": "2019-09-24T18:07:14", "url": "https://files.pythonhosted.org/packages/94/85/cd87744b71910e96090193be7da80d845d4803f1f426f78083d9c12b1479/qnm-0.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e39b641369ec2cccc5fddd163824a7a9", "sha256": "9d3f777fc84d252986d229266c8e5117133cb5aed99bb989a29b88429c9806fa" }, "downloads": -1, "filename": "qnm-0.4.0.tar.gz", "has_sig": false, "md5_digest": "e39b641369ec2cccc5fddd163824a7a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34562, "upload_time": "2019-09-24T18:07:20", "url": "https://files.pythonhosted.org/packages/b1/ae/69e2802c0c431a9011a5f4162b506f196d84a1097f35c8925d8b990f3160/qnm-0.4.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f37f0778b07d52d2ed985e27a3e7ecc9", "sha256": "6e6089fd6bb82cf83c4dfc0bab2d70802a11cf50a8abae86685874795dc077e7" }, "downloads": -1, "filename": "qnm-0.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "f37f0778b07d52d2ed985e27a3e7ecc9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 94017, "upload_time": "2019-09-24T18:07:14", "url": "https://files.pythonhosted.org/packages/94/85/cd87744b71910e96090193be7da80d845d4803f1f426f78083d9c12b1479/qnm-0.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e39b641369ec2cccc5fddd163824a7a9", "sha256": "9d3f777fc84d252986d229266c8e5117133cb5aed99bb989a29b88429c9806fa" }, "downloads": -1, "filename": "qnm-0.4.0.tar.gz", "has_sig": false, "md5_digest": "e39b641369ec2cccc5fddd163824a7a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34562, "upload_time": "2019-09-24T18:07:20", "url": "https://files.pythonhosted.org/packages/b1/ae/69e2802c0c431a9011a5f4162b506f196d84a1097f35c8925d8b990f3160/qnm-0.4.0.tar.gz" } ] }