{ "info": { "author": "Deborah Khider", "author_email": "khider@usc.edu", "bugtrack_url": null, "classifiers": [], "description": "\n[![PyPI](https://img.shields.io/pypi/v/pyleoclim.svg)]()\n[![PyPI](https://img.shields.io/badge/python-3.6-yellow.svg)]()\n[![license](https://img.shields.io/github/license/linkedearth/Pyleoclim_util.svg)]()\n[![DOI](https://zenodo.org/badge/59611213.svg)](https://zenodo.org/badge/latestdoi/59611213)\n[![NSF-1541029](https://img.shields.io/badge/NSF-1541029-blue.svg)](https://nsf.gov/awardsearch/showAward?AWD_ID=1541029)\n\n# Pyleoclim\n\n**Python Package for the Analysis of Paleoclimate Data**\n\n**Table of contents**\n\n* [What is it?](#what)\n* [Installation](#install)\n* [Version Information](#version)\n* [Quickstart Guide](#quickstart)\n* [Requirements](#req)\n* [Known Issues](#issues)\n* [Further information](#further_info)\n* [Contact](#contact)\n* [License](#license)\n* [Disclaimer](#disclaimer)\n\n### What is it?\n\nPyleoclim is a Python package primarily geared towards the analysis and visualization of paleoclimate data. Such data often come in the form of timeseries with missing values and age uncertainties, so the package includes several low-level methods to deal with these issues, as well as high-level methods that re-use those within scientific workflows.\n\nHigh-level modules assume that data are stored in the Linked Paleo Data ([LiPD](http://www.clim-past.net/12/1093/2016/)) format and makes extensive use of the [LiPD utilities](http://nickmckay.github.io/LiPD-utilities/). Low-level modules are primarily based on [NumPy](http://www.numpy.org) arrays or [Pandas](https://pandas.pydata.org) dataframes, so Pyleoclim contains a lot of timeseries analysis code (e.g. spectral analysis, singular spectrum analysis, wavelet analysis, correlation analysis) that can apply to these more common types as well. See the example folder for details.\n\nThe package is aware of age ensembles stored via LiPD and uses them for time-uncertain analyses very much like [GeoChronR](http://nickmckay.github.io/GeoChronR/).\n\n**Current capabilities**:\n - binning\n - interpolation\n - standardization\n - plotting maps, timeseries, and basic age model information\n - paleo-aware correlation analysis (isopersistent, isospectral and classical t-test)\n - weighted wavelet Z transform (WWZ)\n - age modeling through Bchron\n\n**Future capabilities**:\n - paleo-aware singular spectrum analysis (AR(1) null eigenvalue identification, missing data)\n - spectral analysis (Multi-Taper Method, Lomb-Scargle)\n - cross-wavelet analysis\n - index reconstruction\n - climate reconstruction\n - causality\n - ensemble methods for most of the above\n\nIf you have specific requests, please contact linkedearth@gmail.com\n\n### Installation \n\nPython v3.6+ is **required**.\n\nWe recommend using [Anaconda](https://www.anaconda.com/distribution/), with an environment dedicated to Pyleoclim. See the [documentation](http://linkedearth.github.io/Pyleoclim_util/Introduction.html#installation) for details.\n\nTo install Pyleoclim, **first** install numpy and Cartopy through Anaconda (`conda`)\n```\nconda install numpy\n```\n\n```\nconda install -c conda-forge cartopy\n```\nThen install pyleoclim via `pip`\n```\npip install pyleoclim\n```\n\nNote that the `pip` command line above will trigger the installation of (most of) the dependencies,\nas well as the local compilation of the Fortran code for WWZ with the GNU Fortran compiler `gfortran`.\nIf you have the Intel's Fortran compiler `ifort` installed, then further accerlation for WWZ could be\nachieved by compiling the Fortran code with `ifort`, and below are the steps:\n+ download the source code, either via `git clone` or just download the .zip file\n+ modify `setup.py` by commenting out the line of `extra_f90_compile_args` for `gfortran`, and use the line below for `ifort`\n+ run `python setup.py build_ext --fcompiler=intelem && python setup.py install`\n\n\nSome functionalities require [R](https://www.r-project.org/about.html).\n\n### Version Information\n\n#### Current Version\n0.4.10: Support local compilation of the Fortran code for WWZ; precompiled .so files have been removed. \n\n#### Past Versions\n0.4.9: Major bug fixes; mapping module based on cartopy; compatibility with latest numpy package \n0.4.8: Add support of f2py WWZ for Linux \n0.4.7: Update to coherence function \n0.4.6: Fix an issue when copying the .so files \n0.4.5: Update to setup.py to include proper .so file according to version \n0.4.4: New fix for .so issue \n0.4.3: New fix for .so issue \n0.4.2: Fix issue concerning download of .so files \n0.4.1: Fix issues with tarball \n0.4.0: New functionalities: map nearest records by archive type, plot ensemble time series, age modelling through Bchron \n0.3.1: New functionalities: segment a timeseries using a gap detection criteria, update to summary plot to perform spectral analysis \n0.3.0: Compatibility with LiPD 1.3 and Spectral module added\n0.2.5: Fix error on loading (Looking for Spectral Module) \n0.2.4: Fix load error from init \n0.2.3: Freeze LiPD version to 1.2 to avoid conflicts with 1.3 \n0.2.2: Change progressbar to tqdm and add standardization function \n0.2.1: Update package requirements \n0.2.0: Restructure the package so that the main functions can be called without the use of a LiPD files and associated timeseries objects. \n0.1.4: Rename function using camel case and consistency with LiPD utilities version 0.1.8.5 \n0.1.3: Compatible with LiPD utilities version 0.1.8.5.\nFunction openLiPD() renamed openLiPDs() \n0.1.2: Compatible with LiPD utilities version 0.1.8.3. Uses basemap instead of cartopy \n0.1.1: Freezes the package prior to version 0.1.8.2 of LiPD utilities\n\n### Quickstart guide \n\n1. [Install](#install) Pyleoclim.\n\n3. Wait for installation to complete, then:\n\n 3a. Import the package into your favorite Python environment (we recommend the use of Spyder, which comes standard with the Anaconda package)\n\n 3b. Use Jupyter Notebook to go through the tutorial contained in the `PyleoclimQuickstart.ipynb` Notebook, which can be downloaded [here](https://github.com/LinkedEarth/Pyleoclim_util/tree/master/Example). The folder also contains a collection of LiPD files. More LiPD files available [here](http://wiki.linked.earth).\n\n4. Help with functionalities can be found in the [Documentation](http://linkedearth.github.io/Pyleoclim_util/).\n\n### Requirements\nTested with:\n\n- LiPD 0.2.7\n- pandas v0.25.0\n- numpy v1.16.4\n- matplotlib v3.1.0\n- Cartopy v1.17.0\n- scipy v1.3.1\n- statsmodel v0.8.0\n- seaborn 0.9.0\n- scikit-learn 0.21.3\n- tqdm 4.33.0\n- pathos 0.2.4\n- rpy2 3.0.5\n\nThe installer will automatically check for the needed updates.\n\n### Known Issues\n\n* Some of the packages supporting Pyleoclim do not have a build for Windows\n* Known issues with proj4 v5.0-5.1, make sure your environment is set up with v5.2\n\n### Further information\n\nGitHub: https://github.com/LinkedEarth/Pyleoclim_util \nLinkedEarth: http://linked.earth \nPython and Anaconda: http://conda.pydata.org/docs/test-drive.html \nJupyter Notebook: http://jupyter.org \n\n### Contact \n\nPlease report issues to \n\n### License \n\nThe project is licensed under the GNU Public License. Please refer to the file call license.\nIf you use the code in publications, please credit the work using [this citation](https://zenodo.org/record/1212692#.WsaZ7maZNE4).\n\n\n### Disclaimer \n\nThis material is based upon work supported by the National Science Foundation under Grant Number ICER-1541029. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the investigators and do not necessarily reflect the views of the National Science Foundation.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/LinkedEarth/Pyleoclim_util/tarball/0.4.10", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/LinkedEarth/Pyleoclim_util/pyleoclim", "keywords": "Paleoclimate, Data Analysis", "license": "GNU Public", "maintainer": "", "maintainer_email": "", "name": "pyleoclim", "package_url": "https://pypi.org/project/pyleoclim/", "platform": "", "project_url": "https://pypi.org/project/pyleoclim/", "project_urls": { "Download": "https://github.com/LinkedEarth/Pyleoclim_util/tarball/0.4.10", "Homepage": "https://github.com/LinkedEarth/Pyleoclim_util/pyleoclim" }, "release_url": "https://pypi.org/project/pyleoclim/0.4.10/", "requires_dist": null, "requires_python": ">=3.6.0", "summary": "A Python package for paleoclimate data analysis", "version": "0.4.10" }, "last_serial": 5789086, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "a7269943983359471e2a781428ac7d07", "sha256": "13facc0a2ef4055805019007e01985e4af53f0f45a59cbdb4e23e1723a2dd810" }, "downloads": -1, "filename": "pyleoclim-0.1.0.tar.gz", "has_sig": false, "md5_digest": "a7269943983359471e2a781428ac7d07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13305, "upload_time": "2017-01-20T19:32:41", "url": "https://files.pythonhosted.org/packages/e0/d9/f0925f56f5d6ccc7e656551b128322b679be0bf5efa217cdae719a7684a1/pyleoclim-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "f1428ee24cc0d3b0b729b6439a44e8dd", "sha256": "58d75bc010bb42b5d1999e641fea72159883937b05d0e2512fdff1a8b13ac1c4" }, "downloads": -1, "filename": "pyleoclim-0.1.1.tar.gz", "has_sig": false, "md5_digest": "f1428ee24cc0d3b0b729b6439a44e8dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16113, "upload_time": "2017-02-02T20:16:39", "url": "https://files.pythonhosted.org/packages/a2/df/5d6573d44b6401f373e1c4a8eb7cb0101fbca5490ccde17c6a67325e189a/pyleoclim-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "15a94b495939c00b72618ca2f7c441dd", "sha256": "2847e870310c6f2023ed766da4f121b041651f95ae553c222e1b14379a5e4447" }, "downloads": -1, "filename": "pyleoclim-0.1.2.tar.gz", "has_sig": false, "md5_digest": "15a94b495939c00b72618ca2f7c441dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16077, "upload_time": "2017-02-03T05:12:03", "url": "https://files.pythonhosted.org/packages/c3/ab/6923ebfc31d8c6264a44c1b3a99d2433fa935edde030bc3b35c2929ad66d/pyleoclim-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "ece3c3e6c44d162433185eaa3d5c975b", "sha256": "bf4e9ea11329c2901efdf8922a703dcccb3194b8c0713865b7ff78f4e4c7f070" }, "downloads": -1, "filename": "pyleoclim-0.1.3.tar.gz", "has_sig": false, "md5_digest": "ece3c3e6c44d162433185eaa3d5c975b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16120, "upload_time": "2017-02-10T19:58:47", "url": "https://files.pythonhosted.org/packages/79/3e/ce781e9ec5753a6dc6baad0793254618117b55fd642edb1a3f172420b608/pyleoclim-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "3bc074ee3a7136c2e76f31afd6d7f1dd", "sha256": "d9c2035d215ff728e0e4062b70d858104e819d20e81dc11b300178f53f8ba6d2" }, "downloads": -1, "filename": "pyleoclim-0.1.4.tar.gz", "has_sig": false, "md5_digest": "3bc074ee3a7136c2e76f31afd6d7f1dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18730, "upload_time": "2017-02-14T23:28:25", "url": "https://files.pythonhosted.org/packages/3c/91/7e01eb4e7f9f522c744d673942a4edddbc2b2ebc4520489e13e3c5e4d320/pyleoclim-0.1.4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "741dc3883388e07c464ffac3c6385fdc", "sha256": "4c5d7fa55d1f149638f64316ead8e2d65263acf64a4ac48d5c8080651fc8fb26" }, "downloads": -1, "filename": "pyleoclim-0.2.0.tar.gz", "has_sig": false, "md5_digest": "741dc3883388e07c464ffac3c6385fdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25143, "upload_time": "2017-04-28T04:02:16", "url": "https://files.pythonhosted.org/packages/a1/60/658464765e4556c5c138c97a507d1abda47023a68fcff77bc36b444732a0/pyleoclim-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "d88205d3bc5146f011fde3efe50f5e06", "sha256": "bf35ef4ea49f106f6b5d63b258e2ad7b4f0f5ad5bf9a19469e2335fe31516efa" }, "downloads": -1, "filename": "pyleoclim-0.2.1.tar.gz", "has_sig": false, "md5_digest": "d88205d3bc5146f011fde3efe50f5e06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25208, "upload_time": "2017-05-01T18:19:07", "url": "https://files.pythonhosted.org/packages/07/db/e90efe9598145189c85caa9dfbb2a57b2809168ce45986455e4a2a0bbd74/pyleoclim-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "1bbdd6b8e29f603af4f6f8a88a1cd995", "sha256": "7bded386e4ab16cff5f77342a13cc62cda2123b1fbdaf378faa70d976d5cd29e" }, "downloads": -1, "filename": "pyleoclim-0.2.2.tar.gz", "has_sig": false, "md5_digest": "1bbdd6b8e29f603af4f6f8a88a1cd995", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26222, "upload_time": "2017-06-23T21:21:46", "url": "https://files.pythonhosted.org/packages/88/0d/d645f2e9ed5a8e6a07ea04fac3a7430d749e7d606d9e54434d64c29d1a5d/pyleoclim-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "5acdbd3f812d276298316e88808a7bad", "sha256": "1fabc0033366bed5b0b743cb7dfa93c5e1e9e0f117ad62a9434cbabda9c36374" }, "downloads": -1, "filename": "pyleoclim-0.2.3.tar.gz", "has_sig": false, "md5_digest": "5acdbd3f812d276298316e88808a7bad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26360, "upload_time": "2017-06-26T22:40:13", "url": "https://files.pythonhosted.org/packages/6a/e8/7acecf8c78e5696e50ee95507ab14b0bb1ea92f95cc83dfa6d9aa4396a3f/pyleoclim-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "ee417ccdd414a709d13e79b4ad1c833e", "sha256": "f3d7cc21675d9f151691663008650b4ee45df2aeffed6d13cea5824407854293" }, "downloads": -1, "filename": "pyleoclim-0.2.4.tar.gz", "has_sig": false, "md5_digest": "ee417ccdd414a709d13e79b4ad1c833e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26411, "upload_time": "2017-06-28T17:36:42", "url": "https://files.pythonhosted.org/packages/74/14/05b744283d790f9f40a3dabb50ba58ad9fe6b1e6cb26ad630d370c30cf3f/pyleoclim-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "34ed120585212cb0b9f7d89788a45118", "sha256": "2df46c9ce016aadf70217bd12ffa88061ec1d61a83e96fb5897e211bb838c8d7" }, "downloads": -1, "filename": "pyleoclim-0.2.5.tar.gz", "has_sig": false, "md5_digest": "34ed120585212cb0b9f7d89788a45118", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26461, "upload_time": "2017-06-29T05:51:22", "url": "https://files.pythonhosted.org/packages/49/6f/b62f9c139f7c16f6d3f9c18ff45d525e091df3efe4d88bcad047a3222750/pyleoclim-0.2.5.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "2c923d87aa858f318c2085219642bd44", "sha256": "47a8c81513fd7a3054f4c9c08844d801f8406d8b342ddbb9d0adc144edf62a16" }, "downloads": -1, "filename": "pyleoclim-0.3.0.tar.gz", "has_sig": false, "md5_digest": "2c923d87aa858f318c2085219642bd44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 130930, "upload_time": "2017-07-12T18:05:11", "url": "https://files.pythonhosted.org/packages/ca/f4/9b44a31867d7568aff7a100fa862b7b5d9fa5b8ef07b505fb18c414bfea0/pyleoclim-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "5516229b521f6fe175e020c47da70b4d", "sha256": "cd58164610e941151c9418f76f2c9eb3957290d968268e445facbc32755344ee" }, "downloads": -1, "filename": "pyleoclim-0.3.1.tar.gz", "has_sig": false, "md5_digest": "5516229b521f6fe175e020c47da70b4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133681, "upload_time": "2017-07-20T19:09:12", "url": "https://files.pythonhosted.org/packages/88/56/491404e02f24fc1b5f1c06688fd41bfc2d0ef04bb3334348c01ef70434bc/pyleoclim-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "10640fddc1a779732deeeb3def05a59b", "sha256": "8b97b8420d590fb2f4da15389641fe6d062714a49f91b976e20c04b231a58129" }, "downloads": -1, "filename": "pyleoclim-0.4.0.tar.gz", "has_sig": false, "md5_digest": "10640fddc1a779732deeeb3def05a59b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163178, "upload_time": "2018-03-08T23:40:29", "url": "https://files.pythonhosted.org/packages/14/68/f8bfe1b3d567365bf78074a93fb4c4be57bf059b247e5aee7c55dc9d748b/pyleoclim-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "337478cb22c4c8c513221aff3dde44ad", "sha256": "ce5aaecbb618f086b448f9fae8e725251c0e153dfb7c4725b2b99f2e2499c0ab" }, "downloads": -1, "filename": "pyleoclim-0.4.1.tar.gz", "has_sig": false, "md5_digest": "337478cb22c4c8c513221aff3dde44ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163364, "upload_time": "2018-03-23T21:02:26", "url": "https://files.pythonhosted.org/packages/4a/35/ece017a367a5d561f117cfd1470635fdca1c8259e52c2db5d7b2abdef54e/pyleoclim-0.4.1.tar.gz" } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "4012c2392ab442f7729a04d03d3ac5d4", "sha256": "33ad5c899dc0f832b04ba149998bba0ac572f5be3cfd74d5a1483e9200e8ca0f" }, "downloads": -1, "filename": "pyleoclim-0.4.10.tar.gz", "has_sig": false, "md5_digest": "4012c2392ab442f7729a04d03d3ac5d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 81369, "upload_time": "2019-09-06T00:44:11", "url": "https://files.pythonhosted.org/packages/ac/04/ae727edec5e6b9905c0ff3eb6670a85984e130f0016835a45be9d3737384/pyleoclim-0.4.10.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "6bcef62dae41ab090c3f82940dd0caca", "sha256": "776ab5c2814adf9f8343aa0841d58b1aaae43ae788acc8f7668e10706e750950" }, "downloads": -1, "filename": "pyleoclim-0.4.2.tar.gz", "has_sig": false, "md5_digest": "6bcef62dae41ab090c3f82940dd0caca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163404, "upload_time": "2018-03-23T21:17:08", "url": "https://files.pythonhosted.org/packages/46/1b/1f22b875d29bb88d89d0f512d07a2fb91dca4129ee6a3a8ec209c2f0f28a/pyleoclim-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "8f3a5e3c0e44cc580b322258c8a0e5c3", "sha256": "22e1fad76ef999f6663ddacf90ff7a602c44aa2ec9b26716cacec67415ab113d" }, "downloads": -1, "filename": "pyleoclim-0.4.3.tar.gz", "has_sig": false, "md5_digest": "8f3a5e3c0e44cc580b322258c8a0e5c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163336, "upload_time": "2018-03-23T21:33:11", "url": "https://files.pythonhosted.org/packages/f3/81/0b98ae31954e71b840dc0135b6873c95859e03f436598f953d3ed50f74ac/pyleoclim-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "db4ae15ebe87cb423b8937c48fd1ac77", "sha256": "f00f7a49ba17e4c7d509e0bacfffe7865d0fcc0f9778b177eb4e426f0dc18a69" }, "downloads": -1, "filename": "pyleoclim-0.4.4.tar.gz", "has_sig": false, "md5_digest": "db4ae15ebe87cb423b8937c48fd1ac77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163550, "upload_time": "2018-03-23T21:55:05", "url": "https://files.pythonhosted.org/packages/1b/79/db071f5bb3ab78657669ae553a46bae3135f614441b811d52801e16050b2/pyleoclim-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "155894ebf71d9eeee78e7903c1f00a9b", "sha256": "361c75e0ef33ff57848bc8747aa103e5f0777ae2f99657842337a551abcd5e46" }, "downloads": -1, "filename": "pyleoclim-0.4.5.tar.gz", "has_sig": false, "md5_digest": "155894ebf71d9eeee78e7903c1f00a9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163600, "upload_time": "2018-03-27T18:32:18", "url": "https://files.pythonhosted.org/packages/74/f7/0df4b455d2a1eece8dd6f0a1da66308b6ce6a07af4074e92e89ef4b4f9ca/pyleoclim-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "79bbb9755e975e4f32d8b43b91f2e865", "sha256": "a132ed4cc058d3e1be2f405e96b3a3ad299161b5651362897ee2bd5e20b80e2b" }, "downloads": -1, "filename": "pyleoclim-0.4.6.tar.gz", "has_sig": false, "md5_digest": "79bbb9755e975e4f32d8b43b91f2e865", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163519, "upload_time": "2018-03-27T18:45:34", "url": "https://files.pythonhosted.org/packages/f1/76/8c9cc4916975ccc24be12f5e617e3be9cc1b4152fdeada3454efa4c948ca/pyleoclim-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "6d5c01fea5b47e6d3c5f802862f51d2f", "sha256": "f9cb1681203ffaa99caf09010d68df593419af96732961df3616925055d6ccab" }, "downloads": -1, "filename": "pyleoclim-0.4.7.tar.gz", "has_sig": false, "md5_digest": "6d5c01fea5b47e6d3c5f802862f51d2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 343445, "upload_time": "2018-03-27T23:52:40", "url": "https://files.pythonhosted.org/packages/cb/90/6a4c2f121d018d07d5030cabe4d65211c46fe4caad21ca29d84784852dcb/pyleoclim-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "a6e6b1d2c6bfd10fee450982262d6fc8", "sha256": "1d95ed73435e45fd601853a17550cd5f827e2e1f71ccaa7969e6ec78c05d8771" }, "downloads": -1, "filename": "pyleoclim-0.4.8.tar.gz", "has_sig": false, "md5_digest": "a6e6b1d2c6bfd10fee450982262d6fc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 535057, "upload_time": "2018-08-06T23:54:56", "url": "https://files.pythonhosted.org/packages/bc/43/5b34a5d39da12c466cd8ac64d0da8e68dee98b8526bc2fe622c2da0e0277/pyleoclim-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "a3a3720ea7dbf4e917c95a5218a20c87", "sha256": "1bead5c6dc25879ddad69c52dcfdcddfe7cb38044e897b8fbcbb66accbf574ef" }, "downloads": -1, "filename": "pyleoclim-0.4.9.tar.gz", "has_sig": false, "md5_digest": "a3a3720ea7dbf4e917c95a5218a20c87", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 546556, "upload_time": "2019-09-04T21:28:46", "url": "https://files.pythonhosted.org/packages/e7/5c/f4bd7152d8d1216187bae2319c67e8025274476a0455e7ff7a891fdffe07/pyleoclim-0.4.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4012c2392ab442f7729a04d03d3ac5d4", "sha256": "33ad5c899dc0f832b04ba149998bba0ac572f5be3cfd74d5a1483e9200e8ca0f" }, "downloads": -1, "filename": "pyleoclim-0.4.10.tar.gz", "has_sig": false, "md5_digest": "4012c2392ab442f7729a04d03d3ac5d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 81369, "upload_time": "2019-09-06T00:44:11", "url": "https://files.pythonhosted.org/packages/ac/04/ae727edec5e6b9905c0ff3eb6670a85984e130f0016835a45be9d3737384/pyleoclim-0.4.10.tar.gz" } ] }