{ "info": { "author": "Rodrigo Caballero", "author_email": "rodrigo.caballero@misu.su.se", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "=====\nclimt\n=====\n\n\n.. image:: https://img.shields.io/pypi/v/climt.svg\n :target: https://pypi.python.org/pypi/climt\n :alt: PyPI\n\n.. image:: https://img.shields.io/travis/climt/climt.svg\n :target: https://travis-ci.org/climt/climt\n :alt: Continuous Integration\n\n.. image:: https://ci.appveyor.com/api/projects/status/h9ayx22cxyfwh5rh?svg=true\n :target: https://ci.appveyor.com/project/JoyMonteiro/climt\n :alt: Continuous Integration\n\n.. image:: https://img.shields.io/codecov/c/github/climt/climt.svg\n :target: https://travis-ci.org/climt/climt\n :alt: Coverage\n\n.. image:: https://readthedocs.org/projects/climt/badge/\n :target: https://climt.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://zenodo.org/badge/74854230.svg\n :target: https://zenodo.org/badge/latestdoi/74854230\n :alt: Zenodo DOI\n\n\n.. image:: ./docs/climt_logo.jpg\n :height: 512px\n :width: 512px\n :align: center\n\n**climt** is a Toolkit for building Earth system models in Python. climt stands for *Climate Modelling\nand Diagnostics Toolkit* -- it is meant both for creating models and for generating diagnostics\n(radiative fluxes for an atmospheric column, for example). However, since it might eventually\ninclude model components for purposes other than climate modelling (local area models, large-eddy\nsimulation), we prefer to keep the abbreviation un-expanded!\n\nclimt hopes to enable researchers to easily perform online analysis and make\nmodifications to existing models by increasing the ease with which models\ncan be understood and modified. It also enables educators to write\naccessible models that serve as an entry point for students into Earth\nsystem modeling, while also containing state-of-the-art components.\n\nInitially climt contains only components for the atmosphere, and does not yet\ninclude a coupler. But there are plans to extend climt to a fully coupled Earth\nsystem model in the future. The toolkit is also written in such a way that it\ncould enable the development of non-climate models (e.g. weather prediction,\nlarge-eddy simulation). To do so requires only that the prognostic and\ndiagnostic schemes are wrapped into the correct Python-accessible interface.\n\nclimt builds on sympl_, which provides the base classes and array and constants handling\nfunctionality. Thanks to sympl_ and Pint_, climt is also a fully units aware model. It is\nuseful to know how sympl_ works to use climt better. Read more about sympl_ at\nhttps://sympl.readthedocs.io.\n\n* Free software: BSD license\n* Documentation: https://climt.readthedocs.io.\n\nInstallation\n-------------\n\nclimt can be installed directly from the python package index using pip.\n\n pip install climt\n\nshould work on most systems. From version 0.9.2 onwards, this command will\ninstall binary wheels, eliminating the requirement of a compiler on your\nsystem.\n\nDetailed instructions for Mac and Linux systems are available in the `documentation`_.\n\nFeatures\n--------\n\n* climt is fully units-aware!\n* Uses the xarray_ `DataArray` abstraction to build self describing model arrays. \n* Provides different levels of abstraction towards building a climate model.\n* Like sympl_, climt consciously uses descriptive names in the user API to ensure\n model scripts are self-documenting.\n* Allows for quick prototyping of earth system model components.\n* Provides a clean and convenient interface to add new components.\n\nCiting climt\n------------\n\nIf you use climt in your research, please cite the following paper documenting sympl_ and climt\n\n https://www.geosci-model-dev.net/11/3781/2018/\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n.. _sympl: https://github.com/mcgibbon/sympl\n.. _Pint: https://pint.readthedocs.io\n.. _xarray: http://xarray.pydata.org\n.. _documentation: http://climt.readthedocs.io/en/latest/installation.html\n\n\n=======\nHistory\n=======\n\nv.0.16.8\n--------\n\n* Fix timeout for all MAC builds\n\nv.0.16.6\n--------\n\n* Prevent MAC OS builds from timing out\n\nv.0.16.5\n--------\n\n* Fix formatting errors which prevent pypi deployment\n\nv.0.16.4\n--------\n\n* Fix MCICA for the shortwave component of RRTMG\n* Revise random number generation for MCICA\n* Improvement of the user interface to control MCICA\n\nv.0.16.3\n--------\n\n* update numpy requirement to avoid binary incompatibility error\n* Fix error in documentation\n\nv.0.16.2\n--------\n\n* Fix wheel build on Mac\n\nv.0.16.1\n--------\n\n* Fixed issue with Mac build\n* Few changes in the dry convection component. Significantly improves the performance.\n* Changed logo!\n* Fixed failing docs build\n\nv0.16.0\n-------\n\n* Added some documentation for using RRTMG with McICA\n* CI Testing for Mac and py37 added.\n* Refactored initialisation code\n* Enable the McICA version of RRTMG Longwave for consistency\n with the Shortwave component.\n* Fix bugs in IceSheet\n* Add tests to verify conservation of quantities\n* Fix bugs in initialisation\n* Fix energy conservation in surface flux scheme\n* Enable the McICA version of RRTMG Shortwave,\n so that partial cloud fractions can be used.\n* Add GMD example scripts to repository.\n* Fix docs to reflect API changes after refactor.\n* Fix wrong initialisation to use sigma values instead of pressure values \n of optical depth for GrayLongwaveRadiation\n\nBreaking Changes\n----------------\n\n* The flux outputs of GrayLongwaveRadiation have been renamed to eliminate\n `on_interface_levels` to keep consistency with other components.\n* All arrays are now 3/2d by default based on their expected dimensions.\n* horizontal dimensions are now `lon`, `lat`, but inputs\n used by components remain the same (`latitude`, `longitude`).\n\n\n\nv.0.14.8\n--------\n\nMany of the changes in this version come from changes in Sympl 0.4.0. We recommend\nreading those changes in the Sympl documentation.\n\n* Updated component APIs to work with Sympl 0.4.0\n* Many components which previously required horizontal dimensions now use\n wildcard matches for column dimensions.\n* Switched many print statements to logging calls.\n* Fixed bugs in some components\n\nBreaking Changes\n----------------\n\n* get_constant and set_constant have been removed, use the ones in Sympl.\n* Emanuel convection scheme can no longer be set to perform dry adiabatic\n adjustment to the boundary layer. This has been implemented in a separate\n component.\n* ClimtPrognostic, ClimtImplicitPrognostic, ClimtDiagnostic, ClimtImplicit have\n been removed. Use the base types in Sympl.\n* State initialization has been entirely re-worked. get_default_state now takes in\n an optional grid state instead of options to do with the state grid. A function\n get_grid is provided which can create a grid state, or one can be created manually.\n A grid state is a state containing air pressure and sigma on mid and interface\n levels, as well as surface pressure.\n* Replaced references to \"thermal_capacity\" with references to \"heat_capacity\" in\n component quantity names.\n\nv.0.14.7\n--------\n\n* Fix issue with pip v10 and pandas 0.22 conflicts\n\nv.0.14.3\n--------\n\n* Fix release issue because of pip API change\n\nv.0.14.1\n--------\n* Fix appveyor fail due to pip changes\n\nv.0.14.0\n--------\n\n* Fixed broken version numbers\n\nv.0.12.0\n--------\n\n* new release to fix version numbers and create zenodo ID\n\nv.0.9.4\n-------\n\n* Added attributes to inputs/outputs/ etc., to work with ScalingWrapper\n Added tests as well.\n* Added tests for constants functions\n* Fixed requirements to ensure this version of climt installs\n the correct versions of sympl and numpy.\n\nv.0.9.3\n-------\n\n* Released because of a labelling issue. See 0.9.2 for details.\n\nv.0.9.2\n--------\n* Updated documentation\n* Cleaned up examples\n* Added (*)_properties as a property to all components\n* The gas constant for dry air in the Emanuel scheme is now renamed _Rdair\n* RRTMG LW and SW are now OpenMP parallel\n* Added Instellation component to calculate zenith angle\n* Added tests to increase coverage\n* New constants handling functionality added\n* Travis builds now use stages\n* Appveyor CI up and running\n* Pre-installation of cython and numpy no longer necessary for source builds\n* Added snow-ice component\n* Ozone profiles do not need to be specified externally\n* Now also tested on Python 3.6\n\nBreaking Changes\n----------------\n\n* API for constants setting changed to `set_constant_from_dict` and `add_constants_from_dict`\n* `GfsDynamicalCore` renamed to `GFSDynamicalCore` for consistency\n* `get_prognostic_version` method of `ClimtImplicit` renamed to `prognostic_version`, and\n no longer accepts timestep as an argument. The current timestep should be set in\n `ClimtImplicit.current_time_step` during each iteration.\n* `RRTMGShortwave` now uses sympl's solar constant by default instead of from fortran.\n\nv.0.9.1\n-------\n* Held-Suarez and moist GCM with grey radiation work!\n* Added DCMIP initial conditions, test 4 tried out.\n* Dynamical core integrated now.\n* BIG change in the build system. Tests pass on Mac as well\n* Arrays can now have arbitrary dtype (to use qualitative, string, quantities)\n* Added Emanuel Convection, surface energy balance model and ice sheet energy balance\n* 2D coordinates are now supported for horizontal coordinates\n* Replaced create_output_arrays() with a more general\n get_state_dict_for() and get_numpy_arrays_from_state()\n combination.\n* State arrays now have coordinates\n* Updated documentation\n* RTD finally working, phew!\n* Added RRTMG Longwave, Simple Physics\n* Added helper functions to reduce boilerplate code in components\n\nBreaking Changes\n----------------\n\nLatest\n-------\n\n* method to obtain piecewise constant prognostic has been renamed to\n :code:`piecewise_constant_version`\n* Ozone profile has been modified\n* Heating rate for RRTMG top-of-atmosphere is no longer manually set to zero\n* Components no longer accept constants during initialisation. All constant handling\n is done internally.\n\nv.0.9\n------\n* SlabSurface no longer uses depth_slab_surface as input\n* changed order of outputs of GfsDynamicalCore and SimplePhysics to conform\n to TimeStepper order of diagnostics, new_state\n* get_default_state now accepts mid_levels and interface_levels instead of z\n to specify vertical coordinates.\n* mass_to_volume_mixing_ratio now uses numpy arrays instead of DataArrays.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/CliMT/climt", "keywords": "climt", "license": "BSD license", "maintainer": "", "maintainer_email": "", "name": "climt", "package_url": "https://pypi.org/project/climt/", "platform": "", "project_url": "https://pypi.org/project/climt/", "project_urls": { "Homepage": "https://github.com/CliMT/climt" }, "release_url": "https://pypi.org/project/climt/0.16.9/", "requires_dist": [ "numpy (==1.16.0)", "pint (>=0.7.0)", "xarray (>=0.8.0)", "sympl (==0.4.0)", "cython (>=0.25)", "scipy (>=0.18.1)" ], "requires_python": "", "summary": "CliMT is a Toolkit for building Earth system models in Python.", "version": "0.16.9" }, "last_serial": 5602151, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "c0c950d8537cb2b412f7a36c117f3ee2", "sha256": "83e803fd0c06fdb9aecabae6e996978ae52d0125015247e3100b37dd681fc37d" }, "downloads": -1, "filename": "climt-0.10.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c0c950d8537cb2b412f7a36c117f3ee2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10762299, "upload_time": "2018-03-29T13:21:24", "url": "https://files.pythonhosted.org/packages/2c/65/2724b17acc3418f74c9f90a3fc08494a48ee0254b33f78a6898a2f7395de/climt-0.10.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "67f627d6c681ee6dfa45bb2f2c5293e2", "sha256": "820bab93bd45236c90c3f868b826764eec9d4ee41c6da6260d268397e07c7137" }, "downloads": -1, "filename": "climt-0.10.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "67f627d6c681ee6dfa45bb2f2c5293e2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10762114, "upload_time": "2018-03-29T13:21:29", "url": "https://files.pythonhosted.org/packages/39/8c/e72ce0068e20c5e5355254542e2a8e5fcfce59515fbc74b641aeb7ea1750/climt-0.10.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7a0fa07f5152387733ddbda1211ee2e8", "sha256": "378b3675ec217e437d8d7ef927fd07eb00505da341434cbd39de7a504b5aa25c" }, "downloads": -1, "filename": "climt-0.10.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a0fa07f5152387733ddbda1211ee2e8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10772868, "upload_time": "2018-03-29T13:05:09", "url": "https://files.pythonhosted.org/packages/54/a9/e518220dfe3548c9126f269cbaec3e5904eaf2e8e16429669c7f45c2e919/climt-0.10.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "944685596e7ee02589005901e22c66e3", "sha256": "c6fa7c98cc9d5eb41edf37b43568d6fa7bda29da52cfd963b377632315b66b5c" }, "downloads": -1, "filename": "climt-0.10.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "944685596e7ee02589005901e22c66e3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12428572, "upload_time": "2018-03-29T13:06:44", "url": "https://files.pythonhosted.org/packages/61/58/204a2b6f2a501e2f910b9b35930b27f55419a199b367e46defa6746223eb/climt-0.10.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "930d1d14ef1cec044af30be75bdd4c5e", "sha256": "5aa32265e4442c28dd07d2d3a2909e09964fc1fa72f232d2f35010bd71d00e3a" }, "downloads": -1, "filename": "climt-0.10.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "930d1d14ef1cec044af30be75bdd4c5e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10807986, "upload_time": "2018-03-29T13:03:19", "url": "https://files.pythonhosted.org/packages/7b/e5/f7e6f6d01f8bd2c12d0b5034690a669a7d2b2094c9e4fe8f5f03423a6d26/climt-0.10.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c134d8ecf722fd83c3656f4692b532ac", "sha256": "0387cfb8827ebe4b5295b2340c97c04b1947c63befe055324d1725c7ee694a0d" }, "downloads": -1, "filename": "climt-0.10.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c134d8ecf722fd83c3656f4692b532ac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12435987, "upload_time": "2018-03-29T12:52:23", "url": "https://files.pythonhosted.org/packages/ee/08/7ee17e351854f7417cc7b3b64b0c199bca6e277d2b681895700a5728700b/climt-0.10.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ee0db105209aaa7a8fcd50591298932a", "sha256": "c71b3ad3ea602ff8422ed855ef3e9dc760d9965cf533311f5980387a627d2bf6" }, "downloads": -1, "filename": "climt-0.10.0.tar.gz", "has_sig": false, "md5_digest": "ee0db105209aaa7a8fcd50591298932a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669188, "upload_time": "2018-03-29T12:49:26", "url": "https://files.pythonhosted.org/packages/a6/69/b056e0f3d6dafaff0c6bed89400effc511cffe400a28f00ec9eefabe221c/climt-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "0792a22bf6a63a01d96faea0602939ac", "sha256": "559c62d401822b167268161cb43d7bfebdd3e0a3fbdb004bab3f30e82741947d" }, "downloads": -1, "filename": "climt-0.11.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0792a22bf6a63a01d96faea0602939ac", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10776251, "upload_time": "2018-03-29T16:16:50", "url": "https://files.pythonhosted.org/packages/d7/f3/1d9a8602777030ea02edfd87ca4975d484198ebcd85b7493afbea86917fc/climt-0.11.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "adc2a9f9e75e03cd73d1e4dca898c1dd", "sha256": "1af4f02aa9c48a608d9a16dd3d0e25c82401a2cd51166d566e73fdba771a7332" }, "downloads": -1, "filename": "climt-0.11.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "adc2a9f9e75e03cd73d1e4dca898c1dd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10776078, "upload_time": "2018-03-29T16:16:53", "url": "https://files.pythonhosted.org/packages/98/e8/7d0d63afc38f0b5ccfaf3d63ddde3b7d19b9a0526f57b5b20feb1ed94fd2/climt-0.11.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "32313a7a29c175c23386592810fc3d7e", "sha256": "900028a04fba05ba3632e8da10f63ecca9bc5c7ac50fc939cc28c664248e4959" }, "downloads": -1, "filename": "climt-0.11.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "32313a7a29c175c23386592810fc3d7e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10772848, "upload_time": "2018-03-29T16:12:57", "url": "https://files.pythonhosted.org/packages/ac/e6/1bc465ae47843c6db767a8a7fa57b516e4c2327586ec83aaf4a9f56e0ebe/climt-0.11.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3f26c02a0f1ea018f7f02f96a2d24523", "sha256": "fe53a3d1e3cd7c7371f1070da55b0b06ff58ec3f08327a452e8d2572a130b68b" }, "downloads": -1, "filename": "climt-0.11.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3f26c02a0f1ea018f7f02f96a2d24523", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12428565, "upload_time": "2018-03-29T16:08:27", "url": "https://files.pythonhosted.org/packages/28/ed/9eac9cc1e485e7f882e39a2858c304707299456d42f40b5a6fc5bed27621/climt-0.11.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "65ea80d838f39601b91b41b653c373d1", "sha256": "6aae0955afcd863493693460182f504f78af31ad0664f5d1e9842f7b5dda7d49" }, "downloads": -1, "filename": "climt-0.11.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "65ea80d838f39601b91b41b653c373d1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11463993, "upload_time": "2018-03-29T16:23:00", "url": "https://files.pythonhosted.org/packages/36/86/f0c04d7fb1f33d6e2a1c0f82451a93985e0241e54b0df3e41715f9a32c49/climt-0.11.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "d34711441a57287015195c6234070321", "sha256": "9652a75386142f71469108d9afc2ea2b55f04ff3ddedb5326ea67931806ff7e0" }, "downloads": -1, "filename": "climt-0.11.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d34711441a57287015195c6234070321", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10821737, "upload_time": "2018-03-29T16:13:46", "url": "https://files.pythonhosted.org/packages/e3/7b/156f6ea2e4fe5932370da3687394f1e4a6dd5abab2d50c8afb3548abf171/climt-0.11.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7a424eb6995942dac92e674bfd2bb48f", "sha256": "1bdb32bc085863bae06559f8863d7bdb2a0d23c60678328d92e65e5c943d4d83" }, "downloads": -1, "filename": "climt-0.11.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7a424eb6995942dac92e674bfd2bb48f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12435975, "upload_time": "2018-03-29T15:53:22", "url": "https://files.pythonhosted.org/packages/8c/76/36321cd4ca1b4ab5e634236c96a95396c3e0f4c98dd65b9f16e5ae5985c2/climt-0.11.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1f223dc4e106460d21c1f38113a5f129", "sha256": "aae44ad21ce3bb6005d6cd7fe3ddfccd68963608d781e09e86410ea823047c49" }, "downloads": -1, "filename": "climt-0.11.0.tar.gz", "has_sig": false, "md5_digest": "1f223dc4e106460d21c1f38113a5f129", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669205, "upload_time": "2018-03-29T15:44:04", "url": "https://files.pythonhosted.org/packages/b5/c0/8feee169aa65952f59ff906f47e71d04fc12dd302a218533f9d965379200/climt-0.11.0.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "c0224b8ec785d4a68fd86c7df4b9b0af", "sha256": "cfcff929c854869914b10a4066089dfa5ab3fc568c05b4a9034a4148723da289" }, "downloads": -1, "filename": "climt-0.14.0.tar.gz", "has_sig": false, "md5_digest": "c0224b8ec785d4a68fd86c7df4b9b0af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669183, "upload_time": "2018-05-04T11:18:32", "url": "https://files.pythonhosted.org/packages/2b/c0/2db01a5ef49d840985257910d4732366503590d1df25ffa0706d805ae0dd/climt-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "a83beee9a19a92350f29be051d0e66e6", "sha256": "c1420857b9e785d1b5115f22a7a32ad69dea024fa3960418cad5a7252c665207" }, "downloads": -1, "filename": "climt-0.14.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a83beee9a19a92350f29be051d0e66e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12424776, "upload_time": "2018-05-06T17:41:41", "url": "https://files.pythonhosted.org/packages/ff/61/dde2618e6123bf0fbc2d5da3c5d91a769b5397fe50ac982950d463df6dce/climt-0.14.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5724802dfd8db8d614280998d41f6a21", "sha256": "c2a1862575df9efb901be2faabd75b267631a60c24abdf326e0a1efd93a7ab6b" }, "downloads": -1, "filename": "climt-0.14.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5724802dfd8db8d614280998d41f6a21", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12432196, "upload_time": "2018-05-06T17:29:09", "url": "https://files.pythonhosted.org/packages/7b/c4/dcaf24b4c133da46cdd9185aeb7b6eddd16d743c99fecd3e8fdadeafe1e1/climt-0.14.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9e4f6bcbd136f48c13fb1cf03761af0c", "sha256": "a857a2ccec527280348e9a010698a91ed01a6a2baacd6c770203a007581d38d7" }, "downloads": -1, "filename": "climt-0.14.1.tar.gz", "has_sig": false, "md5_digest": "9e4f6bcbd136f48c13fb1cf03761af0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669239, "upload_time": "2018-05-06T17:35:26", "url": "https://files.pythonhosted.org/packages/cc/d3/3c33511e68ea22547a1b2e76d59a90ef60b6d4816a192498959d6547ae79/climt-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "7b92a1c0f55f4ab0b74d6a8986eea894", "sha256": "86283123d87904ff116fb52c0532940da11c3ae8a0388f9848ea0399f7d9f388" }, "downloads": -1, "filename": "climt-0.14.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7b92a1c0f55f4ab0b74d6a8986eea894", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12424818, "upload_time": "2018-05-06T18:54:41", "url": "https://files.pythonhosted.org/packages/11/8f/ef617d847479cf6b265e5e6365e994c85c835a64155e3c50caba2f8c809a/climt-0.14.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "385b916b9b1df2b758a8e4a56195a3ad", "sha256": "d59604649ecfad5ebed9f6c2e7c259fcbd074c6ec1892848d67de7f6cb400ec0" }, "downloads": -1, "filename": "climt-0.14.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "385b916b9b1df2b758a8e4a56195a3ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12432233, "upload_time": "2018-05-06T18:41:51", "url": "https://files.pythonhosted.org/packages/9f/85/0ffe7f8b4805bfce845523f5f974f063dcf1ddfc9eef5add682fad956ae1/climt-0.14.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2e26d4438bdd78eff0c56232db09013e", "sha256": "75a7f31715847f8bc27834c723164b91c8a7bae234a6a6adb3e508c0b03c0f0e" }, "downloads": -1, "filename": "climt-0.14.2.tar.gz", "has_sig": false, "md5_digest": "2e26d4438bdd78eff0c56232db09013e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669256, "upload_time": "2018-05-06T18:48:55", "url": "https://files.pythonhosted.org/packages/74/39/ef7a7f60e07e34b290ea00ea7ef5aedbc77476576592f2cbe89413cc0b56/climt-0.14.2.tar.gz" } ], "0.14.4": [ { "comment_text": "", "digests": { "md5": "9bec6c96c10e9aa651dafb235959b64b", "sha256": "9f7e15f58cc2916ffbee9285da45d036dc2e2d243c74ee6cb647e2a73dddf5cf" }, "downloads": -1, "filename": "climt-0.14.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9bec6c96c10e9aa651dafb235959b64b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10783238, "upload_time": "2018-05-06T19:37:17", "url": "https://files.pythonhosted.org/packages/67/40/4f7a9cebd0d6e3f6a28276b51d433f9c60c4dd5f61c13923cf65e5564d51/climt-0.14.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "559d77165116bf82a2836b1859ebeb3f", "sha256": "3dcd33e4eea668530e424b7d9cf8f5e133c9af20043fa42576a259b4c999d560" }, "downloads": -1, "filename": "climt-0.14.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "559d77165116bf82a2836b1859ebeb3f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12424826, "upload_time": "2018-05-06T19:26:52", "url": "https://files.pythonhosted.org/packages/8e/4b/426616ef8ca3d6a2f1cfe65962c29f19cb970ad45d76391f2f0a43aa701b/climt-0.14.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1fedd9619d595c4551c03c17024f4bdb", "sha256": "c5c2d0aa750cdbd8b8f8217410960aefb26f26824d5b8b6709208b5592bc4a12" }, "downloads": -1, "filename": "climt-0.14.4-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "1fedd9619d595c4551c03c17024f4bdb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11464252, "upload_time": "2018-05-06T20:12:06", "url": "https://files.pythonhosted.org/packages/9f/49/2b9f6e3226763134bec9e41f07eb69125fc3b1c4479ba83b066e0b3dab06/climt-0.14.4-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "1bd090c040a03daaae0a6013a47544ca", "sha256": "15b5e3ed1510c953e792656af9911194a540dc4fea34aef1713fe22bcd2c986d" }, "downloads": -1, "filename": "climt-0.14.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1bd090c040a03daaae0a6013a47544ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10818271, "upload_time": "2018-05-06T19:38:22", "url": "https://files.pythonhosted.org/packages/67/20/8f9341576f8b27095ae9875de6245fb1dfcd603866c139d0f1a47bc7c0e4/climt-0.14.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "40c02aa7a1b928b5e5ae96d84692fa7f", "sha256": "c463e5904a91ae5d3172f788c6d5aea5ff40b00dc3f504e5993c76c6a1b8d088" }, "downloads": -1, "filename": "climt-0.14.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "40c02aa7a1b928b5e5ae96d84692fa7f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12432230, "upload_time": "2018-05-06T19:14:21", "url": "https://files.pythonhosted.org/packages/82/06/7709eecd09a9c5e45b2b3765c7359f4c4678e3509ee1f363b017c0ef29fd/climt-0.14.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "25d1a60e83a14174fb2890f860e3d634", "sha256": "e2b9ac88cde78ccd5ea7ab17bfd0726142e7eae74dff2bcf220af77ca0a6625e" }, "downloads": -1, "filename": "climt-0.14.4.tar.gz", "has_sig": false, "md5_digest": "25d1a60e83a14174fb2890f860e3d634", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669239, "upload_time": "2018-05-06T19:21:10", "url": "https://files.pythonhosted.org/packages/52/c3/cc6f9a6252a5a02a60e7c854d5d37e41047c76c392848d8ae04a87bc9756/climt-0.14.4.tar.gz" } ], "0.14.5": [ { "comment_text": "", "digests": { "md5": "0fef2f856b920d046e6d6998dbb1c120", "sha256": "66981ca5ec661a68637a957db81726c9cf93a8566c1cb463fff93c1d4837be21" }, "downloads": -1, "filename": "climt-0.14.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0fef2f856b920d046e6d6998dbb1c120", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12424826, "upload_time": "2018-05-06T21:46:32", "url": "https://files.pythonhosted.org/packages/a4/fe/9d9ec5d648f1abdf5ca3d8cbd03a60383f1f4dd90d75841e3a955210e959/climt-0.14.5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "91968f1b3054c0a41909f6805a75b8c6", "sha256": "52dfd366e787c30d3b8b2f154d21c0594408017d09a7f352f5543499f528f8e8" }, "downloads": -1, "filename": "climt-0.14.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "91968f1b3054c0a41909f6805a75b8c6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12432228, "upload_time": "2018-05-06T21:33:17", "url": "https://files.pythonhosted.org/packages/95/f5/ece5abd49d88c0af59b281c28eea57bb55c8067166b637c0458d21c12d30/climt-0.14.5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "931bedbc03456802f01b682e01f4770b", "sha256": "93fd9291ff396b1cee2c71a794579204ef9e09d15d1fb4fd9facc03d16a0df1a" }, "downloads": -1, "filename": "climt-0.14.5.tar.gz", "has_sig": false, "md5_digest": "931bedbc03456802f01b682e01f4770b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669269, "upload_time": "2018-05-06T21:43:55", "url": "https://files.pythonhosted.org/packages/74/f0/459c1ef9b76b7b15a47afb791fee3a699064d579144331f933e08c53838a/climt-0.14.5.tar.gz" } ], "0.14.6": [ { "comment_text": "", "digests": { "md5": "ba36b9bfa0f3cc4477131d6be8892d20", "sha256": "4ea7e3454586b4d337e45a6375262f9fc5e41386c08274d4cbbf017c89b76e8b" }, "downloads": -1, "filename": "climt-0.14.6.tar.gz", "has_sig": false, "md5_digest": "ba36b9bfa0f3cc4477131d6be8892d20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669262, "upload_time": "2018-05-06T22:12:41", "url": "https://files.pythonhosted.org/packages/2a/97/a38efa5728e46b9351a9b517c516b69ea9ff7f0bc7c8d54b08601d7baea0/climt-0.14.6.tar.gz" } ], "0.14.7": [ { "comment_text": "", "digests": { "md5": "98b7e66f7089fb2894b169c36129747f", "sha256": "56b657fa859e438c256df92d97ab9d6ce0c30f9648ba743fa45f82bbaaa1d28b" }, "downloads": -1, "filename": "climt-0.14.7-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "98b7e66f7089fb2894b169c36129747f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10758782, "upload_time": "2018-05-06T23:05:40", "url": "https://files.pythonhosted.org/packages/33/31/417bad36720c133452f4216582f2ed81106b333142834afe3f43ca400965/climt-0.14.7-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "60528cc2d2762f3213dab67d47a7e3ce", "sha256": "8cbeaedf51f146d9a58ea23ce959962a8d4cd3fcc843032b02a1e286976af7c4" }, "downloads": -1, "filename": "climt-0.14.7-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "60528cc2d2762f3213dab67d47a7e3ce", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10758603, "upload_time": "2018-05-06T23:05:45", "url": "https://files.pythonhosted.org/packages/ec/80/9034c028bdaf6e8ac694697699ec346483ac14613ad4b98898a3c0a07720/climt-0.14.7-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dffa53f3f35d3a870c1dc65e20ac7f62", "sha256": "bcfbbd5da80124c254d08612565f16a11018a7f30f5b0795645b5f5bc8f35520" }, "downloads": -1, "filename": "climt-0.14.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dffa53f3f35d3a870c1dc65e20ac7f62", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10769149, "upload_time": "2018-05-06T22:54:54", "url": "https://files.pythonhosted.org/packages/aa/de/05eaafd49d78d3dcc8e6f1f5566629df8959528a17648321e9258ae880a7/climt-0.14.7-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3b5d445fab8c72e0fd4b20754e8593ee", "sha256": "0fe86c319e7272b57a0f415e74ba4800f294d90ce5fde9c449707a4dc8d4f292" }, "downloads": -1, "filename": "climt-0.14.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3b5d445fab8c72e0fd4b20754e8593ee", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12424848, "upload_time": "2018-05-06T22:46:22", "url": "https://files.pythonhosted.org/packages/94/ef/70282d14b7cfa1c289fb2ef23cb8775019e2eaccd798721043efe061ebf8/climt-0.14.7-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0d9eecb7b6ac08667b96f02bfe59c0d4", "sha256": "4c3a3486b4a95fa2a923eb374002b6a5dd55c3806402e6059085c2277d58f372" }, "downloads": -1, "filename": "climt-0.14.7-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0d9eecb7b6ac08667b96f02bfe59c0d4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9853700, "upload_time": "2018-05-06T22:51:27", "url": "https://files.pythonhosted.org/packages/9f/f7/38d84394040e375addd6e06ccc40586ec9c38cd41d0600a5ec143f3a85d2/climt-0.14.7-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "729026757ebe8c7054fcc779413f0f9d", "sha256": "99c00426712da491b59acc1e3aa73e8248714374a65c9b20cd0b7382efcfb5ed" }, "downloads": -1, "filename": "climt-0.14.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "729026757ebe8c7054fcc779413f0f9d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10818221, "upload_time": "2018-05-06T22:55:37", "url": "https://files.pythonhosted.org/packages/7c/a2/3913b78b69b6d414107c8270d457acef20a7e584aa30f19a37824532698d/climt-0.14.7-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e2994a51dd5db2bace1c7f711dd4646c", "sha256": "bd10b1ff6e5442b896a510062ed9e11b86c77c36140fd4f939862d9b776d446f" }, "downloads": -1, "filename": "climt-0.14.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e2994a51dd5db2bace1c7f711dd4646c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12432260, "upload_time": "2018-05-06T22:34:03", "url": "https://files.pythonhosted.org/packages/c5/51/14d90b24bece93a48054f84194d61e2512ad963358533627e7dfd54c373f/climt-0.14.7-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3a720538882a9ac58b81dc742a4834cf", "sha256": "aa78afff59a9588cec403fddf94778a40f8f29c527361a8b890d810c72621fc6" }, "downloads": -1, "filename": "climt-0.14.7.tar.gz", "has_sig": false, "md5_digest": "3a720538882a9ac58b81dc742a4834cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669300, "upload_time": "2018-05-06T22:40:32", "url": "https://files.pythonhosted.org/packages/d9/4c/3aff47a48f751b72bd4c7444f2dfd47d2556f2dd40ceda7aa92cf6c0f9da/climt-0.14.7.tar.gz" } ], "0.14.8": [ { "comment_text": "", "digests": { "md5": "3f241a35c71417a68e24e8eeb0822fc0", "sha256": "eeb71724e3b14b6443520b52e99b3622c0ecd2dc4fe0238b91cb850293b79bc5" }, "downloads": -1, "filename": "climt-0.14.8-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3f241a35c71417a68e24e8eeb0822fc0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25801105, "upload_time": "2018-06-04T15:18:12", "url": "https://files.pythonhosted.org/packages/8b/63/f2200afa7bad2936482621b35370b72a0298c281c88ae71f23ca1afd6fe5/climt-0.14.8-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "179e3bab286568217e9e2103a3b9caab", "sha256": "196ca4189689b68eaa4cbefb789fb8c7dd8d30e73f273057faee1cc8a43c6d8c" }, "downloads": -1, "filename": "climt-0.14.8-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "179e3bab286568217e9e2103a3b9caab", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25801267, "upload_time": "2018-06-04T15:18:17", "url": "https://files.pythonhosted.org/packages/12/ae/2e5b2fc1482ff6da90f937dbd2506e8438f55acf6dcb231096693f81171b/climt-0.14.8-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6d3c32f0db8170d4d8757242186c833a", "sha256": "cd788472b366c141777e24f72bab80d833128e1b81c3b0eea52cad46171448ad" }, "downloads": -1, "filename": "climt-0.14.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6d3c32f0db8170d4d8757242186c833a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25812491, "upload_time": "2018-06-04T15:08:35", "url": "https://files.pythonhosted.org/packages/46/b3/af0d9ac1bdbaec7554262506776c9519ea605f0bbfb0379d829aef39ea97/climt-0.14.8-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fc8eb03763c2b80df2039eab5f4d20e6", "sha256": "0ed8e2728b1c79da23a27260741ae2c3b3973a22a0930213ee14afc81f063b5e" }, "downloads": -1, "filename": "climt-0.14.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fc8eb03763c2b80df2039eab5f4d20e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 27450986, "upload_time": "2018-06-04T15:43:15", "url": "https://files.pythonhosted.org/packages/db/7b/27a2486d02f2738741b3d58cf03ae9a2ac73a53fa555e306719ed26a3aac/climt-0.14.8-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f87afbc574f15aeff616788faec2e96d", "sha256": "e5227f0ce28fb6cee90b92e772e61337f3924dc9de76be77d4c870b6c472810d" }, "downloads": -1, "filename": "climt-0.14.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f87afbc574f15aeff616788faec2e96d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 25846862, "upload_time": "2018-06-04T15:08:12", "url": "https://files.pythonhosted.org/packages/7f/c6/c9e4974d7322c25bcc00e999b202bed67e3c139fab8b3db695e4a1ab52c7/climt-0.14.8-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f496c93c728208e6ee4a8f7c55295f48", "sha256": "e93adb03b5cc23de8fb0848d007564313ae7421a2bba9b7bdc6f4426fb7318e1" }, "downloads": -1, "filename": "climt-0.14.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f496c93c728208e6ee4a8f7c55295f48", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27458272, "upload_time": "2018-06-04T15:26:43", "url": "https://files.pythonhosted.org/packages/6f/09/41f5d54e83e359c47a9df2fb80663276d590bc4094f05c2b7572cddf9d3e/climt-0.14.8-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9cefcce2228dfef6119948a13d1e1ad4", "sha256": "fd999a27603f1ea75ceeeaf0d21e38a6fa789bbc989f90e39519de1837928350" }, "downloads": -1, "filename": "climt-0.14.8.tar.gz", "has_sig": false, "md5_digest": "9cefcce2228dfef6119948a13d1e1ad4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24697733, "upload_time": "2018-06-04T14:54:47", "url": "https://files.pythonhosted.org/packages/9b/28/9f1ef05d3d208f41958eaf9d23d5698ab221f65e264e8d4ba02ab4f0c0c1/climt-0.14.8.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "de31305edd8035c5af8066c447fb22b4", "sha256": "83f8743780cd544e1ddfb0aeaa24bd8220999f988fdad246542ca7777386900f" }, "downloads": -1, "filename": "climt-0.15.0.tar.gz", "has_sig": false, "md5_digest": "de31305edd8035c5af8066c447fb22b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18482713, "upload_time": "2018-08-17T16:54:56", "url": "https://files.pythonhosted.org/packages/e3/80/9c8f0234bacb472b8348e1f59fb5bf5b146e6b9d3ec731619347e78e02e7/climt-0.15.0.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "afe72419b2ce4225c5746b839d811c21", "sha256": "c01e23184e28e96e86a4c509b7a0403b4fa4db16e1fc78d5a41c1a6fb3a8bc7a" }, "downloads": -1, "filename": "climt-0.15.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "afe72419b2ce4225c5746b839d811c21", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25702850, "upload_time": "2018-08-18T07:05:17", "url": "https://files.pythonhosted.org/packages/4e/73/fece72ec237988f0a7da57ce34e094529428d714569e01a55dcd7ea16591/climt-0.15.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "46f509f7be8c80edef58663f5ebb926f", "sha256": "f2d8228d96fe4c55b503c316b76aea213ee7e4b98296b415b2ac82c42b5c15a6" }, "downloads": -1, "filename": "climt-0.15.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "46f509f7be8c80edef58663f5ebb926f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25702920, "upload_time": "2018-08-18T07:05:24", "url": "https://files.pythonhosted.org/packages/c1/7d/1e361474316bb3db52f7f73aedcb34bc356da8f93d6d42e647c1de76e4a0/climt-0.15.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6e2e8215fd969a47f02e5d13aa50267e", "sha256": "a4ec804f0ac2e12b5841ee4e4d2b2c19dcc2e417883d7fd40c3d13d085ca6741" }, "downloads": -1, "filename": "climt-0.15.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6e2e8215fd969a47f02e5d13aa50267e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25683017, "upload_time": "2018-08-18T06:53:27", "url": "https://files.pythonhosted.org/packages/6c/b6/3caf43abcecdadc3bcaa4322a58bebc2731d5c8530e71cecb760007d36fa/climt-0.15.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6afede770e1cfecfe8ebf984ed423762", "sha256": "b83e7940d6eada03efc37c6d83786fd0767e754a0d1ac8c6f49157f91e91577f" }, "downloads": -1, "filename": "climt-0.15.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6afede770e1cfecfe8ebf984ed423762", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 27405269, "upload_time": "2018-08-18T06:44:51", "url": "https://files.pythonhosted.org/packages/af/10/079f2c4ed7b252329e19944f569c692ee24203145f2f6f3087cfc0806162/climt-0.15.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "62c6008ac544bc46871db2c2fbbdac78", "sha256": "92f4d0703e49c2705a5f9b4f709372e23a7eee751742124b7ddc8bee4a50f967" }, "downloads": -1, "filename": "climt-0.15.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "62c6008ac544bc46871db2c2fbbdac78", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 25712290, "upload_time": "2018-08-18T06:53:52", "url": "https://files.pythonhosted.org/packages/eb/a3/7cf6298e36238b3a4fa026ab0ad3a27906de838cbcc4c3a20875815aeb69/climt-0.15.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ee8e6daca80736b769104db570bc3d58", "sha256": "26eddd23577d0bc3007d70797838452724359f785c25c7134c1878461e8a5c6d" }, "downloads": -1, "filename": "climt-0.15.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ee8e6daca80736b769104db570bc3d58", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27411798, "upload_time": "2018-08-18T06:37:57", "url": "https://files.pythonhosted.org/packages/55/a6/6716a7309569f351197988edc5bc21295526d0677b3695f69faacbef30a1/climt-0.15.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "32c7088ad898daa501649169d5ecd639", "sha256": "4739392de9652c4b1ae4bb85348e3df022a24e79a7bd9af26653f1747940f5f3" }, "downloads": -1, "filename": "climt-0.15.1.tar.gz", "has_sig": false, "md5_digest": "32c7088ad898daa501649169d5ecd639", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18482617, "upload_time": "2018-08-18T06:38:30", "url": "https://files.pythonhosted.org/packages/c6/48/27bad92d62896fadb87bd564fb5688b5624c150b1b430d13bc8704d07fee/climt-0.15.1.tar.gz" } ], "0.15.2": [ { "comment_text": "", "digests": { "md5": "f8ca72603108cc3d3d5dd2d186d23223", "sha256": "e4081965ac8bb09a80e68863f0e631e36e53e68e03e9609c43656a1c5647dc5f" }, "downloads": -1, "filename": "climt-0.15.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f8ca72603108cc3d3d5dd2d186d23223", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25702859, "upload_time": "2018-08-18T22:19:10", "url": "https://files.pythonhosted.org/packages/04/60/680c98a6546a05e6f43b55ed4269b860287162579190502e88c6640b6504/climt-0.15.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0b0e7e5e392cd6da429193de74dcdb8e", "sha256": "f45b6089b202830d160bd6308fec83b30febb5b050290c2283f1f0ebe413042b" }, "downloads": -1, "filename": "climt-0.15.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0b0e7e5e392cd6da429193de74dcdb8e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25702930, "upload_time": "2018-08-18T22:19:15", "url": "https://files.pythonhosted.org/packages/ae/47/198999f080ea3efd73a7e2fe298124ff8818035d00e903b1672c85b8152f/climt-0.15.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c13e04568ef9bcc53e66a1f4450bb474", "sha256": "eb5b492c6b7a3bffb6f272450d4e276aef094ef259caca9dea97598987e3211e" }, "downloads": -1, "filename": "climt-0.15.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c13e04568ef9bcc53e66a1f4450bb474", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25683033, "upload_time": "2018-08-18T22:08:35", "url": "https://files.pythonhosted.org/packages/6d/da/d71e9e3b56722c60b4312f5054680c173afbae364552f5569e089a008c64/climt-0.15.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "601633f695c3917b92cb9c68da74c03e", "sha256": "455e1d7d82dd21dac11a15d4fde743f069462464dd560d1107cdfb3316affc38" }, "downloads": -1, "filename": "climt-0.15.2-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "601633f695c3917b92cb9c68da74c03e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24841317, "upload_time": "2018-08-19T16:10:03", "url": "https://files.pythonhosted.org/packages/d8/63/91ffe0e0c229ec6d2a0d064485aa48315260cecb0194ba754e86c55ffdca/climt-0.15.2-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5c0f24bec0678996d8f8be0fbdf9d123", "sha256": "286c5f2c02c7c772dd6bb953518bbac7f7a455d09b3873b307041c6fbcd6eae2" }, "downloads": -1, "filename": "climt-0.15.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5c0f24bec0678996d8f8be0fbdf9d123", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 25712238, "upload_time": "2018-08-18T22:08:48", "url": "https://files.pythonhosted.org/packages/e0/88/6442acae65545cf2dacc872c262496b4c197e2ff4e74e86b5962999899e5/climt-0.15.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2db7796b6d0d3f741415aaaadb16ed0e", "sha256": "dab2bd232b1514330aca706d6f6dc74edecb39ac0adef923fd8d725bb2f87e8e" }, "downloads": -1, "filename": "climt-0.15.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "2db7796b6d0d3f741415aaaadb16ed0e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27411856, "upload_time": "2018-08-18T21:51:41", "url": "https://files.pythonhosted.org/packages/56/b3/93872ec295c6c24e6bd997cb0ff168c5cc7058e723e2899323dad552f110/climt-0.15.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "404753e0fb67de3d9d063362ed6ef1a4", "sha256": "95681f8afe1cdc6fa0275963aa9cbcbcbb0098d3b77fb35e1ecabb50a2abf943" }, "downloads": -1, "filename": "climt-0.15.2.tar.gz", "has_sig": false, "md5_digest": "404753e0fb67de3d9d063362ed6ef1a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18482639, "upload_time": "2018-08-18T21:55:15", "url": "https://files.pythonhosted.org/packages/cb/e9/6516aff566ce279021caa9609a2ff35e06530c5836c488dc5243cb5e196c/climt-0.15.2.tar.gz" } ], "0.15.3": [ { "comment_text": "", "digests": { "md5": "73ff04cc7e714b268b2a430ef2f4846c", "sha256": "8530ca8e2367d588bfd1b19172328f5b8aa4eb0953c9258910f244fc6133ff81" }, "downloads": -1, "filename": "climt-0.15.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "73ff04cc7e714b268b2a430ef2f4846c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25688855, "upload_time": "2018-08-20T06:33:21", "url": "https://files.pythonhosted.org/packages/99/e4/710c4160df9c43d6b3153e57e1230691f21af668979036e4d38d373b2dbd/climt-0.15.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c68c1f360259628a342d170bc0855534", "sha256": "f57ebf77ec416c1cb9e5f6ce43e0b982924cbdfeea310f5a068338c1ed9004c9" }, "downloads": -1, "filename": "climt-0.15.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c68c1f360259628a342d170bc0855534", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25688907, "upload_time": "2018-08-20T06:33:26", "url": "https://files.pythonhosted.org/packages/3f/3c/045c8dac77f9858e572b7990842d6858d0be9ec951c05177b1ba7456671f/climt-0.15.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d5d2e309613ca1974cae1570d5bdff0d", "sha256": "fa2589531db789f18524b28fb02f58e60640e2534412efa61aaa80c78449c28d" }, "downloads": -1, "filename": "climt-0.15.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d5d2e309613ca1974cae1570d5bdff0d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25672773, "upload_time": "2018-08-20T06:22:38", "url": "https://files.pythonhosted.org/packages/cd/ed/7a9340f8262c51355b58b445b7bb0b52c9dcb4f049e8ef22494de63af0c1/climt-0.15.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "72d254b389d28376ff57279f97a2cf5f", "sha256": "cd31868897d551a850b4ccac3b9c03e1dcd6726fb061dea31262dc7fb5b8a2da" }, "downloads": -1, "filename": "climt-0.15.3-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "72d254b389d28376ff57279f97a2cf5f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 31585190, "upload_time": "2018-08-20T09:55:13", "url": "https://files.pythonhosted.org/packages/57/bc/d5fda24d515a8918a99ad55a498eb282b4f2191a3629e4ac449af06ae81e/climt-0.15.3-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dac6c67acaf85f57b9fd31414181731e", "sha256": "65eb84b962a4efebdb3ee49aed0a5d8f8bf51eb383d23f3f89ad367753672c88" }, "downloads": -1, "filename": "climt-0.15.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dac6c67acaf85f57b9fd31414181731e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 25701941, "upload_time": "2018-08-20T06:24:28", "url": "https://files.pythonhosted.org/packages/6b/ef/e1030975b4f1d7d844e5c30289d04300391dc892beec7e8bbc0abf493a3f/climt-0.15.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "324cfb99b358e68b84213b8e6e9b55da", "sha256": "9425aba7ef9f732905c2b454590d910553182a9b9bcbba6012042bff5cbce9c6" }, "downloads": -1, "filename": "climt-0.15.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "324cfb99b358e68b84213b8e6e9b55da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27411858, "upload_time": "2018-08-20T06:10:02", "url": "https://files.pythonhosted.org/packages/73/10/1ac77e4ae403ccc581d0ad319af9184065230623c9099e2cb05c21ab5789/climt-0.15.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "94c0a52cbe9fec8078c179bd4029a241", "sha256": "09b0a66dda06c33a1601c06ea314fc6d9c2710a82749c6c3e3ba6dc6e8ff5843" }, "downloads": -1, "filename": "climt-0.15.3.tar.gz", "has_sig": false, "md5_digest": "94c0a52cbe9fec8078c179bd4029a241", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18482637, "upload_time": "2018-08-20T06:09:31", "url": "https://files.pythonhosted.org/packages/4d/ef/26d425dc85bde2af721a39970f157b63ac52508f19a84d50615a04ba4eae/climt-0.15.3.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "1e68320cab4a3b05973a10ed865689f6", "sha256": "62099943d25f046ad38375daf1ffb68ca22ebd230b71311507891e4608729a1a" }, "downloads": -1, "filename": "climt-0.16.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1e68320cab4a3b05973a10ed865689f6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24770964, "upload_time": "2018-10-09T11:19:23", "url": "https://files.pythonhosted.org/packages/26/f9/14d1c3836a2bca6872983dcbedab1487b94ca5e6e83389b5717180635e96/climt-0.16.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "07a026d7076bc9fa854948729a3b9a04", "sha256": "8423f146cc4d3e239e527a21ce4ea7751c7659d72a59b4469c7962b6ef2011d1" }, "downloads": -1, "filename": "climt-0.16.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "07a026d7076bc9fa854948729a3b9a04", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24770989, "upload_time": "2018-10-09T11:19:30", "url": "https://files.pythonhosted.org/packages/6b/8c/8b1f7b51db33bd9e9472cd6012b927e5627fcb756d4731d65e955f45b1dd/climt-0.16.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "523f30a119b2dea3694efbd28f9e2e51", "sha256": "77da379d3c29e28d54c1588e6812572dd01f984c532727520bb205172d7ac745" }, "downloads": -1, "filename": "climt-0.16.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "523f30a119b2dea3694efbd28f9e2e51", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24755033, "upload_time": "2018-10-09T11:04:20", "url": "https://files.pythonhosted.org/packages/89/68/75981354e2efa2fd8abbdcdb9dbbeecafdd4b6d09e60063674d1d06c89f4/climt-0.16.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ad51760f17dbe2f0984ba10a6e1c18d9", "sha256": "16f22e6a52f5d23b9103a7d84e543778d4ce8ff1f02baca1274c50a11a85b505" }, "downloads": -1, "filename": "climt-0.16.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ad51760f17dbe2f0984ba10a6e1c18d9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 23820650, "upload_time": "2018-10-09T11:31:01", "url": "https://files.pythonhosted.org/packages/26/49/86b79fc5f360a1dd732ca06192f3bf5d9631b1941102dfa76a7387a13a90/climt-0.16.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "a3dcfee3128a8a6b15e2824755086e33", "sha256": "f944bef424b558d85e9d353872f16ffbee815adcc7bc1da8d7b576765d1db209" }, "downloads": -1, "filename": "climt-0.16.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a3dcfee3128a8a6b15e2824755086e33", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24773917, "upload_time": "2018-10-09T11:04:04", "url": "https://files.pythonhosted.org/packages/ab/06/b22030db067982c96f27fed3ca527e07ecc81b4674dc96397a4c5f2416a0/climt-0.16.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5044ec4eabbc5da459bfdd384af750cf", "sha256": "d4e2715a617d500902c8328903e267ee7dfd095fa6f7f2ee604d8f3e7e5be255" }, "downloads": -1, "filename": "climt-0.16.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5044ec4eabbc5da459bfdd384af750cf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27520687, "upload_time": "2018-10-09T10:00:28", "url": "https://files.pythonhosted.org/packages/4e/44/bb625deec986479df7d2deac078bf0d323c7ac3c62627bc37c52736cbc67/climt-0.16.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c1e3047104c482e5774fcd6861711dec", "sha256": "1b6aa38ecd8a0e725f03c92f5e3685dbef1316184b77dd8e0dcfb872fd7072c5" }, "downloads": -1, "filename": "climt-0.16.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c1e3047104c482e5774fcd6861711dec", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 23816432, "upload_time": "2018-10-09T11:46:30", "url": "https://files.pythonhosted.org/packages/37/2d/b54bc0c26f8eaee2c1b3a252e3bcdc2c35334f25c6511f2386a4f23716fe/climt-0.16.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "23865e8e21ad9ee88957644651e9e69a", "sha256": "399ca160edea8a22299bb038b8c729ed654d2a0ce648192b341967f4a48f2791" }, "downloads": -1, "filename": "climt-0.16.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "23865e8e21ad9ee88957644651e9e69a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24768713, "upload_time": "2018-10-09T11:04:40", "url": "https://files.pythonhosted.org/packages/9a/8b/2cc8d6443b333dfe92b52f25f72a4f64b6e24ba9aff8873b397bf37bf498/climt-0.16.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c010013aeb3d90daf19b450b962be784", "sha256": "9733cca96dc4e858db2fd939d89a5b943dd1ab5941830bcb345af8cabb5a225f" }, "downloads": -1, "filename": "climt-0.16.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c010013aeb3d90daf19b450b962be784", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 27524835, "upload_time": "2018-10-09T10:08:17", "url": "https://files.pythonhosted.org/packages/19/84/9fbe133697f281b7d80d2b8f83294523b21fed0492da503e7ffec5847052/climt-0.16.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b2fdeb18a7de4075059173798b9fea18", "sha256": "163fb36b0b0268378a6543670fd6f93256f2d049e14d12561cdd38190b2c0db6" }, "downloads": -1, "filename": "climt-0.16.0.tar.gz", "has_sig": false, "md5_digest": "b2fdeb18a7de4075059173798b9fea18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19769506, "upload_time": "2018-10-09T10:34:39", "url": "https://files.pythonhosted.org/packages/ff/2b/050c9b5a19e50253a04e617ce4367ba2a3bef61800f94402a6ca61ae9e0c/climt-0.16.0.tar.gz" } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "73e0539c9a34d70de21b808ccde297ee", "sha256": "c6670097c8ee97e732304948896f00f0d380c1788951e9aca59fd9a238a10c45" }, "downloads": -1, "filename": "climt-0.16.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "73e0539c9a34d70de21b808ccde297ee", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24715697, "upload_time": "2019-02-21T11:52:00", "url": "https://files.pythonhosted.org/packages/6d/94/e8ffd32f8dca13706911ca2a9369baa0e17bc7dc516578b62b25747cb9a9/climt-0.16.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c161c534e9a72f4023d0f7bd40949e32", "sha256": "d60f5cc7c95168f38f4390e54ec1f7e11150ca54f132cca0b5f8c39143f7d577" }, "downloads": -1, "filename": "climt-0.16.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c161c534e9a72f4023d0f7bd40949e32", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24715869, "upload_time": "2019-02-21T11:52:06", "url": "https://files.pythonhosted.org/packages/11/1e/afb0567ba6c2399afbcb79bb1549c104ea81a9bda98c61c98b589ae5026d/climt-0.16.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4056b110a90c3860492b882077e50f2c", "sha256": "f51f64142d21551e9e18302530a58a096a68bada7f6b20183b0a1226494e86f1" }, "downloads": -1, "filename": "climt-0.16.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4056b110a90c3860492b882077e50f2c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24722039, "upload_time": "2019-02-21T11:40:10", "url": "https://files.pythonhosted.org/packages/23/37/ac4b3a6bec76ad84fb50b9b8fe33d6fc0b069e01b14e1c6f50b0303bfb09/climt-0.16.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fb03ab6c8295c20eb0cb6cae0d58553d", "sha256": "ce84298f07a7db53399776b69be1de4b544e31ec81750707bb6376dc5f83d598" }, "downloads": -1, "filename": "climt-0.16.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fb03ab6c8295c20eb0cb6cae0d58553d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24793519, "upload_time": "2019-02-21T11:42:03", "url": "https://files.pythonhosted.org/packages/71/1d/e29cf7cf1aac67256a0c655d253636a170e157e708e3e012494445a3a7a7/climt-0.16.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ef69df50830307a65e0479e944f30982", "sha256": "704b4b8c51567ee85b3963006c6524c28ab1274447afaddb8756ed5104d48dc8" }, "downloads": -1, "filename": "climt-0.16.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ef69df50830307a65e0479e944f30982", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27520146, "upload_time": "2019-02-21T10:40:42", "url": "https://files.pythonhosted.org/packages/98/77/f27deee5a4a60192b821eb1be394e4f265dce60a2033066061b07b513c84/climt-0.16.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fa1a9559737a889b19513bf9c3ba3ada", "sha256": "c9bb28e1d7828a47bad025f4cc8d7e54ed58b8adf2c2607f5798053a559a0380" }, "downloads": -1, "filename": "climt-0.16.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fa1a9559737a889b19513bf9c3ba3ada", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24776949, "upload_time": "2019-02-21T11:40:23", "url": "https://files.pythonhosted.org/packages/8e/e7/642460083f866853019450481dcd590d2160be328d83e17371577ccce271/climt-0.16.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a1ff3ef75175969f5c90cccd0c66dd90", "sha256": "2b2c32b020e41364b0f2a9b3baffc4b9c53ff5c20a0758df1a77232592041356" }, "downloads": -1, "filename": "climt-0.16.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a1ff3ef75175969f5c90cccd0c66dd90", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 27525411, "upload_time": "2019-02-21T10:51:18", "url": "https://files.pythonhosted.org/packages/cc/12/66afe5f39c3bc2b323a663f60811e64878b8dbf70b2d51217c35f7907c95/climt-0.16.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "44f8b594c93c912e4de350662a109d30", "sha256": "fa8083aaa4eef70e0b7563598cdc4af4b42c4bd38eaeb6281bf2c5d964eb4095" }, "downloads": -1, "filename": "climt-0.16.1.tar.gz", "has_sig": false, "md5_digest": "44f8b594c93c912e4de350662a109d30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20303528, "upload_time": "2019-02-21T10:40:49", "url": "https://files.pythonhosted.org/packages/6d/48/d4f16736e2a3ad0ffbe0daff3727d45557697e349646abc20b3ca53c540b/climt-0.16.1.tar.gz" } ], "0.16.2": [ { "comment_text": "", "digests": { "md5": "883377f09bed8d432aada28d84605cd1", "sha256": "eb134c0be6042403e17470ca97202ebabf40dad5794c4ffc51024b52ed02c5fd" }, "downloads": -1, "filename": "climt-0.16.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "883377f09bed8d432aada28d84605cd1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24731027, "upload_time": "2019-02-21T14:02:00", "url": "https://files.pythonhosted.org/packages/a7/4b/23c01074881f7c819e0354bbee7b6a5b9201111ef8e004cece9fb1b2a161/climt-0.16.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fbb28219ac803035da19499d354edc3b", "sha256": "0391df3988cfc78ad4a4fa7500f69e1b51f744b2ed5bd4b7394f79dc3e8d7ce5" }, "downloads": -1, "filename": "climt-0.16.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fbb28219ac803035da19499d354edc3b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24731223, "upload_time": "2019-02-21T14:02:11", "url": "https://files.pythonhosted.org/packages/04/06/e33d3745fc35727d7383c9093d5ee48f16d32c9188a15f9d5a3ed0a50bb4/climt-0.16.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1ae38e0e7fca303ecc2bc6028e1e5f4b", "sha256": "767f19ede9d6be49a0079e8bbe714abe91bfdc7b8a234e0822d1a9e9a82fe51d" }, "downloads": -1, "filename": "climt-0.16.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1ae38e0e7fca303ecc2bc6028e1e5f4b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24722036, "upload_time": "2019-02-21T13:52:43", "url": "https://files.pythonhosted.org/packages/2b/18/d98200029cae7efcf7bc167943ca40aeb928e9f39bd7292576bdfe483693/climt-0.16.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c51b57677caf97496d90a92761ddbe1e", "sha256": "b4eaa0031c20e05dfd12eb77fc73caa21669537f5df496996b99ebb64f32c31f" }, "downloads": -1, "filename": "climt-0.16.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c51b57677caf97496d90a92761ddbe1e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 23775292, "upload_time": "2019-02-21T14:12:48", "url": "https://files.pythonhosted.org/packages/12/a9/408c7a217da79e5136674b000698d5911ee7a2a7147c7fcad3b750db1e4e/climt-0.16.2-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "e6d9eda7ff0caa09272d52aef715abba", "sha256": "13c07e838fe6ebafb19bdfdeb6f2f57be529196e3c0af35074655cb1e7463cfc" }, "downloads": -1, "filename": "climt-0.16.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e6d9eda7ff0caa09272d52aef715abba", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24793583, "upload_time": "2019-02-21T13:49:48", "url": "https://files.pythonhosted.org/packages/3c/cf/0b1ba4de444600c587e76fe86a9d6c6d2b23f513f2f7b80e0884e29146f4/climt-0.16.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4a8b698a00a9bfb011915b6a561efe79", "sha256": "858b173a36a2be718a70fc41596ad47ddb49613b0519a0234b76c7d146548bad" }, "downloads": -1, "filename": "climt-0.16.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4a8b698a00a9bfb011915b6a561efe79", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27520161, "upload_time": "2019-02-21T12:56:35", "url": "https://files.pythonhosted.org/packages/8d/94/6a727c6d3de184c7978206ad34921f3f10a219464859cc0504d413756c9e/climt-0.16.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "15e6c2dc7840ebedc2397898e6a3d032", "sha256": "103c8876db4e7d5c4ca99059aaf169cae262ac81c496a7227af8fdc1aef3a171" }, "downloads": -1, "filename": "climt-0.16.2-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "15e6c2dc7840ebedc2397898e6a3d032", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 23774551, "upload_time": "2019-02-21T14:33:40", "url": "https://files.pythonhosted.org/packages/3f/ae/279b8d6f6fc56e624be488e19527e9d709f1e18322b501e705c27a6e5c5b/climt-0.16.2-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "61648491bcf1b6e73a4504c111e9cd20", "sha256": "605180dd11e4356bc7ddc6709bd772899c2e059c5935edf5400914c40fc3069f" }, "downloads": -1, "filename": "climt-0.16.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "61648491bcf1b6e73a4504c111e9cd20", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24776948, "upload_time": "2019-02-21T13:50:18", "url": "https://files.pythonhosted.org/packages/3f/b7/b9e3d5719af03f88ee93dfecd9cf36a990a0dc73a309df05da1dd36ae86c/climt-0.16.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6c03822d5cc575c8cfa37f0b16cfed59", "sha256": "380af287cd277f42133a73a8be8f33a151086f9169e83171320b83f36e9d811f" }, "downloads": -1, "filename": "climt-0.16.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6c03822d5cc575c8cfa37f0b16cfed59", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 27525426, "upload_time": "2019-02-21T13:05:40", "url": "https://files.pythonhosted.org/packages/74/71/dec1a128f922edf802672db5e52465d9c0fd3302d2858fb90a8fa1fd7a08/climt-0.16.2-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a8488422e092e5142144231b5a954763", "sha256": "191a7c7dcb1d61a73cefd6dde5d663eb774a97b8aca1292a1034e4c05e45fcac" }, "downloads": -1, "filename": "climt-0.16.2.tar.gz", "has_sig": false, "md5_digest": "a8488422e092e5142144231b5a954763", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20303537, "upload_time": "2019-02-21T12:47:50", "url": "https://files.pythonhosted.org/packages/07/63/e406052d2ae5e795174b2e003ce29ced490395adea1de69e167d0d8ce42e/climt-0.16.2.tar.gz" } ], "0.16.3": [ { "comment_text": "", "digests": { "md5": "1c6ce2c89466c7edbf4e2cdf3c2d8c0d", "sha256": "f1e8cff97c2d6c8b9377296100a9b7a10001f86e8a39ab4fd8a0a8c1678515e8" }, "downloads": -1, "filename": "climt-0.16.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1c6ce2c89466c7edbf4e2cdf3c2d8c0d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24731148, "upload_time": "2019-03-11T22:02:48", "url": "https://files.pythonhosted.org/packages/97/be/e7198efd31cf4f8e1d595efc7eee43e1aa336759436cef71c51ede8ab7f4/climt-0.16.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4e366753aa337b0d9c0e0a40d7339bc8", "sha256": "0c3c63b774690f330d272a5554284a1cd9be5a2d6f8054356e6b2d5051a1367d" }, "downloads": -1, "filename": "climt-0.16.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e366753aa337b0d9c0e0a40d7339bc8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24731361, "upload_time": "2019-03-11T22:02:52", "url": "https://files.pythonhosted.org/packages/e6/39/902eac4f852e302a733933ed2fd8241ea516cfa70cd6f47ead224b710089/climt-0.16.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1caf7b1e47c697fdf2e8a561720f2735", "sha256": "f034d434758521cd2069fdcf74de817c7ce09cfc07ed77911bd521643c85750f" }, "downloads": -1, "filename": "climt-0.16.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1caf7b1e47c697fdf2e8a561720f2735", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24734404, "upload_time": "2019-03-11T21:51:16", "url": "https://files.pythonhosted.org/packages/49/3d/689c95e35ac64e93e462dafdec1c762140f62c384cac637c25121c59cdc9/climt-0.16.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0ed134e002fbebc3e72103481c157ed4", "sha256": "5320e8f13e4e58c2363795c7f58412ae2b788be2a23ebc2e4bd792f8032b159d" }, "downloads": -1, "filename": "climt-0.16.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0ed134e002fbebc3e72103481c157ed4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 23775321, "upload_time": "2019-03-11T22:17:43", "url": "https://files.pythonhosted.org/packages/ea/5e/582a64b76203a2e136eb73cffe6d6b5be419762f78ff8c6a214a92eca2c5/climt-0.16.3-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "9f090a3684e922eeb7c6a7c5631790b8", "sha256": "4c43a6b03bce3d37af71e25222112df805f7525ed968906acd61e891e021398a" }, "downloads": -1, "filename": "climt-0.16.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9f090a3684e922eeb7c6a7c5631790b8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24780504, "upload_time": "2019-03-11T21:50:33", "url": "https://files.pythonhosted.org/packages/24/f3/56d8da253b37f85964e95f003d73d08a77411a22b80c0579dd40dc41b295/climt-0.16.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a35b665d03d6cbe772599fd5b71ed264", "sha256": "1bdee496280672cb3ff50abfbbbd992eaff5ceb8622d0dca94defc01e03f247a" }, "downloads": -1, "filename": "climt-0.16.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a35b665d03d6cbe772599fd5b71ed264", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27520212, "upload_time": "2019-03-11T21:02:48", "url": "https://files.pythonhosted.org/packages/40/83/cab43913442578af26db36591c0a4926048db94b8d8611bfa7301e089c31/climt-0.16.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6163f1199df57ce7f433fd768ad14e4b", "sha256": "690b02622683229707993f4d14dc8845abd5869a7ede47efa576d758d8a97b46" }, "downloads": -1, "filename": "climt-0.16.3-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6163f1199df57ce7f433fd768ad14e4b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 23774562, "upload_time": "2019-03-11T22:32:32", "url": "https://files.pythonhosted.org/packages/cf/f7/5f4722c36cb132efdc6eb8a0b9d03ad5fbbbf07e4555372f5fd54c8c3d90/climt-0.16.3-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "a74276bddbb1ae16ed628ebd09b0e4e0", "sha256": "71290969d70ce9c62a70e6da3eb31dfcb4654e9237de16a7b340f8d97c5593f5" }, "downloads": -1, "filename": "climt-0.16.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a74276bddbb1ae16ed628ebd09b0e4e0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24777008, "upload_time": "2019-03-11T21:50:18", "url": "https://files.pythonhosted.org/packages/6a/43/03fb352de124677f09c38b74b3ea30eccc75f23a78f1282382fd129a80ee/climt-0.16.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bc8e24d80c2611d84d6db8e78a3123d1", "sha256": "b0e4f58f0424ef6cb6e5722ac87e7558093f9f68ee7dd73ee5884e004424b254" }, "downloads": -1, "filename": "climt-0.16.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "bc8e24d80c2611d84d6db8e78a3123d1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 27525462, "upload_time": "2019-03-11T21:09:02", "url": "https://files.pythonhosted.org/packages/ba/b9/0ffc0d079ea4ca98dea75a1063657a11c471a115c5318f0080b2aed9b6f0/climt-0.16.3-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0137792495ff4e00a381920531b1daae", "sha256": "56272f524f0e9c70eb819b4fdb95465cb84f84112678c287037e162d097a2c5b" }, "downloads": -1, "filename": "climt-0.16.3.tar.gz", "has_sig": false, "md5_digest": "0137792495ff4e00a381920531b1daae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20303748, "upload_time": "2019-03-11T20:50:32", "url": "https://files.pythonhosted.org/packages/05/46/a91fe1f738a41c01382fca7a7834013b4f7bcaf996aed35eeea514842d10/climt-0.16.3.tar.gz" } ], "0.16.5": [ { "comment_text": "", "digests": { "md5": "751cf51abf5dc27d217519c4905ee756", "sha256": "777b709ce98ed133cef7b895d3e047ac31f858b31af1903fe4e9b17d26fbe501" }, "downloads": -1, "filename": "climt-0.16.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "751cf51abf5dc27d217519c4905ee756", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27524444, "upload_time": "2019-07-29T07:31:56", "url": "https://files.pythonhosted.org/packages/b7/69/57a4cae8baf2766ab41071ca0bcaafc7de5ff0c20776df06f093efe91233/climt-0.16.5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fffb50212107318cb970fc3e00438a2e", "sha256": "68a0408b02be1764d45b68a8ce1b068f8a464fab7e358e6636f09760d08e4c99" }, "downloads": -1, "filename": "climt-0.16.5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "fffb50212107318cb970fc3e00438a2e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 27529599, "upload_time": "2019-07-29T07:37:46", "url": "https://files.pythonhosted.org/packages/06/c2/56dc657b47e873ef1ea322064c74b55c7a4f75dc3468c78779973b45dfd7/climt-0.16.5-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e773aed72e00131c6cdf661f4fecb8fb", "sha256": "d96f7e835d398f58db45e7a2eb59e39ca693c78a86f3c15420ee76f8d6130809" }, "downloads": -1, "filename": "climt-0.16.5.tar.gz", "has_sig": false, "md5_digest": "e773aed72e00131c6cdf661f4fecb8fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20365678, "upload_time": "2019-07-29T07:46:52", "url": "https://files.pythonhosted.org/packages/aa/e6/793044cb62bb3a0feb1f50cc2f18b652ea949b679a5f063118f467a0d6bd/climt-0.16.5.tar.gz" } ], "0.16.9": [ { "comment_text": "", "digests": { "md5": "d0af157582f28373bfcb0bc4887b8de7", "sha256": "2712a63eea3d545aee06448efdb5a1fa9a8d654b52bd850d9644290105b27054" }, "downloads": -1, "filename": "climt-0.16.9-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d0af157582f28373bfcb0bc4887b8de7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24718631, "upload_time": "2019-07-29T22:01:34", "url": "https://files.pythonhosted.org/packages/08/1c/73e73d38f7e8a3742760f2d663043a0dc7089072a982107f103e5da9b65c/climt-0.16.9-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "42a35081135c99d8e19de0aa55d0321e", "sha256": "88b6eea9d8987e8598fa54e02b50e206783dff3427f0abee5e1aa38e22db3b28" }, "downloads": -1, "filename": "climt-0.16.9-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "42a35081135c99d8e19de0aa55d0321e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24718807, "upload_time": "2019-07-29T22:01:39", "url": "https://files.pythonhosted.org/packages/40/98/43932f58a12f1eff4eef9b3084c848ea5b6e183d31cafd16a175ae02b623/climt-0.16.9-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0da5eb6daa81881fbcea32fb574ef2ba", "sha256": "455afd3c87eccd3b670bc1ea927160408a137bb7f5d09b39ce8b2e2f71a2f8f6" }, "downloads": -1, "filename": "climt-0.16.9-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0da5eb6daa81881fbcea32fb574ef2ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24734330, "upload_time": "2019-07-29T21:48:53", "url": "https://files.pythonhosted.org/packages/9b/bb/aa09ca05c6574aedb037d3ba477fdc795f5b8dd2b2828aabcd87bce1c57f/climt-0.16.9-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fff9f0651318061d86238398b6fef1fe", "sha256": "d50f8551069c42dd6597eb9113c93182bd6664178afc2cbb15ec159f1ddf4412" }, "downloads": -1, "filename": "climt-0.16.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fff9f0651318061d86238398b6fef1fe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24784119, "upload_time": "2019-07-29T21:48:42", "url": "https://files.pythonhosted.org/packages/f0/68/6bdd83684449a6e23f43afaa0182660be5f709bc439642ed2812b2f07fc4/climt-0.16.9-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a8933e4cab0cabfa3bfbbe4e66a5e86", "sha256": "04c7d8a4bcff3a805db83a22425520a870eeaed0b284f2430c8aef0d6da4a10f" }, "downloads": -1, "filename": "climt-0.16.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9a8933e4cab0cabfa3bfbbe4e66a5e86", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27524483, "upload_time": "2019-07-29T21:21:22", "url": "https://files.pythonhosted.org/packages/38/90/1a7a43e919014017fb8739e84c07974fcc59ffef65670afcc0cbd4571f7f/climt-0.16.9-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "975ccaf8617dd50b616ee25a7373df30", "sha256": "1ecd735b07420caa03848dc201597dcc28254255b0ae94933ab28000e93e1c8e" }, "downloads": -1, "filename": "climt-0.16.9-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "975ccaf8617dd50b616ee25a7373df30", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24784097, "upload_time": "2019-07-29T21:48:35", "url": "https://files.pythonhosted.org/packages/1d/40/17b79edbd4ef0445e12888340ec9a738a88d7e334ac427738d5725f40c6b/climt-0.16.9-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6765284896a085614c7304a3be165221", "sha256": "8d965194d37c09f48a7c4fec5814349b296a6517c0d99926165f1cf2ceadb5a3" }, "downloads": -1, "filename": "climt-0.16.9-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6765284896a085614c7304a3be165221", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 27529638, "upload_time": "2019-07-29T21:28:18", "url": "https://files.pythonhosted.org/packages/ac/a8/f70fff7d88a422ba393b8c592fdf1c4e053a0da8e93e31762183a61c88b1/climt-0.16.9-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "45c142fa3bb4023705d319bb2818c5e0", "sha256": "5e117a1548e8e683ab50ad1f6421bbffd7f9b7f157d61e5310d4ea87661604c4" }, "downloads": -1, "filename": "climt-0.16.9.tar.gz", "has_sig": false, "md5_digest": "45c142fa3bb4023705d319bb2818c5e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20365739, "upload_time": "2019-07-29T21:32:18", "url": "https://files.pythonhosted.org/packages/ea/85/6941454d54b751fdf4cebb3ef4becea7bb239787ff1828fe74a44d1d4abf/climt-0.16.9.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "71ea9fa34db23085cbb6d387f2086558", "sha256": "1714bf1c38d50f93b2d6e7896e48034cd36d3686838be45655d632dccc929cb2" }, "downloads": -1, "filename": "climt-0.9.0.tar.gz", "has_sig": false, "md5_digest": "71ea9fa34db23085cbb6d387f2086558", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20050931, "upload_time": "2017-07-24T13:24:07", "url": "https://files.pythonhosted.org/packages/ea/7e/713718597f3f89f6cdc77c131c661c4d15c42ae4f08519a6be1b0de8f001/climt-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "4bb8e74370873ac154eb4c26e7cd439e", "sha256": "46892a2584211a414d23f3bf904dfa1faa10efcafe28e1e2be1d36ef6d97ae5d" }, "downloads": -1, "filename": "climt-0.9.1.tar.gz", "has_sig": false, "md5_digest": "4bb8e74370873ac154eb4c26e7cd439e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20879651, "upload_time": "2017-09-04T14:08:06", "url": "https://files.pythonhosted.org/packages/34/34/afb31faf46bb0243560c68c47069eaea2ee73537873fce448e7880cab6c2/climt-0.9.1.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "e87021fcf05bc7759767b915943f62db", "sha256": "3532d491ba25007b997a3060e6e01ed4ceb45ce51b62898e8d7a5295e5cae147" }, "downloads": -1, "filename": "climt-0.9.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e87021fcf05bc7759767b915943f62db", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10761936, "upload_time": "2018-03-27T11:47:31", "url": "https://files.pythonhosted.org/packages/ad/97/d55d0d7a32c264da73151f1498637c6a239bbf168d85da8ffe9006cc0351/climt-0.9.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a4e8ab7d740bd27dab5e8074769602d5", "sha256": "1d77f6fe3f5f8ed06ba3c2c122a7526415e30b235289950c1273381b7431acad" }, "downloads": -1, "filename": "climt-0.9.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a4e8ab7d740bd27dab5e8074769602d5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10761774, "upload_time": "2018-03-27T11:47:35", "url": "https://files.pythonhosted.org/packages/88/75/9dd4ce6c855cd875f0baf7009bc384ca8e6fc69a8b3a43aa975560ac3a8a/climt-0.9.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "36b8587696833a95f726e124c63f3163", "sha256": "2e2a2aa12ae1e51c1b9d38ddf143c5813398e515a0ab497e95b8ab95561dab9a" }, "downloads": -1, "filename": "climt-0.9.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "36b8587696833a95f726e124c63f3163", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10772490, "upload_time": "2018-03-27T11:26:29", "url": "https://files.pythonhosted.org/packages/8c/38/299063268b37eba1edc8c3180be14c24eda6725929e5ef974cedca4d2822/climt-0.9.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b57b7cd5923783acfb1c024f39201293", "sha256": "34f7b8320b66bc8458665a53dda3a949a4cdbecbbdb6fc0e365fab3645cfb2cc" }, "downloads": -1, "filename": "climt-0.9.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b57b7cd5923783acfb1c024f39201293", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12428239, "upload_time": "2018-03-27T11:10:32", "url": "https://files.pythonhosted.org/packages/8b/17/1f266a6278e7d2ece4b2743ca1d83f5f2eae8ce4aaeb87eeaa54fcc5f0ce/climt-0.9.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "abd32eec196334b38c5b9b4eae06927a", "sha256": "0435c35bc44a8578a3aa0b256cf68916a4e55cf7b73424c5b93e8e59a4428ee7" }, "downloads": -1, "filename": "climt-0.9.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "abd32eec196334b38c5b9b4eae06927a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10130551, "upload_time": "2018-03-27T15:39:24", "url": "https://files.pythonhosted.org/packages/51/8d/b195839ae6cd74dbdbbfe0f9ee607af218ef31ca3299230253d85a1e433d/climt-0.9.3-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "adc3285b7b820d35d633da3075cff2bf", "sha256": "9b5bce61d2f606b32a40118050238c0ba59bf57ce622a25eab120dc870b6281e" }, "downloads": -1, "filename": "climt-0.9.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "adc3285b7b820d35d633da3075cff2bf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10807673, "upload_time": "2018-03-27T11:26:43", "url": "https://files.pythonhosted.org/packages/84/47/2981d6b293f7af10a93aa35f3ac81363bcf202ae854fbc7960989e219060/climt-0.9.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4a65cd2a50595ec8f9738cf000ea4032", "sha256": "1da9ced61b5086155dbe5c91fb104e639c820f0ab862880044745969badb8f46" }, "downloads": -1, "filename": "climt-0.9.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4a65cd2a50595ec8f9738cf000ea4032", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12435648, "upload_time": "2018-03-27T10:56:48", "url": "https://files.pythonhosted.org/packages/eb/4e/f7c1fbddc3bab136c0a807c579386bf22b75e052cb0cb631fdbd099cde32/climt-0.9.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5eadc7a5d70b9b965a92abcea598d255", "sha256": "2552f02e639810408ba8a74cab3bd04ad85522c85879b9bd8b8a6eb9f8fb7ce0" }, "downloads": -1, "filename": "climt-0.9.3.tar.gz", "has_sig": false, "md5_digest": "5eadc7a5d70b9b965a92abcea598d255", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9668313, "upload_time": "2018-03-27T11:11:03", "url": "https://files.pythonhosted.org/packages/f6/77/f3a338b6da42f91497d6eeb939d02c43146971b61d2c26a94d0ff3778a08/climt-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "52c0486d4cdc59ca079bcb998c2a0b97", "sha256": "963fe6b135813a549217be77d1ccb5f392df8408d4f019e3fe3534072da7338c" }, "downloads": -1, "filename": "climt-0.9.4-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "52c0486d4cdc59ca079bcb998c2a0b97", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10776237, "upload_time": "2018-03-29T11:43:09", "url": "https://files.pythonhosted.org/packages/52/ba/31ae3945621560d2091cf572582fd0c32edf09b32ac2296a607e729bcdeb/climt-0.9.4-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a4a923058fb39376e9ec2085e021cd61", "sha256": "b6a7057c0ba8386b1934f18151738797b65e4338586da8f550671dbd88d3726f" }, "downloads": -1, "filename": "climt-0.9.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a4a923058fb39376e9ec2085e021cd61", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10776036, "upload_time": "2018-03-29T11:43:13", "url": "https://files.pythonhosted.org/packages/d8/6c/9035d502ff298883199c8d7523bf0d6497783d8ec0ff108ab369359d278a/climt-0.9.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a433675a9ba5bc038b8ec18bc58bcc73", "sha256": "d2c0d353386ac20db6b9f1435a088a39c0db4d8dc67995fb94d330c933b37946" }, "downloads": -1, "filename": "climt-0.9.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a433675a9ba5bc038b8ec18bc58bcc73", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10772847, "upload_time": "2018-03-29T11:26:23", "url": "https://files.pythonhosted.org/packages/dd/74/7ca9e09728b9309fd4987a4129988cd11877f22ba7739838b41868d67a36/climt-0.9.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f91e76279c1fde5e1fcb933b12fda106", "sha256": "546453bb03177778138316a46146f5e43314b2990ef51627062e4e16cc2adeb6" }, "downloads": -1, "filename": "climt-0.9.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f91e76279c1fde5e1fcb933b12fda106", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12428555, "upload_time": "2018-03-29T11:28:42", "url": "https://files.pythonhosted.org/packages/da/17/0ff66c0eb64dfe1e421d27aa3497d7c9f0658d4a19ccd38da2e88a88ff10/climt-0.9.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d072d9eaad5a3e45435ada15c393a4de", "sha256": "8346a0042027f74e7d46f8038fcb0b8dcbda0d44d1402318e8f932cea4f2d24d" }, "downloads": -1, "filename": "climt-0.9.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d072d9eaad5a3e45435ada15c393a4de", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10807980, "upload_time": "2018-03-29T11:26:22", "url": "https://files.pythonhosted.org/packages/40/1f/570f48ea6c3ff21b82a69bb5771a23427128fdb4737cc78fcf4b70d9d719/climt-0.9.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1b0c14cd4646a4d7bbfc7f814e62a53c", "sha256": "9322f9d590c4037f1e7480a78210b188101dfed6052052af548960a1c8637a23" }, "downloads": -1, "filename": "climt-0.9.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1b0c14cd4646a4d7bbfc7f814e62a53c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12435965, "upload_time": "2018-03-29T11:15:36", "url": "https://files.pythonhosted.org/packages/64/f3/4d0c9ed0d93d88ad46dc9a8cc2ae6434b894f64778f46cc9e68866d6e60e/climt-0.9.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "750eef70c0f377e2aa6eb831cbce8136", "sha256": "9ad3e6a643d9402563ae87691338cafaaa8b6cbbeca64e82debae003648cdb00" }, "downloads": -1, "filename": "climt-0.9.4.tar.gz", "has_sig": false, "md5_digest": "750eef70c0f377e2aa6eb831cbce8136", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9669194, "upload_time": "2018-03-29T11:11:42", "url": "https://files.pythonhosted.org/packages/9b/35/c00695ff78186b8bf44d7dddfe37cf0d699cd27b81b2dd5db2c69753540f/climt-0.9.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d0af157582f28373bfcb0bc4887b8de7", "sha256": "2712a63eea3d545aee06448efdb5a1fa9a8d654b52bd850d9644290105b27054" }, "downloads": -1, "filename": "climt-0.16.9-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d0af157582f28373bfcb0bc4887b8de7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24718631, "upload_time": "2019-07-29T22:01:34", "url": "https://files.pythonhosted.org/packages/08/1c/73e73d38f7e8a3742760f2d663043a0dc7089072a982107f103e5da9b65c/climt-0.16.9-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "42a35081135c99d8e19de0aa55d0321e", "sha256": "88b6eea9d8987e8598fa54e02b50e206783dff3427f0abee5e1aa38e22db3b28" }, "downloads": -1, "filename": "climt-0.16.9-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "42a35081135c99d8e19de0aa55d0321e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24718807, "upload_time": "2019-07-29T22:01:39", "url": "https://files.pythonhosted.org/packages/40/98/43932f58a12f1eff4eef9b3084c848ea5b6e183d31cafd16a175ae02b623/climt-0.16.9-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0da5eb6daa81881fbcea32fb574ef2ba", "sha256": "455afd3c87eccd3b670bc1ea927160408a137bb7f5d09b39ce8b2e2f71a2f8f6" }, "downloads": -1, "filename": "climt-0.16.9-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0da5eb6daa81881fbcea32fb574ef2ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24734330, "upload_time": "2019-07-29T21:48:53", "url": "https://files.pythonhosted.org/packages/9b/bb/aa09ca05c6574aedb037d3ba477fdc795f5b8dd2b2828aabcd87bce1c57f/climt-0.16.9-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fff9f0651318061d86238398b6fef1fe", "sha256": "d50f8551069c42dd6597eb9113c93182bd6664178afc2cbb15ec159f1ddf4412" }, "downloads": -1, "filename": "climt-0.16.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fff9f0651318061d86238398b6fef1fe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24784119, "upload_time": "2019-07-29T21:48:42", "url": "https://files.pythonhosted.org/packages/f0/68/6bdd83684449a6e23f43afaa0182660be5f709bc439642ed2812b2f07fc4/climt-0.16.9-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a8933e4cab0cabfa3bfbbe4e66a5e86", "sha256": "04c7d8a4bcff3a805db83a22425520a870eeaed0b284f2430c8aef0d6da4a10f" }, "downloads": -1, "filename": "climt-0.16.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9a8933e4cab0cabfa3bfbbe4e66a5e86", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27524483, "upload_time": "2019-07-29T21:21:22", "url": "https://files.pythonhosted.org/packages/38/90/1a7a43e919014017fb8739e84c07974fcc59ffef65670afcc0cbd4571f7f/climt-0.16.9-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "975ccaf8617dd50b616ee25a7373df30", "sha256": "1ecd735b07420caa03848dc201597dcc28254255b0ae94933ab28000e93e1c8e" }, "downloads": -1, "filename": "climt-0.16.9-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "975ccaf8617dd50b616ee25a7373df30", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24784097, "upload_time": "2019-07-29T21:48:35", "url": "https://files.pythonhosted.org/packages/1d/40/17b79edbd4ef0445e12888340ec9a738a88d7e334ac427738d5725f40c6b/climt-0.16.9-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6765284896a085614c7304a3be165221", "sha256": "8d965194d37c09f48a7c4fec5814349b296a6517c0d99926165f1cf2ceadb5a3" }, "downloads": -1, "filename": "climt-0.16.9-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6765284896a085614c7304a3be165221", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 27529638, "upload_time": "2019-07-29T21:28:18", "url": "https://files.pythonhosted.org/packages/ac/a8/f70fff7d88a422ba393b8c592fdf1c4e053a0da8e93e31762183a61c88b1/climt-0.16.9-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "45c142fa3bb4023705d319bb2818c5e0", "sha256": "5e117a1548e8e683ab50ad1f6421bbffd7f9b7f157d61e5310d4ea87661604c4" }, "downloads": -1, "filename": "climt-0.16.9.tar.gz", "has_sig": false, "md5_digest": "45c142fa3bb4023705d319bb2818c5e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20365739, "upload_time": "2019-07-29T21:32:18", "url": "https://files.pythonhosted.org/packages/ea/85/6941454d54b751fdf4cebb3ef4becea7bb239787ff1828fe74a44d1d4abf/climt-0.16.9.tar.gz" } ] }