{ "info": { "author": "Mike Kittridge", "author_email": "mullenkamp1@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "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", "Topic :: Software Development :: Build Tools" ], "description": "nasadap - A Python package for downloading NASA data using DAP\r\n=======================================================================\r\n\r\nThe nasadap package contains a class and associated methods/functions to download NASA satellite data products and convert them to `xarray `_ datasets. It uses the python package `pydap `_ to access the NASA `Hyrax `_ OPeNDAP servers.\r\n\r\nAt the moment, nasadap can only download the satellite precipitation data from the GPM mission.\r\n\r\nThe official list of precipitation products can be found `here `_.\r\nThe products available via nasadap are described below.\r\n\r\nNew users must register an account with `Earthdata `_ to get a username and password to access any NASA data. Then `register `_ \"apps\" once logged in. These \"apps\" are: NASA GESDISC DATA ARCHIVE, GES DISC, and Pydap. More details on general data access can be found on the `Eathdata wiki `_.\r\n\r\nInstallation\r\n------------\r\nnasadap can be installed via pip or conda::\r\n\r\n pip install nasadap\r\n\r\nor::\r\n\r\n conda install -c mullenkamp nasadap\r\n\r\nThe core dependencies are `xarray `_, `pydap `_, and `requests `_.\r\n\r\nMission and product descriptions\r\n--------------------------------\r\nTropical Rainfall Measuring Mission (TRMM)\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\nA full description and documentation of the TRMM can be found on the `NASA TRMM site `_ [1].\r\n\"This dataset is the output from the TMPA (TRMM Multi-satellite Precipitation) Algorithm, and provides precipitation estimates in the TRMM regions that have the (nearly-zero) bias of the \u201dTRMM Combined Instrument\u201d precipitation estimate and the dense sampling of high-quality microwave data with fill-in using microwave-calibrated infrared estimates. The granule size is 3 hours.\"\r\n\r\n**Update** This dataset has been deprecated since NASA has processed the TRMM data using the GPM algorithm, which means GPM data is available back to 2000.\r\n\r\n.. [1] Tropical Rainfall Measuring Mission (TRMM) (2011), TRMM (TMPA) Rainfall Estimate L3 3 hour 0.25 degree x 0.25 degree V7, Greenbelt, MD, Goddard Earth Sciences Data and Information Services Center (GES DISC), Accessed: 2018-12-28, `10.5067/TRMM/TMPA/3H/7 `_\r\n\r\nGlobal Precipitation Mission (GPM)\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\nA full description and documentation of the GPM can be found on the `NASA GPM site `_ [2].\r\n\"The Integrated Multi-satellitE Retrievals for GPM (IMERG) is the unified U.S. algorithm that provides the Day-1 multi-satellite precipitation product for the U.S. GPM team.\r\n\r\nThe precipitation estimates from the various precipitation-relevant satellite passive microwave (PMW) sensors comprising the GPM constellation are computed using the 2014 version of the Goddard Profiling Algorithm (GPROF2014), then gridded, intercalibrated to the GPM Combined Instrument product, and combined into half-hourly 10x10 km fields.\"\r\n\r\nThis dataset has three downloadable products.\r\nThe core product set has a temporal resolution of 30 minutes and have three different \"runs\": Early (3IMERGHHE), Late (3IMERGHHL), and Final (3IMERGHH). Early is 4 hours behind real-time, Late is 12 hours behind real-time, and Late has been rain-gauge calibrated and is several months behind. A more thorough description can be found at the link above.\r\nThe daily products have been deprecated as it is better to download the finer temporal resolution products and aggregate them as needed due to time zone issues that might arise when only using the daily products.\r\n\r\nThe dataset that most people would want is called \"precipitationCal\".\r\n\r\n**NOTE:** According to the `official TRMM docs `_ under B-9, NASA will be reprocessing the TRMM data back until 2000 using the GPM IMERG V05 algorithm for consistency across the two mission's products. This will be integrated into nasadap once it's up.\r\n**Update** They have done it! GPM data back to 2000 has been integrated into nasadap. It has currently been processed for the 3IMERGHH product and has been given a new version number (6).\r\n\r\n.. [2] George Huffman (2017), GPM IMERG Final Precipitation L3 Half Hourly 0.1 degree x 0.1 degree V05, Greenbelt, MD, Goddard Earth Sciences Data and Information Services Center (GES DISC), Accessed: 2018-12-28, `10.5067/GPM/IMERG/3B-HH/05 `_\r\n\r\nUsage Examples\r\n--------------\r\nAt the moment, there is a single class called NASA that provides access to the data. It's highly recommended to use a cache directory as NASA's Hyrax server is a bit slow.\r\n\r\n.. code-block:: python\r\n\r\n from nasadap import Nasa, parse_nasa_catalog\r\n\r\n ###############################\r\n ### Parameters\r\n\r\n username = '' # Need to change!\r\n password = '' # Need to change!\r\n mission = 'gpm'\r\n product = '3IMERGHH'\r\n version = 6\r\n from_date = '2019-03-28'\r\n to_date = '2019-03-29'\r\n dataset_type = 'precipitationCal'\r\n min_lat=-49\r\n max_lat=-33\r\n min_lon=165\r\n max_lon=180\r\n cache_dir = 'nasa/cache/nz'\r\n\r\n ###############################\r\n ### Examples\r\n\r\n min_max1 = parse_nasa_catalog(mission, product, version, min_max=True) # Will give you the min and max available dates for products\r\n\r\n ge1 = Nasa(username, password, mission, cache_dir)\r\n\r\n products = ge1.get_products()\r\n\r\n datasets = ge1.get_dataset_types(products[0])\r\n\r\n ds1 = ge1.get_data(product, version, dataset_type, from_date, to_date, min_lat,\r\n max_lat, min_lon, max_lon)\r\n ge1.close()\r\n\r\nOnce you've got the cached data, you might want to aggregate the netcdf files by year or month to make it more accessible outside of nasadap. The time_combine function under the agg module provides a way to aggregate all of the many netcdf files together and will update the files as new data is added to NASA's server. It will also shift the time to the appropriate time zone (since the NASA data is in UTC+00).\r\n\r\n.. code-block:: python\r\n\r\n from nasadap import agg\r\n\r\n ###############################\r\n ### Parameters\r\n\r\n cache_dir = 'nasa/cache/nz'\r\n save_dir = 'nasa/precip'\r\n\r\n username = '' # Need to change!\r\n password = '' # Need to change!\r\n\r\n mission = 'gpm'\r\n freq = 'M'\r\n product = '3IMERGHH'\r\n version = 6\r\n datasets = ['precipitationCal']\r\n\r\n min_lat=-49\r\n max_lat=-33\r\n min_lon=165\r\n max_lon=180\r\n dl_sim_count = 50\r\n tz_hour_gmt = 12\r\n\r\n agg.time_combine(mission, product, version, datasets, save_dir, username, password,\r\n cache_dir, tz_hour_gmt, freq, min_lat, max_lat, min_lon,\r\n max_lon, dl_sim_count)\r\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/mullenkamp/nasadap", "keywords": "nasa data", "license": "Apache", "maintainer": "", "maintainer_email": "", "name": "nasadap", "package_url": "https://pypi.org/project/nasadap/", "platform": "", "project_url": "https://pypi.org/project/nasadap/", "project_urls": { "Homepage": "https://github.com/mullenkamp/nasadap" }, "release_url": "https://pypi.org/project/nasadap/1.3.3/", "requires_dist": null, "requires_python": "", "summary": "Class and functions for downloading NASA data into xarray", "version": "1.3.3" }, "last_serial": 5528472, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "b8c344cccc091d58ca440ab6e68dc19c", "sha256": "fbd048bce573df0740cd7485883469bdc66f7bea9c968afe592f844bb66cfccd" }, "downloads": -1, "filename": "nasadap-1.0.1.tar.gz", "has_sig": false, "md5_digest": "b8c344cccc091d58ca440ab6e68dc19c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14452, "upload_time": "2018-12-28T00:07:34", "url": "https://files.pythonhosted.org/packages/1d/06/6ba14f32318944c91af0cdfeae2c94ccc3dfc259b7b61febf2ba3b8fe066/nasadap-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "e80b041b8e9f3337763ecbe3982a7cf2", "sha256": "49444d1b43e5ff48417144354c2de342a32cd6f66b707a12a58a0b1fe22d98ef" }, "downloads": -1, "filename": "nasadap-1.0.2.tar.gz", "has_sig": false, "md5_digest": "e80b041b8e9f3337763ecbe3982a7cf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14450, "upload_time": "2018-12-28T00:14:41", "url": "https://files.pythonhosted.org/packages/ec/b0/74493526f9abe414cc832f3199ea36f1a91e6b664ac3955c6f4181c2a2c4/nasadap-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "bacc425a3b88b767ae02ab3b0c97c9dc", "sha256": "74b6e63b1291ec09553817915c91ca82038e278b8dda6ddfbce801c0d4c494f1" }, "downloads": -1, "filename": "nasadap-1.0.3.tar.gz", "has_sig": false, "md5_digest": "bacc425a3b88b767ae02ab3b0c97c9dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14451, "upload_time": "2018-12-28T00:27:57", "url": "https://files.pythonhosted.org/packages/57/bb/456ff77315b46461981c829522909dd1c3e3b3ee4430f75e72f6320f9487/nasadap-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "1586b3ae1458db2fb0a6d355b7458771", "sha256": "5cc2ab334a1d88989ea7282c0902eff2ca6770a858983dbae766fe182e6a0e28" }, "downloads": -1, "filename": "nasadap-1.0.4.tar.gz", "has_sig": false, "md5_digest": "1586b3ae1458db2fb0a6d355b7458771", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14446, "upload_time": "2018-12-28T00:32:13", "url": "https://files.pythonhosted.org/packages/1b/26/86d01c11636a035c7e8f43b8426d8d1003675d81a6bebb2354fc7b60eee4/nasadap-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "c5f191f29a32148255535c78e9c2fc96", "sha256": "77ecc4ec54c46edeb2e1ba70e594cf9eb2b309842921b6d5e439a9ea1d2f7cdc" }, "downloads": -1, "filename": "nasadap-1.0.5.tar.gz", "has_sig": false, "md5_digest": "c5f191f29a32148255535c78e9c2fc96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14479, "upload_time": "2018-12-28T00:45:07", "url": "https://files.pythonhosted.org/packages/75/ed/039c2020045965ec36c429752a7bd432220371b562998214e0a455913023/nasadap-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "4882223bf98cf815383890c95641619d", "sha256": "f79e24f6fb9297e6cff912d34c567bc110918d5c5f1b3a786c131ca00a90dc42" }, "downloads": -1, "filename": "nasadap-1.0.6.tar.gz", "has_sig": false, "md5_digest": "4882223bf98cf815383890c95641619d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14847, "upload_time": "2018-12-29T03:45:06", "url": "https://files.pythonhosted.org/packages/7c/e7/275c0acf1ac467dda176b2b52c7a20c7882ed2805d8516b12973a2c81b66/nasadap-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "0e4669e63d08fa92b4ea1e5b0c4eaac5", "sha256": "2fe7ec69eae1531eb017a70af30c2cec2caa7854f077ba0a9d9fec5281c8107b" }, "downloads": -1, "filename": "nasadap-1.0.7.tar.gz", "has_sig": false, "md5_digest": "0e4669e63d08fa92b4ea1e5b0c4eaac5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14835, "upload_time": "2018-12-29T04:00:46", "url": "https://files.pythonhosted.org/packages/ef/b9/688bf2cbcec1e4ba96b59d6be2f0d71f4070d2750274e673c9740cd4ef25/nasadap-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "fcce5cbb174d423223f8b190987e3efe", "sha256": "9aef2426578ee016371f0265ea35ff84e762c6b1979a1c8ba4966e17288ed38b" }, "downloads": -1, "filename": "nasadap-1.0.8.tar.gz", "has_sig": false, "md5_digest": "fcce5cbb174d423223f8b190987e3efe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15156, "upload_time": "2018-12-29T09:10:23", "url": "https://files.pythonhosted.org/packages/34/82/df533ddcfea632f363ca906dc8d16ea0dcb179aa2ee394bd3e548ffd9d25/nasadap-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "bf382636941322f3b8838fd89541aafd", "sha256": "bcff39119072c734ba008e031085d24d7ee0c98e825ca0acf158365da1bee1fd" }, "downloads": -1, "filename": "nasadap-1.0.9.tar.gz", "has_sig": false, "md5_digest": "bf382636941322f3b8838fd89541aafd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15283, "upload_time": "2018-12-30T20:22:01", "url": "https://files.pythonhosted.org/packages/27/dc/9febdbaceec1cbef2278f914402638fcbf0b89b42153d21057c2e3e8bf8d/nasadap-1.0.9.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "e7fa7ebf4a15df0946d716ae0182f77b", "sha256": "5d92f00c0a2668fab37a3fbc88c171b968cf8bc7f0721e8840192618ee5f923f" }, "downloads": -1, "filename": "nasadap-1.1.0.tar.gz", "has_sig": false, "md5_digest": "e7fa7ebf4a15df0946d716ae0182f77b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15483, "upload_time": "2018-12-30T21:11:08", "url": "https://files.pythonhosted.org/packages/36/00/343567b50d1a2240d71f1a80515179c10dab0bd5364da947207b942921c4/nasadap-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "8e63434b1a737c4e9ac73bdf13a3c392", "sha256": "de4f448c7ef31005cd526cb9df89024e0428d9cfa9a7c4a83f3ab8987ca78346" }, "downloads": -1, "filename": "nasadap-1.1.1.tar.gz", "has_sig": false, "md5_digest": "8e63434b1a737c4e9ac73bdf13a3c392", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15493, "upload_time": "2018-12-30T22:31:01", "url": "https://files.pythonhosted.org/packages/9f/31/2b856a15a560c5c8847b48d84bb3f84c8096bde5269e990c8593514150ed/nasadap-1.1.1.tar.gz" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "999df8db2942406a6f7f46dea3899167", "sha256": "41676508a885713ab05acec037d4bc647e666a606387f0bed86a5447fcb88fb2" }, "downloads": -1, "filename": "nasadap-1.1.10.tar.gz", "has_sig": false, "md5_digest": "999df8db2942406a6f7f46dea3899167", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17300, "upload_time": "2019-01-11T02:50:10", "url": "https://files.pythonhosted.org/packages/10/87/65cb16f48d0312eccdb7f0102eda3a083287e186a7de2d4f4040d8018f2c/nasadap-1.1.10.tar.gz" } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "4befac8c443063558208178ece83814f", "sha256": "29c7a876bc4d9d440392a6848b9dd403b878f38dd551fbafbb2acae2e4a19b81" }, "downloads": -1, "filename": "nasadap-1.1.11.tar.gz", "has_sig": false, "md5_digest": "4befac8c443063558208178ece83814f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17300, "upload_time": "2019-01-11T03:26:03", "url": "https://files.pythonhosted.org/packages/2f/e3/a67620a773c702c41a8636440d260381a73d8b9515faa1ccd3fcfcf2c625/nasadap-1.1.11.tar.gz" } ], "1.1.12": [ { "comment_text": "", "digests": { "md5": "4a786634cd54bdf79601ada9a7a3ace6", "sha256": "1beefbd2c6ad0ab62a95859c767d95b6c47b4575314b327f5fb8de4258d30023" }, "downloads": -1, "filename": "nasadap-1.1.12.tar.gz", "has_sig": false, "md5_digest": "4a786634cd54bdf79601ada9a7a3ace6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17319, "upload_time": "2019-01-12T19:13:54", "url": "https://files.pythonhosted.org/packages/fc/33/f7a71ea15b0220bfd556124cac13d7a320bdf9402af5d84f5246fb298d93/nasadap-1.1.12.tar.gz" } ], "1.1.13": [ { "comment_text": "", "digests": { "md5": "aeefe3b2ab3c32d8011c53d1affbd905", "sha256": "ffec8c5068dd6e3a07801a2ce585642ea903c556e01d39821f9be128df4b80f5" }, "downloads": -1, "filename": "nasadap-1.1.13.tar.gz", "has_sig": false, "md5_digest": "aeefe3b2ab3c32d8011c53d1affbd905", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17427, "upload_time": "2019-01-14T22:12:09", "url": "https://files.pythonhosted.org/packages/2b/8a/3229b6428e64b0efbb223ba36f570559165153c3f7ecb56d6708a74c7a0b/nasadap-1.1.13.tar.gz" } ], "1.1.14": [ { "comment_text": "", "digests": { "md5": "d01446dab3c9841ade32db2781e4ea78", "sha256": "68ef7654918a268d2ae2abec1ea96396f199eb8b906ba85e7a353495d3a99785" }, "downloads": -1, "filename": "nasadap-1.1.14.tar.gz", "has_sig": false, "md5_digest": "d01446dab3c9841ade32db2781e4ea78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17469, "upload_time": "2019-01-15T00:42:22", "url": "https://files.pythonhosted.org/packages/50/39/bad5ac49403604b22c60088a52e4f966ae88373b45ab5a5ad69a67aabcf1/nasadap-1.1.14.tar.gz" } ], "1.1.15": [ { "comment_text": "", "digests": { "md5": "ac2cebf52d8c267693782b4bd7ce9d88", "sha256": "29e548db2e66cdd33d0c322d8a1d9a7111d2d91d41c371b9fc5ad70b31089d96" }, "downloads": -1, "filename": "nasadap-1.1.15.tar.gz", "has_sig": false, "md5_digest": "ac2cebf52d8c267693782b4bd7ce9d88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17495, "upload_time": "2019-01-17T00:24:48", "url": "https://files.pythonhosted.org/packages/89/04/fbe17bd1e32fcb4dd9e845c79dd4faf5cb0884de7ac500621b7226bfefb1/nasadap-1.1.15.tar.gz" } ], "1.1.16": [ { "comment_text": "", "digests": { "md5": "5612fb19641534e4f5b162d3cee776f8", "sha256": "802983ba08db8626eec78550a171986ee07ee1eaa35d9bade8e1ccc187cfee5b" }, "downloads": -1, "filename": "nasadap-1.1.16.tar.gz", "has_sig": false, "md5_digest": "5612fb19641534e4f5b162d3cee776f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17489, "upload_time": "2019-01-17T00:58:15", "url": "https://files.pythonhosted.org/packages/95/81/dbe7ca9fc0c14cd1bd78844b7b8b0cefefd2c7de286bc937891cf588158d/nasadap-1.1.16.tar.gz" } ], "1.1.17": [ { "comment_text": "", "digests": { "md5": "e5eee42a614d357a956310873725a2c8", "sha256": "a53d35bbc9a6f5647f639d55bd54033fa2246b0667003e90b52fd8e9fd71f55f" }, "downloads": -1, "filename": "nasadap-1.1.17.tar.gz", "has_sig": false, "md5_digest": "e5eee42a614d357a956310873725a2c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17487, "upload_time": "2019-01-17T02:09:40", "url": "https://files.pythonhosted.org/packages/04/6b/916a9a56e15e647b90075baf86c80440b4ad2d09e3245f7332a2641411a3/nasadap-1.1.17.tar.gz" } ], "1.1.18": [ { "comment_text": "", "digests": { "md5": "e71f074ee17b21d4fcb4a8f2c623d775", "sha256": "0376fe030ccc44cc0a7b8fb259977b675ae81b908eba03bb74e2014026cb583a" }, "downloads": -1, "filename": "nasadap-1.1.18.tar.gz", "has_sig": false, "md5_digest": "e71f074ee17b21d4fcb4a8f2c623d775", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17521, "upload_time": "2019-01-17T03:29:59", "url": "https://files.pythonhosted.org/packages/92/84/8957f5acb89c15e3762d8d2e50a658d8cb15ac16abb34acd3aa009a40d70/nasadap-1.1.18.tar.gz" } ], "1.1.19": [ { "comment_text": "", "digests": { "md5": "c7d982da8d3b85dce99efa80fdcf3328", "sha256": "e4f6556caab0687f6b3fd60f7f7e0bdfbacd9e2269e3c7cabb7a6685812bbbda" }, "downloads": -1, "filename": "nasadap-1.1.19.tar.gz", "has_sig": false, "md5_digest": "c7d982da8d3b85dce99efa80fdcf3328", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17521, "upload_time": "2019-01-17T04:15:03", "url": "https://files.pythonhosted.org/packages/1f/3f/07fb8b8ddf71b2ec1b4ea1e9f45b94279dfe45b40775af6fe94cfb6367df/nasadap-1.1.19.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "e2f06324be42471613151c64379412a3", "sha256": "88585cd909e900ab3d75205df43ab6cc1f2768c3fc8ed6259e04b19dbe1d5b74" }, "downloads": -1, "filename": "nasadap-1.1.2.tar.gz", "has_sig": false, "md5_digest": "e2f06324be42471613151c64379412a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15507, "upload_time": "2018-12-30T22:34:36", "url": "https://files.pythonhosted.org/packages/c6/41/20ac4aeddb4286e6059a75ca5dd7232c3ecb0f420b88407bee14709ec420/nasadap-1.1.2.tar.gz" } ], "1.1.20": [ { "comment_text": "", "digests": { "md5": "0ee805da71579c74e3e4c88fe9a757b2", "sha256": "68adc15b071a31425419fe34e0e2f7e51a669b6d05aada57bd5f0935e60717ff" }, "downloads": -1, "filename": "nasadap-1.1.20.tar.gz", "has_sig": false, "md5_digest": "0ee805da71579c74e3e4c88fe9a757b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18029, "upload_time": "2019-01-18T01:24:57", "url": "https://files.pythonhosted.org/packages/13/1e/79d7cd883a86ab90d640fe62810e688644f9aab1bc4d1a3873c07a506902/nasadap-1.1.20.tar.gz" } ], "1.1.21": [ { "comment_text": "", "digests": { "md5": "a496f7bc6f34b51ec8e862c0cff0bd57", "sha256": "40ede3ddc5fbff0d2ea6012103fa61a01b587021e4ec42b2b52d285400be81cb" }, "downloads": -1, "filename": "nasadap-1.1.21.tar.gz", "has_sig": false, "md5_digest": "a496f7bc6f34b51ec8e862c0cff0bd57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18030, "upload_time": "2019-01-20T19:50:06", "url": "https://files.pythonhosted.org/packages/df/3f/a88a09c17515628fb4f31abec18f3e6d42707f3adbdf0923170d962460be/nasadap-1.1.21.tar.gz" } ], "1.1.22": [ { "comment_text": "", "digests": { "md5": "82bf314dcf3d45f1594fc8f6be1daa27", "sha256": "b837dcc3944acb506cdcefcebabb1e700eec15ed29fc3755c9b3be8314a50bd8" }, "downloads": -1, "filename": "nasadap-1.1.22.tar.gz", "has_sig": false, "md5_digest": "82bf314dcf3d45f1594fc8f6be1daa27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18042, "upload_time": "2019-01-22T02:18:57", "url": "https://files.pythonhosted.org/packages/94/a5/4c8400da5e185f9844f1eb1d17fbb1b0c819f7773638b20fc7321afa99ed/nasadap-1.1.22.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "1e70f03c71dd405b050c140782ff0292", "sha256": "7c95d799b89171b0560c958fcf4f8c60095cb08cfacd79e6ccc936c9dd8aa839" }, "downloads": -1, "filename": "nasadap-1.1.3.tar.gz", "has_sig": false, "md5_digest": "1e70f03c71dd405b050c140782ff0292", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16028, "upload_time": "2018-12-31T02:11:30", "url": "https://files.pythonhosted.org/packages/5b/9e/3c7ecc94286fc555b1334b67e9d8194f6e43511a19b69e5cc635f9658b36/nasadap-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "d5405be9223b9735d9b280434f85ec27", "sha256": "53602608e0a16e978dd18290d6c3b771309668f810d9441d4d8d1dbb855c6f95" }, "downloads": -1, "filename": "nasadap-1.1.4.tar.gz", "has_sig": false, "md5_digest": "d5405be9223b9735d9b280434f85ec27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16048, "upload_time": "2018-12-31T05:58:15", "url": "https://files.pythonhosted.org/packages/2f/45/89462e099876e200b19d9f3d333a723a82e089a1600a1209794c61a8084a/nasadap-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "3f5f0b6763a6fafb3dad21d653cee293", "sha256": "054ef8496be065232c6963160f0c98463cea3804be0252e89327600c9ab49b21" }, "downloads": -1, "filename": "nasadap-1.1.5.tar.gz", "has_sig": false, "md5_digest": "3f5f0b6763a6fafb3dad21d653cee293", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16041, "upload_time": "2018-12-31T06:56:44", "url": "https://files.pythonhosted.org/packages/ce/05/c4aedb20db4d7cbfa41808a9a52ad5b73f480dbf8c2345d15234832f219b/nasadap-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "ca89a38d2f60f126d3de5207acb9946b", "sha256": "3fb6b48b6d1904ea77dee33f8ca579411a972989fc32de50d8781496cbb3449b" }, "downloads": -1, "filename": "nasadap-1.1.6.tar.gz", "has_sig": false, "md5_digest": "ca89a38d2f60f126d3de5207acb9946b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17121, "upload_time": "2019-01-01T20:17:31", "url": "https://files.pythonhosted.org/packages/58/c8/6f3ffee91630d34f8d5605178e75685d810620435b74eeec2d45e490dbed/nasadap-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "b1e55ec9a21046da0c16a458d1a49a39", "sha256": "e9f8aca62ec94bd5249897e3ddd342f6c3b03eb8738806445ec8562d15c7ac8a" }, "downloads": -1, "filename": "nasadap-1.1.7.tar.gz", "has_sig": false, "md5_digest": "b1e55ec9a21046da0c16a458d1a49a39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17127, "upload_time": "2019-01-02T01:06:55", "url": "https://files.pythonhosted.org/packages/e8/0f/98f7f30bebc5a4a2dbdd1c72c749a30b74443b665999a2786b7c645bdb28/nasadap-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "c09de195f93d9a06c676de1f614af9d0", "sha256": "90b938fe06e6ae8f0ce2073e3a1eacaef1090d375612b977297e8079e1974e6c" }, "downloads": -1, "filename": "nasadap-1.1.8.tar.gz", "has_sig": false, "md5_digest": "c09de195f93d9a06c676de1f614af9d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17111, "upload_time": "2019-01-03T02:08:55", "url": "https://files.pythonhosted.org/packages/2e/80/44dd5f29ed82267a4cd4a6152c93c7a8bf7fadcdbf981ae039b6ef5948a5/nasadap-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "ce22b275daec86023f2d6dd9187e89f5", "sha256": "0f48bd074b9dbe0d4ead55303e65becea38d237dc614c757f1d4fc8694aceaf6" }, "downloads": -1, "filename": "nasadap-1.1.9.tar.gz", "has_sig": false, "md5_digest": "ce22b275daec86023f2d6dd9187e89f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17171, "upload_time": "2019-01-03T02:50:48", "url": "https://files.pythonhosted.org/packages/a6/34/fc3253b3c12717f5088f4901985d4629a36766455edfb92aeb03889e0fab/nasadap-1.1.9.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "95c60ca6cf97c5f6f152d412142d4e13", "sha256": "289bc2556c12fb14467440f91cb9afd61370ee40eb00fedaf2dea62998fd7465" }, "downloads": -1, "filename": "nasadap-1.2.0.tar.gz", "has_sig": false, "md5_digest": "95c60ca6cf97c5f6f152d412142d4e13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18091, "upload_time": "2019-03-22T20:53:20", "url": "https://files.pythonhosted.org/packages/35/c2/d87130d880d84a72f02c7559fdece9afd66ab33d10e3cab61092862b2319/nasadap-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "dd92526e20f2976f77ff8b4cb4e59faa", "sha256": "e8cdbe04c1aa510d16f2bcac345a468da0328e3489875b0b078c448a047634a1" }, "downloads": -1, "filename": "nasadap-1.3.0.tar.gz", "has_sig": false, "md5_digest": "dd92526e20f2976f77ff8b4cb4e59faa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18611, "upload_time": "2019-07-08T00:16:19", "url": "https://files.pythonhosted.org/packages/21/44/b7794085d6ba0099b3404cb45754bba5161bfcd50da50ee4f676af6a5157/nasadap-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "bb9b4e404b2bb2db7679854310b8bd94", "sha256": "c1fc0fc7eef4222b5177b60d3182ad1ee8e51e7a3bb95757a4c6eab2a1ea2923" }, "downloads": -1, "filename": "nasadap-1.3.1.tar.gz", "has_sig": false, "md5_digest": "bb9b4e404b2bb2db7679854310b8bd94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18688, "upload_time": "2019-07-08T02:18:26", "url": "https://files.pythonhosted.org/packages/d2/8a/0256ce13bbd0c170b59f92f8c8e57a93e9eec68968e9d0e6fb7ce014e756/nasadap-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "ddf93142e4e30db5cb1634ff9373519c", "sha256": "b36455a0ca2e6ef6cb369906db487789c61c71e0fd8efbfc2fba1d656fb5a814" }, "downloads": -1, "filename": "nasadap-1.3.2.tar.gz", "has_sig": false, "md5_digest": "ddf93142e4e30db5cb1634ff9373519c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18722, "upload_time": "2019-07-13T23:38:13", "url": "https://files.pythonhosted.org/packages/71/e5/7bcf582c3b6b1004d93928241d1221ae1a7674e8317c4787fb0536e59514/nasadap-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "055913e307f6160fd9379d93dddf72be", "sha256": "9629adc61035009e09fcf91aade7adade5206ae074663d5f8596650942fb2652" }, "downloads": -1, "filename": "nasadap-1.3.3.tar.gz", "has_sig": false, "md5_digest": "055913e307f6160fd9379d93dddf72be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18689, "upload_time": "2019-07-14T00:07:01", "url": "https://files.pythonhosted.org/packages/cd/0e/b7275e139022b056cd5ec096385a8e8a97d02fa4141182b5e91f3f169d89/nasadap-1.3.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "055913e307f6160fd9379d93dddf72be", "sha256": "9629adc61035009e09fcf91aade7adade5206ae074663d5f8596650942fb2652" }, "downloads": -1, "filename": "nasadap-1.3.3.tar.gz", "has_sig": false, "md5_digest": "055913e307f6160fd9379d93dddf72be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18689, "upload_time": "2019-07-14T00:07:01", "url": "https://files.pythonhosted.org/packages/cd/0e/b7275e139022b056cd5ec096385a8e8a97d02fa4141182b5e91f3f169d89/nasadap-1.3.3.tar.gz" } ] }