{
"info": {
"author": "Erwan Pannier",
"author_email": "erwan.pannier@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering"
],
"description": "[](https://pypi.python.org/pypi/radis)\n\n[](./License)\n\n[](https://linkinghub.elsevier.com/retrieve/pii/S0022407318305867)\n\n[](https://travis-ci.org/radis/radis)\n\n[](https://codecov.io/gh/radis/radis)\n\n[](https://radis.readthedocs.io/en/latest/?badge=latest)\n\n[](https://mybinder.org/v2/gh/radis/radis-examples/master?filepath=radis_online.ipynb)\n\n[](https://gitter.im/radis-radiation/community)\n\n[RADIS](https://radis.readthedocs.io/)\n======================================\n\nA nonequilibrium infrared emission and absorption line-by-line code & a\npost-processing library to compare experimental and calculated spectra.\n\nUser guide, install procedure and examples are available on the [RADIS\nWebsite](http://radis.readthedocs.io/):\n\n[](https://radis.readthedocs.io/en/latest/?badge=latest)\n\nGetting Started\n---------------\n\n### Install\n\nAssuming you have Python installed with the\n[Anaconda](https://www.anaconda.com/download/) distribution just use:\n\n pip install radis \n\n**That\\'s it!** You can now run your first example below. If you\nencounter any issue, or to upgrade the package later, please refer to\nthe [detailed installation\nprocedure](https://radis.readthedocs.io/en/latest/install.html#label-install)\n.\n\n### Quick Start\n\nCalculate a CO equilibrium spectrum from the HITRAN database, using the\n[calc\\_spectrum](https://radis.readthedocs.io/en/latest/source/radis.lbl.calc.html#radis.lbl.calc.calc_spectrum)\nfunction. Output is a [Spectrum\nobject](https://radis.readthedocs.io/en/latest/spectrum/spectrum.html#label-spectrum):\n:\n\n from radis import calc_spectrum\n s = calc_spectrum(1900, 2300, # cm-1\n molecule='CO',\n isotope='1,2,3',\n pressure=1.01325, # bar\n Tgas=700, # K\n mole_fraction=0.1, \n path_length=1, # cm\n )\n s.apply_slit(0.5, 'nm') # simulate an experimental slit\n s.plot('radiance')\n\n\n\nCalculate a CO *nonequilibrium* spectrum from the HITRAN database (on\nyour first call, this will calculate and cache the CO(X) rovibrational\nenergies): :\n\n s2 = calc_spectrum(1900, 2300, # cm-1\n molecule='CO',\n isotope='1,2,3',\n pressure=1.01325, # bar\n Tvib=700, # K\n Trot=300, # K\n mole_fraction=0.1, \n path_length=1, # cm\n )\n s2.apply_slit(0.5, 'nm')\n s2.plot('radiance', nfig='same') # compare with previous\n\nThe Quick Start examples automatically download the line databases from\n[HITRAN-2016](https://radis.readthedocs.io/en/latest/bibliography.html#hitran-2016),\nwhich is valid for temperatures below 700 K. For *high temperature*\ncases, you may need to use other line databases such as\n[HITEMP-2010](https://radis.readthedocs.io/en/latest/bibliography.html#hitemp-2010)\n(typically T \\< 2000 K) or\n[CDSD-4000](https://radis.readthedocs.io/en/latest/bibliography.html#cdsd-4000)\n(T \\< 5000 K). These databases must be described in a `~/.radis`\n[Configuration\nfile](https://radis.readthedocs.io/en/latest/lbl/index.html#label-lbl-config-file).\n\nMore complex\n[examples](https://radis.readthedocs.io/en/latest/examples.html#label-examples)\nwill require to use the\n[SpectrumFactory](https://radis.readthedocs.io/en/latest/source/radis.lbl.factory.html#radis.lbl.factory.SpectrumFactory)\nclass, which is the core of RADIS line-by-line calculations.\n[calc\\_spectrum](https://radis.readthedocs.io/en/latest/source/radis.lbl.calc.html#radis.lbl.calc.calc_spectrum)\nis a wrapper to\n[SpectrumFactory](https://radis.readthedocs.io/en/latest/source/radis.lbl.factory.html#radis.lbl.factory.SpectrumFactory)\nfor the simple cases.\n\nExperimental spectra can be loaded using the\n[experimental\\_spectrum](https://radis.readthedocs.io/en/latest/source/radis.spectrum.models.html#radis.spectrum.models.experimental_spectrum)\nfunction and compared with the\n[plot\\_diff](https://radis.readthedocs.io/en/latest/source/radis.spectrum.compare.html#radis.spectrum.compare.plot_diff)\nfunction. For instance:\n\n from numpy import loadtxt\n from radis import experimental_spectrum, plot_diff\n w, I = loadtxt('my_file.txt').T # assuming 2 columns \n sexp = experimental_spectrum(w, I, Iunit='mW/cm2/sr/nm')\n plot_diff(sexp, s) # comparing with previously spectrum 's' calculated previously \n\nTypical output of\n[plot\\_diff](https://radis.readthedocs.io/en/latest/source/radis.spectrum.compare.html#radis.spectrum.compare.plot_diff):\n\n[](https://radis.readthedocs.io/en/latest/spectrum/spectrum.html#compare-two-spectra)\n\nRefer to the\n[Examples](https://radis.readthedocs.io/en/latest/examples.html#label-examples)\nsection for more examples, and to the [Spectrum\npage](https://radis.readthedocs.io/en/latest/spectrum/spectrum.html#label-spectrum)\nfor more post-processing functions.\n\n### In the browser (no installation needed!)\n\nAlternatively, you can also run RADIS directly in the browser with the\n[RADIS Interactive\nExamples](https://github.com/radis/radis-examples#interactive-examples)\nproject. For instance, run the Quick Start example on the link below:\n\n[](https://mybinder.org/v2/gh/radis/radis-examples/master?filepath=first_example.ipynb)\n\nOr start a bare RADIS online session:\n\n[](https://mybinder.org/v2/gh/radis/radis-examples/master?filepath=radis_online.ipynb)\n\n------------------------------------------------------------------------\n\nDeveloper Guide\n---------------\n\n### Architecture\n\nRADIS internals are described in the [Developer\nGuide](https://radis.readthedocs.io/en/latest/developer.html) :\n\n[](https://radis.readthedocs.io/en/latest/dev/architecture.html#label-dev-architecture)\n\n### License\n\nThe code is available on this repository under [GNU LESSER GENERAL\nPUBLIC LICENSE (v3)](./LICENSE)\n\n[](./License)\n\n### Support\n\nIf encountering any problem, first refer to the list of known\n[Issues](https://github.com/radis/radis/issues?utf8=%E2%9C%93&q=is%3Aissue)\non GitHub. We appreciate your feedback and suggestions!\n\nFor any question, please join the discussion channel on Gitter:\n\n[](https://gitter.im/radis-radiation/community)\n\n------------------------------------------------------------------------\n\nReferences\n----------\n\n### Links\n\nRADIS:\n\n- Documentation: \n\n [](https://radis.readthedocs.io/en/latest/?badge=latest)\n\n- Source Code: \n- Article:\n \n\n [](https://linkinghub.elsevier.com/retrieve/pii/S0022407318305867)\n\nAnd also:\n\n- Test Status: \n\n [](https://travis-ci.org/radis/radis)\n\n- Test Coverage: \n\n [](https://codecov.io/gh/radis/radis)\n\n- PyPi Repository: \n\n [](https://pypi.python.org/pypi/radis)\n\n- Interactive Examples: \n\n### Other Spectroscopic tools\n\n------------------------------------------------------------------------\n\n[](https://radis.readthedocs.io/)\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/radis/radis",
"keywords": "spectrum,infrared,spectra,radiation,nonequilibrium,spectroscopy,molecules,HITRAN",
"license": "GNU Lesser General Public License v3 (LGPLv3)",
"maintainer": "",
"maintainer_email": "",
"name": "radis",
"package_url": "https://pypi.org/project/radis/",
"platform": "any",
"project_url": "https://pypi.org/project/radis/",
"project_urls": {
"Homepage": "https://github.com/radis/radis"
},
"release_url": "https://pypi.org/project/radis/0.9.21/",
"requires_dist": [
"mpldatacursor",
"pint (>=0.7.2)",
"publib (>=0.3.2)",
"plotly (>=2.5.1)",
"termcolor",
"six",
"configparser",
"astroquery (>=0.3.9)",
"json-tricks",
"numpydoc",
"tables",
"pytest",
"h5py",
"joblib",
"numba"
],
"requires_python": "",
"summary": "A non-equilibrium Radiative Solver for HITRAN-like database species",
"version": "0.9.21"
},
"last_serial": 5704399,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"md5": "f57147d34dad428fcd98d1b2979ad11f",
"sha256": "a996fbacf80c55ec27497e30fd5c9478148da8009fa46af62953ca95e0c71e27"
},
"downloads": -1,
"filename": "radis-0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f57147d34dad428fcd98d1b2979ad11f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3137,
"upload_time": "2018-01-25T17:04:09",
"url": "https://files.pythonhosted.org/packages/1d/17/2afa607c541f0fda039f0f8192728643c7fe9d3348ec465932e91a7277b5/radis-0.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "09c876bdbee3627c78f47237f332085a",
"sha256": "b22fdf247c7349f3eb231750385675e15317abb7fa39f20f428cc8a18cbcc92b"
},
"downloads": -1,
"filename": "radis-0.1.tar.gz",
"has_sig": false,
"md5_digest": "09c876bdbee3627c78f47237f332085a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15197,
"upload_time": "2018-01-25T17:04:10",
"url": "https://files.pythonhosted.org/packages/40/d5/66469651b88700ad6fc36b05fc4ddd78d1575fd9e6de6eae296105f6fc6a/radis-0.1.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "b33dbffb54f9e2d56931c97db8504a72",
"sha256": "8c2eb59f3dc3116562b0c9a4d1d297b7d9500349444b6081b6d476b7ab70cc9d"
},
"downloads": -1,
"filename": "radis-0.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b33dbffb54f9e2d56931c97db8504a72",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 94080,
"upload_time": "2018-02-09T12:37:38",
"url": "https://files.pythonhosted.org/packages/01/a3/218a580ada46de67fd7e02e284fa89c2a08bdb68c2f26181ce0b2a7967c5/radis-0.1.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b68d6a194a73f5b045d703fb8b07891e",
"sha256": "684b3f0cbbd25597a31d65ef7317f33d40566b19b32fd5a1fbca9e992605f41e"
},
"downloads": -1,
"filename": "radis-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "b68d6a194a73f5b045d703fb8b07891e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 103359,
"upload_time": "2018-02-09T23:49:38",
"url": "https://files.pythonhosted.org/packages/af/3f/99450e060c4b55e73e7eace08294109069aace6c33f4db5f417ef7376987/radis-0.1.1.tar.gz"
}
],
"0.1.10": [
{
"comment_text": "",
"digests": {
"md5": "3b3e3fd5654fde72b860f3fcde781180",
"sha256": "05767161bd25498084d1b62be2a28e3f30e33748cd902d45c92a4b90039bce01"
},
"downloads": -1,
"filename": "radis-0.1.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3b3e3fd5654fde72b860f3fcde781180",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 138154,
"upload_time": "2018-03-25T20:26:51",
"url": "https://files.pythonhosted.org/packages/10/b9/0d05717004d91f3c3a3466de4a5615e70b161fef47fadf4b6b4a7750ed7f/radis-0.1.10-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "af323a210906ebd8e5acab598a1f194e",
"sha256": "34de3498aa2974257b500c2d7afebf24dc284a9824141791b5b9edd6c2ba7d79"
},
"downloads": -1,
"filename": "radis-0.1.10.tar.gz",
"has_sig": false,
"md5_digest": "af323a210906ebd8e5acab598a1f194e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 113516,
"upload_time": "2018-03-25T20:26:53",
"url": "https://files.pythonhosted.org/packages/e4/e9/b7b2acd5dc2c4a36bbebee894641119004d8aa32220da997db363fe76e6f/radis-0.1.10.tar.gz"
}
],
"0.1.11": [
{
"comment_text": "",
"digests": {
"md5": "a62c7879d5b91eabe24b8eabbead0683",
"sha256": "f87946f0455b94ae7b3856dc4dfad73d3f1e0d02983084144e09d054f3ea57f3"
},
"downloads": -1,
"filename": "radis-0.1.11-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a62c7879d5b91eabe24b8eabbead0683",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 154616,
"upload_time": "2018-04-09T13:10:44",
"url": "https://files.pythonhosted.org/packages/fe/2f/2bfaa73dab05c2e44f103c050e6485267d07174ebc6fc42ba9a4f75ab3d9/radis-0.1.11-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "231206e20c4c6e0b9aff2d4e518d588d",
"sha256": "311b7767a7cf681d001e56296e85ab9997c9cf9ebf4924e61e43e96c02ececc0"
},
"downloads": -1,
"filename": "radis-0.1.11.tar.gz",
"has_sig": false,
"md5_digest": "231206e20c4c6e0b9aff2d4e518d588d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 124360,
"upload_time": "2018-04-09T13:10:45",
"url": "https://files.pythonhosted.org/packages/b7/c4/aa226d70cd94a509480debab031c14ba81378b417b14820ea9d43cbb81e6/radis-0.1.11.tar.gz"
}
],
"0.1.12": [
{
"comment_text": "",
"digests": {
"md5": "c0a557b47412d1a083bf6a5b02917eeb",
"sha256": "0970dd496f830d42743523cc3d2a7c9f3e6c28658c93582de044db687d0a22cf"
},
"downloads": -1,
"filename": "radis-0.1.12-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c0a557b47412d1a083bf6a5b02917eeb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 144738,
"upload_time": "2018-04-17T15:24:07",
"url": "https://files.pythonhosted.org/packages/b2/38/690c322ff354d327f46abbdc2c460fc946b1bd014413b0ca0d0291342e7c/radis-0.1.12-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b2e8776e8c665ac59076dddbc17ddbb2",
"sha256": "d918e2cf373ad3b6b6c3e7c733215f10d91a347ff4a96da9db3aa9f55c38b508"
},
"downloads": -1,
"filename": "radis-0.1.12.tar.gz",
"has_sig": false,
"md5_digest": "b2e8776e8c665ac59076dddbc17ddbb2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 123680,
"upload_time": "2018-04-17T15:24:08",
"url": "https://files.pythonhosted.org/packages/da/2f/e9e1eac7fe8cfcb826f6f72d3f6693d056f18e05bba3f1347eba120d86d3/radis-0.1.12.tar.gz"
}
],
"0.1.13": [
{
"comment_text": "",
"digests": {
"md5": "44aaccaf73d461ce09b828a94eb3f24f",
"sha256": "cb8cfedb4f5bf2eec777f06b0ccfb270d3ede7c4e29a7621d6fbd3d27f0b1637"
},
"downloads": -1,
"filename": "radis-0.1.13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "44aaccaf73d461ce09b828a94eb3f24f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 144815,
"upload_time": "2018-04-18T10:03:05",
"url": "https://files.pythonhosted.org/packages/9c/b8/79703ee89bdab22488a42291f61a9b2d0a232cc18f54cc4b4fc736811996/radis-0.1.13-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dfc76bab9ce1c68712913b79958fda9f",
"sha256": "ee18b740cbb106d31926a449155919b6aa6ec724e83201c71832bf95c5817b7f"
},
"downloads": -1,
"filename": "radis-0.1.13.tar.gz",
"has_sig": false,
"md5_digest": "dfc76bab9ce1c68712913b79958fda9f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 124459,
"upload_time": "2018-04-18T10:03:07",
"url": "https://files.pythonhosted.org/packages/25/ca/e90f979f791750b4ff3d01a510b79a938b5eb09e267a28a1db255517b1ad/radis-0.1.13.tar.gz"
}
],
"0.1.14": [
{
"comment_text": "",
"digests": {
"md5": "9a7e4296baf99ef59c3bfacfeda8dd51",
"sha256": "a4b6294dc512954b98b61e2ab30d1b7eeb3a58791da180565d8d96f8478e4f3f"
},
"downloads": -1,
"filename": "radis-0.1.14-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9a7e4296baf99ef59c3bfacfeda8dd51",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 2877838,
"upload_time": "2018-04-27T21:02:02",
"url": "https://files.pythonhosted.org/packages/30/54/1516adf623ea61fd48a59dffba010a1638eaa37f3d8a709fcf9c9741259a/radis-0.1.14-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8b29f8f6153776d70bd1d834786c8958",
"sha256": "61b8b4c2d3a93ed02a50d622cec146147672c0f836f72d60a19d78a0474aba8e"
},
"downloads": -1,
"filename": "radis-0.1.14.tar.gz",
"has_sig": false,
"md5_digest": "8b29f8f6153776d70bd1d834786c8958",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2857704,
"upload_time": "2018-04-27T21:02:04",
"url": "https://files.pythonhosted.org/packages/b5/33/d8afb5262d0ff26373e1c3439a5d1c3a300191d866aa35cee8d244fb994c/radis-0.1.14.tar.gz"
}
],
"0.1.15": [
{
"comment_text": "",
"digests": {
"md5": "567aaf1cae7aefe0c0d9c387a8b43537",
"sha256": "f83c7506558d12021df6cd023a016f60b58ae23ebc41a10c91994ccdb7c20dbc"
},
"downloads": -1,
"filename": "radis-0.1.15-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "567aaf1cae7aefe0c0d9c387a8b43537",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 2877886,
"upload_time": "2018-04-28T00:43:38",
"url": "https://files.pythonhosted.org/packages/1d/ab/f08960df7438cb051aac48761e77627554d49085f40cc0d2bf6005d25ad1/radis-0.1.15-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "533e3cff8287f4cb7d5d1031d496a4b2",
"sha256": "ee995a517411e989bdae2d5d61f57da63d6793a44c074fe9bdc4fce0ddf1db58"
},
"downloads": -1,
"filename": "radis-0.1.15.tar.gz",
"has_sig": false,
"md5_digest": "533e3cff8287f4cb7d5d1031d496a4b2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2857753,
"upload_time": "2018-04-28T00:43:45",
"url": "https://files.pythonhosted.org/packages/cf/af/07cbb0abc35dce36dcf6dded64d82bff0dd0166c8bf3961cf7997f93b54d/radis-0.1.15.tar.gz"
}
],
"0.1.16": [
{
"comment_text": "",
"digests": {
"md5": "969d2b5a5bc9a18c68d91045180f7ed7",
"sha256": "b069d5be72125c8bb47b8a5bf4220a51c3103832eb37d9f8e313a7de751bf452"
},
"downloads": -1,
"filename": "radis-0.1.16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "969d2b5a5bc9a18c68d91045180f7ed7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 2402523,
"upload_time": "2018-04-30T15:10:14",
"url": "https://files.pythonhosted.org/packages/2b/a5/4bad6e63165f4018eca49e8c08411ee1d20bfa13f5c3c4a0b358285207a7/radis-0.1.16-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7f50255f6077f5cff7be4320a21d115a",
"sha256": "9e9feb094af72087af85470573e11a9e5e5d099aa964a4bb524b3f148d514785"
},
"downloads": -1,
"filename": "radis-0.1.16.tar.gz",
"has_sig": false,
"md5_digest": "7f50255f6077f5cff7be4320a21d115a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2382681,
"upload_time": "2018-04-30T15:10:17",
"url": "https://files.pythonhosted.org/packages/bb/a2/d7247e863c7299a5715d81d962d101a59132938182884434189bf6e265e5/radis-0.1.16.tar.gz"
}
],
"0.1.17": [
{
"comment_text": "",
"digests": {
"md5": "b9be35b0481ac9f2a0bd225d213220f2",
"sha256": "5ddf404375e2ec86c51d7fa9abca9bb332b0240539ba21a89fd57419e2830055"
},
"downloads": -1,
"filename": "radis-0.1.17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b9be35b0481ac9f2a0bd225d213220f2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 2878564,
"upload_time": "2018-05-08T17:07:04",
"url": "https://files.pythonhosted.org/packages/67/c9/929d69ced207b3fe8ad112796a5257282cc4746318761df89436261c8f1f/radis-0.1.17-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "22a877bbeae36ed1a6ea5e937261e35c",
"sha256": "1a3e37f3b08179b594748852f0e0f2bca2ffb99f5e3c25c6da9b6a663ed90a02"
},
"downloads": -1,
"filename": "radis-0.1.17.tar.gz",
"has_sig": false,
"md5_digest": "22a877bbeae36ed1a6ea5e937261e35c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2857658,
"upload_time": "2018-05-08T17:07:07",
"url": "https://files.pythonhosted.org/packages/ee/f3/57ac5d8004cedb72bfbe469f859fa30478e68b7c07d3cf5a4e7aa354f35c/radis-0.1.17.tar.gz"
}
],
"0.1.18": [
{
"comment_text": "",
"digests": {
"md5": "fab4dd889d229470cf33573d6a7811da",
"sha256": "a205feda70b4531e803b367b7038f08fa2d23268e64380d08b315a2053d4e1ec"
},
"downloads": -1,
"filename": "radis-0.1.18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fab4dd889d229470cf33573d6a7811da",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3352924,
"upload_time": "2018-05-14T00:42:33",
"url": "https://files.pythonhosted.org/packages/de/57/7cacc64cbd132a32639a1aa71d09d1d6aa166b94d74459689d081bf56503/radis-0.1.18-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "11ca3dcdbea759250736cb2f0450277d",
"sha256": "1f050326f406e00da7755ebd81cb4e6fea0cc80e28456ce01204471868cbbdf6"
},
"downloads": -1,
"filename": "radis-0.1.18.tar.gz",
"has_sig": false,
"md5_digest": "11ca3dcdbea759250736cb2f0450277d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2861733,
"upload_time": "2018-05-14T00:42:40",
"url": "https://files.pythonhosted.org/packages/c6/3f/247a5df2032c6114c7ef84687c97a49617498085f43fcb7712be55b6f2c2/radis-0.1.18.tar.gz"
}
],
"0.1.19": [
{
"comment_text": "",
"digests": {
"md5": "75b25000c24eb903f99b51af6188eb50",
"sha256": "80dece1bb0aa917f92522a6b519e1bb9ab422731cde2472e679ea3c02099728e"
},
"downloads": -1,
"filename": "radis-0.1.19-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "75b25000c24eb903f99b51af6188eb50",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3353159,
"upload_time": "2018-05-21T16:49:59",
"url": "https://files.pythonhosted.org/packages/98/41/558863ce75e85c63b30953d44dec6c236cedf9ab9c6b3653c60e5166c390/radis-0.1.19-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "731ca49bb310b8c7188ec5ce281fa359",
"sha256": "715cda01516c1b62d391341c5769d955b8e683cbab80c9ec0b24f4906636fc62"
},
"downloads": -1,
"filename": "radis-0.1.19.tar.gz",
"has_sig": false,
"md5_digest": "731ca49bb310b8c7188ec5ce281fa359",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2861818,
"upload_time": "2018-05-21T16:50:06",
"url": "https://files.pythonhosted.org/packages/be/4a/a210d27a330f5bc06be6bc7e8dc68ebaf6b71eb96e3fcbcf82492ac04070/radis-0.1.19.tar.gz"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "ac4158d5fe93c99d3f41f40af4f18e4e",
"sha256": "77bdcd8af896c229747c5b3c20180075613b2ba36268ebb28fd6b68dc5fba10b"
},
"downloads": -1,
"filename": "radis-0.1.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ac4158d5fe93c99d3f41f40af4f18e4e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 115063,
"upload_time": "2018-02-10T15:29:55",
"url": "https://files.pythonhosted.org/packages/52/26/d8f6619912565f9326f0ef2af4c702d634ce2812c5d6e2f1d280798f897a/radis-0.1.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "768fc1e197e9f9fe2b5413be15dc0271",
"sha256": "673c9154e9780afcd40ae2488c07435ed48279bd805ed98c2f42bb2a2317bcbc"
},
"downloads": -1,
"filename": "radis-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "768fc1e197e9f9fe2b5413be15dc0271",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 94889,
"upload_time": "2018-02-10T15:29:57",
"url": "https://files.pythonhosted.org/packages/d8/f6/9060acf8068178e4799819327adccb827beded81fd5bf920148ad9aa1ad4/radis-0.1.2.tar.gz"
}
],
"0.1.20": [
{
"comment_text": "",
"digests": {
"md5": "11bc9086fb1dc580cc0e6f66696f13c2",
"sha256": "f2ba70e67382e2e41e549d8fbf59d2678fd1cd625d2f98a424e15bec85b159cc"
},
"downloads": -1,
"filename": "radis-0.1.20-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "11bc9086fb1dc580cc0e6f66696f13c2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3353280,
"upload_time": "2018-06-12T16:13:24",
"url": "https://files.pythonhosted.org/packages/7c/fc/e910f9dab0d3cc20d45dbc1bb7490ca99c9909a1c93dcec9b629a99ac768/radis-0.1.20-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c5fb3365ab2259aaa3dd8c20e2247c0c",
"sha256": "06b2d2966d1d7d28a1f2a6e713bc5fbada0680fcfc89365337f6bd070ef69229"
},
"downloads": -1,
"filename": "radis-0.1.20.tar.gz",
"has_sig": false,
"md5_digest": "c5fb3365ab2259aaa3dd8c20e2247c0c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2862092,
"upload_time": "2018-06-12T16:13:58",
"url": "https://files.pythonhosted.org/packages/57/db/5f2425d78124ce4db8b84f435a425f887fcefd9155e432ea9bc3bc6e2e56/radis-0.1.20.tar.gz"
}
],
"0.1.21": [
{
"comment_text": "",
"digests": {
"md5": "0f381864d63de256730a3e441b347a5c",
"sha256": "de2aeeb6da948e195efb1a6fcb5019f5025103ab9c277f1e11b1519bcc794fb0"
},
"downloads": -1,
"filename": "radis-0.1.21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0f381864d63de256730a3e441b347a5c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3829933,
"upload_time": "2018-06-28T19:27:23",
"url": "https://files.pythonhosted.org/packages/a0/2e/7f1bd158448fbd6f06839d71e76fed6c36e65c3e3e422d0e8a0cab48e1cc/radis-0.1.21-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8f95e3d34b6571b578ad995a9b265297",
"sha256": "ac4937d2c24ee3df455f2108d9a715e222a78733b7ee415061a86d84684d2315"
},
"downloads": -1,
"filename": "radis-0.1.21.tar.gz",
"has_sig": false,
"md5_digest": "8f95e3d34b6571b578ad995a9b265297",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3337567,
"upload_time": "2018-06-28T19:27:30",
"url": "https://files.pythonhosted.org/packages/17/95/74ece97e31d70da2baadd04d9ba3a6aa052c3d71474b3edbd5fa96dae597/radis-0.1.21.tar.gz"
}
],
"0.1.22": [
{
"comment_text": "",
"digests": {
"md5": "287f33b0a5a02eb67d991f2226f98e4c",
"sha256": "71ec38fb77e786ab5d8ade8a4968bb706ce37bd148f98d4055c732bc4c0e162c"
},
"downloads": -1,
"filename": "radis-0.1.22-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "287f33b0a5a02eb67d991f2226f98e4c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3864462,
"upload_time": "2018-07-06T15:59:21",
"url": "https://files.pythonhosted.org/packages/8d/de/6959a459dc7ca07877aef1b2498726943bcff0b6c64590ffaf61c190841d/radis-0.1.22-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "75205d27f2e497e56bd2eca34fa74c81",
"sha256": "515ca1a9367beb3e2bb92443b8469a08eef2dc117ed716b0edd2bfcebbaf3511"
},
"downloads": -1,
"filename": "radis-0.1.22.tar.gz",
"has_sig": false,
"md5_digest": "75205d27f2e497e56bd2eca34fa74c81",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3371819,
"upload_time": "2018-07-06T15:59:29",
"url": "https://files.pythonhosted.org/packages/6c/31/37b8c6f4d595dcdb37e7ddddf81ff635a5afcb3ebb374b759047456c57ab/radis-0.1.22.tar.gz"
}
],
"0.1.23": [
{
"comment_text": "",
"digests": {
"md5": "7b75dcbf336091c99dfd2a4b1d7df75b",
"sha256": "cb770060db632cca7ca312cf78dcda1d9624ee60196073e5b63636d5b3b1e2fa"
},
"downloads": -1,
"filename": "radis-0.1.23-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7b75dcbf336091c99dfd2a4b1d7df75b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3393656,
"upload_time": "2018-07-06T16:49:44",
"url": "https://files.pythonhosted.org/packages/41/e9/fb31a9b3fe1a26f4374020e97e25893cb6f399e57959afd985f7951abfc1/radis-0.1.23-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "99599fb5e31eef0a25df38da2cdf836c",
"sha256": "fa0244b6201190ce38bb74f30b5120504f95da3c539396ab65d1bfc07d8e6ebc"
},
"downloads": -1,
"filename": "radis-0.1.23.tar.gz",
"has_sig": false,
"md5_digest": "99599fb5e31eef0a25df38da2cdf836c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3371822,
"upload_time": "2018-07-06T16:50:02",
"url": "https://files.pythonhosted.org/packages/1b/e6/8e084ba8a4da6812aa4288359006e1b03dff5017da75ef966187e98fcf85/radis-0.1.23.tar.gz"
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "76810805eb9f02211771d7d9fdec2fd8",
"sha256": "e96e274e79ec7d7cdf83c0056ecfdec7919e395f31ddd211ca11bd03c33014a1"
},
"downloads": -1,
"filename": "radis-0.1.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "76810805eb9f02211771d7d9fdec2fd8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 115249,
"upload_time": "2018-02-12T18:28:38",
"url": "https://files.pythonhosted.org/packages/73/4d/685939f2b4c2622b0244aacc3aac80cccf33fa6a53e4712db36c3d28ab4c/radis-0.1.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "58c29d75da9e38647f4780f2231eb8a6",
"sha256": "3a97ae0f9f9d406b53258fcea5405772e0d15f771756dbac5885e21662b9101f"
},
"downloads": -1,
"filename": "radis-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "58c29d75da9e38647f4780f2231eb8a6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 94985,
"upload_time": "2018-02-12T18:28:40",
"url": "https://files.pythonhosted.org/packages/5c/f1/3764d66afeb7ca55956cd64b761a270e629a8a78088012071a5643342ce1/radis-0.1.3.tar.gz"
}
],
"0.1.4": [
{
"comment_text": "",
"digests": {
"md5": "56275854fdbc7881b5f65506a7bbd025",
"sha256": "d62cb400d4011f6cd851e1c722e8e1eb992e3e1e9d9f079699530d0ac29873c0"
},
"downloads": -1,
"filename": "radis-0.1.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "56275854fdbc7881b5f65506a7bbd025",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 115420,
"upload_time": "2018-02-12T19:31:24",
"url": "https://files.pythonhosted.org/packages/ad/55/a62ab4fb98d0432e257ca623c82c97e1ebe5529eae740b4d2e47f316f4a4/radis-0.1.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2803c56066453d4b7d605c20f6de5ee9",
"sha256": "8f45667667b65fdb65bf6e8517f4a7e66e6ddb0071c1d18e7be4d69ba3d051d4"
},
"downloads": -1,
"filename": "radis-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "2803c56066453d4b7d605c20f6de5ee9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 95022,
"upload_time": "2018-02-12T19:31:26",
"url": "https://files.pythonhosted.org/packages/42/dd/0932d91fe64b82573a82fcbf234b4e71dd97e5ade5ee800273a86dd54453/radis-0.1.4.tar.gz"
}
],
"0.1.5": [
{
"comment_text": "",
"digests": {
"md5": "0b9378abaa76f7f010b84a003ba4c150",
"sha256": "3dbc3cb5d376157597373aad8005348d191e0f7761125918f89ffa291833ddf1"
},
"downloads": -1,
"filename": "radis-0.1.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0b9378abaa76f7f010b84a003ba4c150",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 117071,
"upload_time": "2018-02-19T02:48:39",
"url": "https://files.pythonhosted.org/packages/92/38/8b5ce2e0dc98c8f378ffe401c44014004ab13c80663114db70d87e95be79/radis-0.1.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7c5feba63317e3798b2cad809ff59f44",
"sha256": "eb6e381e2072f290fba0e4b7fa61740e9c0f723a852565fd5aa60bac0bb9ebc5"
},
"downloads": -1,
"filename": "radis-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "7c5feba63317e3798b2cad809ff59f44",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 96435,
"upload_time": "2018-02-19T02:48:40",
"url": "https://files.pythonhosted.org/packages/73/ac/c22eec35f17e047063f21d7088f6675947c02c5a2500f314ccf792cdfd16/radis-0.1.5.tar.gz"
}
],
"0.1.6": [
{
"comment_text": "",
"digests": {
"md5": "ca9f27028af8e52865256cfb27ab669b",
"sha256": "268af5b09aa42c5d2d68db08b75ca4da16e06b0352aab15debb39b89d57c605f"
},
"downloads": -1,
"filename": "radis-0.1.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ca9f27028af8e52865256cfb27ab669b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 125294,
"upload_time": "2018-02-27T17:03:21",
"url": "https://files.pythonhosted.org/packages/28/7c/4e85a3be6160efcc074e0685732f2151c302a78c5edff6bed656be2f835d/radis-0.1.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1d6774d417b739664330988c5c2facae",
"sha256": "51bb2b3faf088190a5669979b55855993e19cc509190bf9cb91a87ab7a385430"
},
"downloads": -1,
"filename": "radis-0.1.6.tar.gz",
"has_sig": false,
"md5_digest": "1d6774d417b739664330988c5c2facae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 102174,
"upload_time": "2018-02-27T17:03:24",
"url": "https://files.pythonhosted.org/packages/51/d4/0b3663f051e412bf3a7440057d9d3960739c57ed5142601526343bc3bf54/radis-0.1.6.tar.gz"
}
],
"0.1.7": [
{
"comment_text": "",
"digests": {
"md5": "be85df3935682f8e725881d394a105e4",
"sha256": "396067c435415fdb81cdad39a479b99ce4557fabd09355dddc3d8f88dc1a879f"
},
"downloads": -1,
"filename": "radis-0.1.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "be85df3935682f8e725881d394a105e4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 128428,
"upload_time": "2018-03-01T23:16:35",
"url": "https://files.pythonhosted.org/packages/a7/2d/05cd623a1544c3cc6b547019c80e237c9f84b6c35226b65ab7ec8ec98e25/radis-0.1.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2db89ed11ceb104f525cae42a0058a72",
"sha256": "240894dae706deea5ce9ca9fc3efdab604145bc1dd0f9dd4f62a3490c77c35fd"
},
"downloads": -1,
"filename": "radis-0.1.7.tar.gz",
"has_sig": false,
"md5_digest": "2db89ed11ceb104f525cae42a0058a72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 104230,
"upload_time": "2018-03-01T23:16:36",
"url": "https://files.pythonhosted.org/packages/79/8c/4e605527a1cedf32ed804614ddbb6fdc23b1489eaaa0df5e06dae6295f6b/radis-0.1.7.tar.gz"
}
],
"0.1.8": [
{
"comment_text": "",
"digests": {
"md5": "3283977626925a487d35c9d8c9a90e50",
"sha256": "ec5ad7eb95ace97b34eff84b12b5a63d6ed560061c93fa2e37c3908484eaa307"
},
"downloads": -1,
"filename": "radis-0.1.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3283977626925a487d35c9d8c9a90e50",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 129022,
"upload_time": "2018-03-03T01:20:28",
"url": "https://files.pythonhosted.org/packages/ea/f9/3a192830276760d98ff18ccd14c7e1b93c2bc71958f2feab035a55e73d5e/radis-0.1.8-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1fe90aabfa0b8ad089a0f2a3dc6eb92c",
"sha256": "5717a211e355926474ca734234f07b926e1687ebea84edb43ed5bcbdcbd36ee5"
},
"downloads": -1,
"filename": "radis-0.1.8.tar.gz",
"has_sig": false,
"md5_digest": "1fe90aabfa0b8ad089a0f2a3dc6eb92c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 104787,
"upload_time": "2018-03-03T01:20:41",
"url": "https://files.pythonhosted.org/packages/10/d8/7abefa2ad74778d9b3953e053d6bbfaca826f95a7a48c88f7c3199578761/radis-0.1.8.tar.gz"
}
],
"0.1.9": [
{
"comment_text": "",
"digests": {
"md5": "f502187da83afe448fd0e7d9fe62dae6",
"sha256": "3da56127b3a751b041a60ad4b581296d10491dda928ad1ca3cf4901be05273b8"
},
"downloads": -1,
"filename": "radis-0.1.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f502187da83afe448fd0e7d9fe62dae6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 130880,
"upload_time": "2018-03-07T20:10:04",
"url": "https://files.pythonhosted.org/packages/ce/39/0025bbd72c4282744f911f20d92d06fb30b43ede7ef79ded5b9a2a5bc59a/radis-0.1.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "236c7bd2e15f239192fe6c31214d7fcf",
"sha256": "fe8b2a814e5015ccb8f4130941b3e2777f61bafcbc982b1b19c89a827bdfc0a0"
},
"downloads": -1,
"filename": "radis-0.1.9.tar.gz",
"has_sig": false,
"md5_digest": "236c7bd2e15f239192fe6c31214d7fcf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 106139,
"upload_time": "2018-03-07T20:10:07",
"url": "https://files.pythonhosted.org/packages/2c/43/353e22eae3c44d6acb9c822177f08769ffbf258a67fb2672923606598083/radis-0.1.9.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "5b73f7ba10f07b98133f595a0f6e26f6",
"sha256": "43c1c714e9c5025f8ae3ab2648eedb291eaa79b950556fe155c1d3f9fc5232f7"
},
"downloads": -1,
"filename": "radis-0.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5b73f7ba10f07b98133f595a0f6e26f6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3393639,
"upload_time": "2018-07-06T16:49:53",
"url": "https://files.pythonhosted.org/packages/a6/f9/98a40e1687e541c717372086ec1da7d9d12479d841f9a45a814fa54fb4db/radis-0.2.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "70f2bb17a9bb5fa547866ffc17a916ae",
"sha256": "22ddac213d5252b41ce6f7797950260ce306f92630bc57602848b48682181148"
},
"downloads": -1,
"filename": "radis-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "70f2bb17a9bb5fa547866ffc17a916ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3371799,
"upload_time": "2018-07-06T16:50:10",
"url": "https://files.pythonhosted.org/packages/28/cf/532e468fa6caa3db2ebe3f74c6a20e698828a33c9694c4bf722dfaf59561/radis-0.2.1.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "2c8bf82fc12ad8b109fdd35cbf5b2773",
"sha256": "9921976bda50a43e0ef2c93e428c63fdf171c35fd2c20c898764d74bc5225d51"
},
"downloads": -1,
"filename": "radis-0.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2c8bf82fc12ad8b109fdd35cbf5b2773",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3349313,
"upload_time": "2018-07-10T00:36:43",
"url": "https://files.pythonhosted.org/packages/83/c1/e25b9b4178059f17b3c15aeef189cfb70619d8874bff6d9245ba868f6ae1/radis-0.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6d135edd70b0000916b802be8f898245",
"sha256": "1222dac8ceed6425caaf93d15cca66db3f94345deeb53bfd702f3f402a0dba81"
},
"downloads": -1,
"filename": "radis-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "6d135edd70b0000916b802be8f898245",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3327609,
"upload_time": "2018-07-10T00:36:57",
"url": "https://files.pythonhosted.org/packages/07/54/f6280a5fd699c957e648aa22f33af6b016247a0cfc568495bbd26fdc06e2/radis-0.2.2.tar.gz"
}
],
"0.2.3": [
{
"comment_text": "",
"digests": {
"md5": "fbbd4f18727fb9d925262c1efcfc7669",
"sha256": "f187f7f43478ac04c6cbd9ae7b01a72c033cfb205ff8d3e5cc0800b00798bfea"
},
"downloads": -1,
"filename": "radis-0.2.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fbbd4f18727fb9d925262c1efcfc7669",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3350886,
"upload_time": "2018-07-18T01:04:13",
"url": "https://files.pythonhosted.org/packages/a3/45/77aef56bb7eb7ddd17fbb60ba1b7dfd4c80a709a806b66b3ea1f6be37f12/radis-0.2.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "684428659da37c40a54ce0fb143599d4",
"sha256": "c75eb43f26464c88897b3ebef35d732d3eed9013385cf519716e50e63db2dafd"
},
"downloads": -1,
"filename": "radis-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "684428659da37c40a54ce0fb143599d4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3329452,
"upload_time": "2018-07-18T01:04:24",
"url": "https://files.pythonhosted.org/packages/04/0a/420b7b8684b48fa6bcb830f256972bd93c5016ff8993c455ade7fc0acc02/radis-0.2.3.tar.gz"
}
],
"0.2.4": [
{
"comment_text": "",
"digests": {
"md5": "729a63c603c063554ba59c4ea562367c",
"sha256": "3589f231a4f2cf3a92b28524d11bbfaed122be26d69c4fdd548e4fb4643ea795"
},
"downloads": -1,
"filename": "radis-0.2.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "729a63c603c063554ba59c4ea562367c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3358813,
"upload_time": "2018-08-10T01:45:10",
"url": "https://files.pythonhosted.org/packages/33/71/a4d4f51c6854a537fdbf5855e861d4bff9f8dbeb1ff51fc2efa0b3dbe525/radis-0.2.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "712bc4dc6b8b45d8ad373c1bb4aa10f4",
"sha256": "17e9a755ff40fd91730fefe742ea6a9b2a31213275813b79a8c697186e60160e"
},
"downloads": -1,
"filename": "radis-0.2.4.tar.gz",
"has_sig": false,
"md5_digest": "712bc4dc6b8b45d8ad373c1bb4aa10f4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3335723,
"upload_time": "2018-08-10T01:45:18",
"url": "https://files.pythonhosted.org/packages/32/35/f9bb6f506ce63385cb30718823554be4d4b1a64ce2a92862872a7d690c92/radis-0.2.4.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "01006e5e68da0f5f931506ce20285e18",
"sha256": "9e62b96a9a0df66fbe1dba4fb35dec3b17218e7f5c358daf2031ff28c6c911a1"
},
"downloads": -1,
"filename": "radis-0.3.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "01006e5e68da0f5f931506ce20285e18",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 3369316,
"upload_time": "2018-09-06T14:58:46",
"url": "https://files.pythonhosted.org/packages/7f/38/346f3c727b5b1cfb1c443ccd090ef35681eed66f5dd934b8fb76ae33e19f/radis-0.3.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "55f235ad652d1788d2600362fa675279",
"sha256": "3a5e16c74bb0ec8c6628f2e785a7e2cc6d1ebcd9388397a12c7e83d6aee53c59"
},
"downloads": -1,
"filename": "radis-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "55f235ad652d1788d2600362fa675279",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3345755,
"upload_time": "2018-09-06T14:58:48",
"url": "https://files.pythonhosted.org/packages/33/0f/d8e3d381aab19cce45a770ce7c87b4a91506fc0ec5f6cf27bb7137f05bd6/radis-0.3.1.tar.gz"
}
],
"0.9.10": [
{
"comment_text": "",
"digests": {
"md5": "a8df466fc856753e3b46ebf002d3a47e",
"sha256": "6b47ca163297e01856ed40fa6bc0b9ece1ee68fdb1b2d4bfd53ba74f156072b8"
},
"downloads": -1,
"filename": "radis-0.9.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a8df466fc856753e3b46ebf002d3a47e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6507483,
"upload_time": "2018-10-13T23:35:32",
"url": "https://files.pythonhosted.org/packages/57/f7/5d3defe8d90e1db972843d7ce0ddba325ee0675d2bcbcc12c4aa1a6d5aeb/radis-0.9.10-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1455867096934202d35831e87737181b",
"sha256": "e4945c75a384f707ab1e9b82c1fc7d4799d95a6ff2d6ae5ac077e61bd993183f"
},
"downloads": -1,
"filename": "radis-0.9.10.tar.gz",
"has_sig": false,
"md5_digest": "1455867096934202d35831e87737181b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6450317,
"upload_time": "2018-10-13T23:35:46",
"url": "https://files.pythonhosted.org/packages/52/26/8fe474274d8778fd6b460c67c29aa4457f65b11cfcde7ea40858f876bf72/radis-0.9.10.tar.gz"
}
],
"0.9.11": [
{
"comment_text": "",
"digests": {
"md5": "a160c3a0749d2a9a0a47f7fc94ad9f7e",
"sha256": "d07d9e1c577dd5d90dd2171bfc03ebf81a882d502fd1278395d46a3c7c91df78"
},
"downloads": -1,
"filename": "radis-0.9.11-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a160c3a0749d2a9a0a47f7fc94ad9f7e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6507482,
"upload_time": "2018-10-13T23:45:52",
"url": "https://files.pythonhosted.org/packages/25/26/adc671c720f5c1f986c48a20bc0082f393deaedd3190d5f9a40f42ee1487/radis-0.9.11-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ed01338c74f700370866681950e9e3f2",
"sha256": "dfb43103ec4c781bdda78c3140719b76db3eb8ea595f1613f89d013585a058a3"
},
"downloads": -1,
"filename": "radis-0.9.11.tar.gz",
"has_sig": false,
"md5_digest": "ed01338c74f700370866681950e9e3f2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6450323,
"upload_time": "2018-10-13T23:46:05",
"url": "https://files.pythonhosted.org/packages/87/0e/16885cd019d1f2faabb9d8e3bdb9b8c714520fb7137dfdac018a92930696/radis-0.9.11.tar.gz"
}
],
"0.9.12": [
{
"comment_text": "",
"digests": {
"md5": "ea56b62f397a01ca9d8dd817d809eaad",
"sha256": "34400516c01442f1cd3d7e747df30ff67a97fa20d5fdc4d941d3156e770df747"
},
"downloads": -1,
"filename": "radis-0.9.12-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ea56b62f397a01ca9d8dd817d809eaad",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6509732,
"upload_time": "2018-10-14T10:44:29",
"url": "https://files.pythonhosted.org/packages/df/44/a5078386b3ea215d98a9ae21de05d41a63840588f6d6c2c8e8fdda935881/radis-0.9.12-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c5636e3db7af6982edfe6d0f4dc69404",
"sha256": "7a4efdfabb92169b4f46a279c1b272c1178a02b1305af892d0b25bf4c4db656a"
},
"downloads": -1,
"filename": "radis-0.9.12.tar.gz",
"has_sig": false,
"md5_digest": "c5636e3db7af6982edfe6d0f4dc69404",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6451877,
"upload_time": "2018-10-14T10:44:42",
"url": "https://files.pythonhosted.org/packages/0b/6c/20f5872cd1015add3a30fdb5e4e908d58e7e7e64adb71c53ba27a272ae4d/radis-0.9.12.tar.gz"
}
],
"0.9.13": [
{
"comment_text": "",
"digests": {
"md5": "a58e1a0414c3ef8dd0ffc81bccf3e00e",
"sha256": "be6c735648588bb28d6c66be21426ed0929ad8646fdd535b334841dde9e044a8"
},
"downloads": -1,
"filename": "radis-0.9.13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a58e1a0414c3ef8dd0ffc81bccf3e00e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6509732,
"upload_time": "2018-10-14T10:55:58",
"url": "https://files.pythonhosted.org/packages/15/84/feba11d86b1ad5ac26f6bd8d60e3656f2a84a5d097dae564bdbcdb7041fe/radis-0.9.13-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4c8a0120c0d57aa9346bb7a923d3e2e9",
"sha256": "0bad70e8f10d3b1ae3c4ed504c1ba37021293f4d1ea894f66bc171734e565eff"
},
"downloads": -1,
"filename": "radis-0.9.13.tar.gz",
"has_sig": false,
"md5_digest": "4c8a0120c0d57aa9346bb7a923d3e2e9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6451880,
"upload_time": "2018-10-14T10:56:11",
"url": "https://files.pythonhosted.org/packages/c3/50/ca92fda44903f38f6e30846cceab0ffeabab354cc6ca132ef969549446b4/radis-0.9.13.tar.gz"
}
],
"0.9.14": [
{
"comment_text": "",
"digests": {
"md5": "93aab17cd4a14c8fcc5df30b4381d41e",
"sha256": "9787887a0505d726efdc4c30daf94e3d55bce20144fe4aa481f99da70a293612"
},
"downloads": -1,
"filename": "radis-0.9.14-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "93aab17cd4a14c8fcc5df30b4381d41e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6513071,
"upload_time": "2018-10-14T11:06:01",
"url": "https://files.pythonhosted.org/packages/d7/ae/0e5134e798c777e5ec8bd96e3fcc3a036205a09dcd08c24453758532c49b/radis-0.9.14-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "85fec942175523780f6307e8afa3c3c9",
"sha256": "4151d44634324b5897c491fcfd6fbf7be65c09f4c6c57b0985f2f2c60e8a7275"
},
"downloads": -1,
"filename": "radis-0.9.14.tar.gz",
"has_sig": false,
"md5_digest": "85fec942175523780f6307e8afa3c3c9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6455399,
"upload_time": "2018-10-14T11:06:14",
"url": "https://files.pythonhosted.org/packages/2b/1a/15bc3f2cc2787ba70e1c3ede50945610c7ce83c39cef643bf61b34c96d37/radis-0.9.14.tar.gz"
}
],
"0.9.16": [
{
"comment_text": "",
"digests": {
"md5": "8b6c2464eff018bc452ee279b0db303f",
"sha256": "4c5bc11621a6d4841f6890556910e8e9424a2f8224474521aea84d55085ee25b"
},
"downloads": -1,
"filename": "radis-0.9.16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8b6c2464eff018bc452ee279b0db303f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6515210,
"upload_time": "2018-12-28T23:36:53",
"url": "https://files.pythonhosted.org/packages/6c/9c/2e19df239056d034368913a6576487c898612e0ae6f132f3ee95befb6fb1/radis-0.9.16-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "748e8436ad0a024703c53c97385171b9",
"sha256": "4213c485e4a5f5b568cf8d2fee5554324cadafdcafb9f2783462406a9716b6fa"
},
"downloads": -1,
"filename": "radis-0.9.16.tar.gz",
"has_sig": false,
"md5_digest": "748e8436ad0a024703c53c97385171b9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6457957,
"upload_time": "2018-12-28T23:37:04",
"url": "https://files.pythonhosted.org/packages/ef/57/a14f77f6ef2e63bdc77d402bddbb6bc71af3928dbb16528223d60789680f/radis-0.9.16.tar.gz"
}
],
"0.9.17": [
{
"comment_text": "",
"digests": {
"md5": "1112b19a52b521acc315e401ba5e4814",
"sha256": "4b60ec544cd038ef408b836f7bbe908edc53e3a41ae2a1101d2119c742b7b024"
},
"downloads": -1,
"filename": "radis-0.9.17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1112b19a52b521acc315e401ba5e4814",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6516439,
"upload_time": "2019-01-03T03:02:12",
"url": "https://files.pythonhosted.org/packages/ec/16/204e6822d5e9000ef3971c88208136814b7bff5ef09ecc481884c8541fb2/radis-0.9.17-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ca4b45702c2235db4f4b01906bd3c847",
"sha256": "b226c37c055a1aff5c4fd393f287927ff143572fb051081af2d91801b444c1ec"
},
"downloads": -1,
"filename": "radis-0.9.17.tar.gz",
"has_sig": false,
"md5_digest": "ca4b45702c2235db4f4b01906bd3c847",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6459349,
"upload_time": "2019-01-03T03:02:19",
"url": "https://files.pythonhosted.org/packages/10/30/27ac42c14be415de6755ee9a2d8de28b51261d2c32f970e269dad4c73406/radis-0.9.17.tar.gz"
}
],
"0.9.18": [
{
"comment_text": "",
"digests": {
"md5": "a0b899c928b76dfec6e5dea703d85327",
"sha256": "d3e0d009770a38215367a338fd6cf6dfa11a9a863c2cb52c3e831f9b0c06c272"
},
"downloads": -1,
"filename": "radis-0.9.18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a0b899c928b76dfec6e5dea703d85327",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6520042,
"upload_time": "2019-06-04T10:55:37",
"url": "https://files.pythonhosted.org/packages/b4/7f/71033f5cbdfd32d2b2c31144bfeeb50b72777947e650a28e02c40dbcaede/radis-0.9.18-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "eada31ee50e6ad19cf66c3f42da8730b",
"sha256": "145e22350bbfef2774d8df8eb54f9f52459901d76c45696918018a531e3872c0"
},
"downloads": -1,
"filename": "radis-0.9.18.tar.gz",
"has_sig": false,
"md5_digest": "eada31ee50e6ad19cf66c3f42da8730b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6460358,
"upload_time": "2019-06-04T10:55:41",
"url": "https://files.pythonhosted.org/packages/e7/e8/c4e99146c5fc11aadd549a2e578c1dbb6d7ab080256b7dfc07b98b6f8632/radis-0.9.18.tar.gz"
}
],
"0.9.19": [
{
"comment_text": "",
"digests": {
"md5": "088ed333c5ef796f13ba910aced11d25",
"sha256": "367d0106640a3ce6d2b64b37b0f06b75dc11f39512f495f2c664cdbba4b03359"
},
"downloads": -1,
"filename": "radis-0.9.19-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "088ed333c5ef796f13ba910aced11d25",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6521057,
"upload_time": "2019-06-25T16:05:54",
"url": "https://files.pythonhosted.org/packages/b0/b4/263fbb27f5f96e0840af1e326aa8ad30515cf91f6084fb6a0866df19465c/radis-0.9.19-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ae6ec6a4cab3dd0f085de8e1ee72b6a7",
"sha256": "5ab37f61efabec9edd6fa691ab6e5781ea13ebc0864af425e3fa0a5450b8f039"
},
"downloads": -1,
"filename": "radis-0.9.19.tar.gz",
"has_sig": false,
"md5_digest": "ae6ec6a4cab3dd0f085de8e1ee72b6a7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6463530,
"upload_time": "2019-06-25T16:05:57",
"url": "https://files.pythonhosted.org/packages/30/2d/c38d03fd282ad019b7e36f78a7ef8424ac863a394d39807651d60bd4d9f9/radis-0.9.19.tar.gz"
}
],
"0.9.20": [
{
"comment_text": "",
"digests": {
"md5": "7b85e98b042c7ae03efc953b04f462a7",
"sha256": "824f5db071a29c4a58612c1a10b4a0b89cb18f6f88f0339a379d38cde9124e7a"
},
"downloads": -1,
"filename": "radis-0.9.20-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7b85e98b042c7ae03efc953b04f462a7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6529052,
"upload_time": "2019-08-20T16:09:47",
"url": "https://files.pythonhosted.org/packages/af/71/61750430f9f8aa7c5c9c118359eb12400c15f51a6bae56de14045124a8b1/radis-0.9.20-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "39cb5b70d3b3bdfa7280118d88844839",
"sha256": "d2db73a007dfa42b0551200afc53ca9fd8f5b9df3bb30f80776e0fbb6ed4659a"
},
"downloads": -1,
"filename": "radis-0.9.20.tar.gz",
"has_sig": false,
"md5_digest": "39cb5b70d3b3bdfa7280118d88844839",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6471555,
"upload_time": "2019-08-20T16:09:49",
"url": "https://files.pythonhosted.org/packages/aa/d4/78d317cd2bf997fa1507ff82b8369bc8cde5d858b6d7dd9c67ad324f4452/radis-0.9.20.tar.gz"
}
],
"0.9.21": [
{
"comment_text": "",
"digests": {
"md5": "f45bd082779deab7bed7ee89b904687b",
"sha256": "3357e975bf12735ae408e6f5df5fe42b644e2eee34aaf6dccc1950c5942d926d"
},
"downloads": -1,
"filename": "radis-0.9.21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f45bd082779deab7bed7ee89b904687b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6529041,
"upload_time": "2019-08-20T16:38:50",
"url": "https://files.pythonhosted.org/packages/c1/71/61638d0a79b723093be46a460f6dc05c4ebe94cf9205a41ea2e84a1caa05/radis-0.9.21-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e004a9fae20d175e10d0290e7ff06f8b",
"sha256": "e25c1c2e6dce514dd212b2db93c06afd5e8736fffa21c1ff3ee5bb946946d28f"
},
"downloads": -1,
"filename": "radis-0.9.21.tar.gz",
"has_sig": false,
"md5_digest": "e004a9fae20d175e10d0290e7ff06f8b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6471599,
"upload_time": "2019-08-20T16:38:53",
"url": "https://files.pythonhosted.org/packages/fe/6b/2aaaa4ecd8ce802bd94eb4c6d479a687b0d563bef9a50c94258b6d0e745a/radis-0.9.21.tar.gz"
}
],
"0.9.9": [
{
"comment_text": "",
"digests": {
"md5": "def111293347c97865c729c1b52e5d6f",
"sha256": "cd6c18099ae74ec3b3d32b7a1fc3b86457d41caf3d5b42e1443afc9d480f55b2"
},
"downloads": -1,
"filename": "radis-0.9.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "def111293347c97865c729c1b52e5d6f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6343038,
"upload_time": "2018-10-12T18:42:48",
"url": "https://files.pythonhosted.org/packages/e5/35/dcaedcb3de3e6a7e887f1f3c1f496455cc775a852cd304a7493afcac5483/radis-0.9.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fc1009d927f5055c564dd2e5441f0613",
"sha256": "35c1640b67baa992dca1ea2a6ca1a6691ff51bdbd3b48eab19b5fcf5385a8a0d"
},
"downloads": -1,
"filename": "radis-0.9.9.tar.gz",
"has_sig": false,
"md5_digest": "fc1009d927f5055c564dd2e5441f0613",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6294948,
"upload_time": "2018-10-12T18:42:51",
"url": "https://files.pythonhosted.org/packages/40/74/faf4463d23356d843ceeaf702a990bf22a1d95a56e9c6565d0710a204970/radis-0.9.9.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "f45bd082779deab7bed7ee89b904687b",
"sha256": "3357e975bf12735ae408e6f5df5fe42b644e2eee34aaf6dccc1950c5942d926d"
},
"downloads": -1,
"filename": "radis-0.9.21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f45bd082779deab7bed7ee89b904687b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 6529041,
"upload_time": "2019-08-20T16:38:50",
"url": "https://files.pythonhosted.org/packages/c1/71/61638d0a79b723093be46a460f6dc05c4ebe94cf9205a41ea2e84a1caa05/radis-0.9.21-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e004a9fae20d175e10d0290e7ff06f8b",
"sha256": "e25c1c2e6dce514dd212b2db93c06afd5e8736fffa21c1ff3ee5bb946946d28f"
},
"downloads": -1,
"filename": "radis-0.9.21.tar.gz",
"has_sig": false,
"md5_digest": "e004a9fae20d175e10d0290e7ff06f8b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6471599,
"upload_time": "2019-08-20T16:38:53",
"url": "https://files.pythonhosted.org/packages/fe/6b/2aaaa4ecd8ce802bd94eb4c6d479a687b0d563bef9a50c94258b6d0e745a/radis-0.9.21.tar.gz"
}
]
}