planetary_test_data


Nameplanetary_test_data JSON
Version 0.4.0 PyPI version JSON
download
home_pagehttps://github.com/planetarypy/planetary_test_data
SummaryPlanetary Test Data contains a list of planetary data for software testing purposes and utilities to retrieve them.
upload_time2018-01-22 07:30:07
maintainer
docs_urlNone
authorPlanetaryPy Developers
requires_python
licenseBSD
keywords planetary_test_data
VCS
bugtrack_url
requirements None flake8 pytest tox wheel pytest-cov coveralls sphinx sphinx-rtd-theme
Travis-CI
coveralls test coverage No coveralls.
            ===================
Planetary Test Data
===================

.. image:: https://img.shields.io/travis/planetarypy/planetary_test_data.svg
        :target: https://travis-ci.org/planetarypy/planetary_test_data

.. image:: https://img.shields.io/pypi/v/planetary_test_data.svg
        :target: https://pypi.python.org/pypi/planetary_test_data

.. image:: https://coveralls.io/repos/github/planetarypy/planetary_test_data/badge.svg
        :target: https://coveralls.io/github/planetarypy/planetary_test_data



Planetary Test Data contains a list of planetary data for software testing
purposes and utilities to retrieve them.

* Free software: BSD license

Features
--------

* Downloads a core set of sample Planetary test data into
  ``./mission_data/`` or ``./tests/mission_data/`` if ``./tests/`` exists.

TODO
------

* Download to central cache directory and use symbolic links to share data
  between projects or other locations.
* Find smaller example images to reduce download times.
* Command line usage improvements

  * Include a mode that allows users to somehow specify subsets of data to
    retrieve.  Perhaps selecting by mission or instrument name.

* Improve label testing.
* Include Mission Names with each product.
* Include product type with each product.

See also the Github issues for this project.

Usage
------

To download the core set of planetary test data install this package with pip
and then run the command ``get_mission_data``::

  pip install planetary_test_data
  get_mission_data

Additional usage options are shown below::

  usage: get_mission_data [-h] [--all] [--file FILE] [--dir DIR] [--tags [TAGS]]
                        [--instruments [INSTRUMENTS]] [--missions [MISSIONS]]

  optional arguments:
    -h, --help            show this help message and exit
    --all, -a             Download all products.
    --file FILE, -f FILE  Override default data.json by providing path to custom
                          data.json file.
    --dir DIR, -d DIR     Directory to place test data products in.
    --tags [TAGS], -t [TAGS]
                          Retrieve products whose tags match those provided
                          here.
    --instruments [INSTRUMENTS], -i [INSTRUMENTS]
                          Get products by instrument
    --missions [MISSIONS], -m [MISSIONS]
                          Get products by mission

To get a copy of a subset of ``data.json``::

  get_mission_json

Additional usage options are shown below::

  usage: get_mission_json [-h] [--all] [--file FILE] [--dir DIR] [--tags [TAGS]]
                        [--instruments [INSTRUMENTS]] [--missions [MISSIONS]]

  optional arguments:
    -h, --help            show this help message and exit
    --all, -a             Download all products.
    --file FILE, -f FILE  Override default data.json by providing path to custom
                          data.json file.
    --dir DIR, -d DIR     Directory to place test data products in.
    --tags [TAGS], -t [TAGS]
                          Retrieve products whose tags match those provided
                          here.
    --instruments [INSTRUMENTS], -i [INSTRUMENTS]
                          Get products by instrument
    --missions [MISSIONS], -m [MISSIONS]
                          Get products by mission


Description
------------

Running ``get_mission_data`` will do the following:

* If ``tests`` directory exists it will create ``tests/mission_data`` if
  necessary.  If ``tests`` does not exist, it will just create 
  ``mission_data`` in the current directory.
* The data prodcuts tagged to be ``core`` products will be downloaded
  into the download directory.
* Use the ``-a`` or ``--all`` flag to get all the images. This, however, is NOT
  recommended for you will download over 200 images and labels.
* The ``-t`` or ``--tags`` will retrieve products matched with the supplied tag.
  To give multiple tags, use the flag multiple times.
* The ``-d`` or ``--dir`` flag can be used to save the images in a new custom
  location.
* If there exists a custom ``data.json`` locally and you would rather use that
  file to download images rather than the default, use the ``-f`` or
  ``--file`` flag and then the path to the ``data.json``. This is especially
  useful if there are test images needed that do not exist in or are not
  part of the ``core`` in the default ``data.json`` (see ``get_mission_json``
  below).
* To get products by mission use the ``--mission`` or ``-m`` flag. This will
  download all the products from the given mission, even non ``core`` products,
  unless explicity given ``core`` as a tag. To specify multiple missions, use
  the flag multiple times. You must spell the mission the same as spelled in
  `Missions and Instruments`_ (case matters!).
* To get products by instruments use the ``--instruments`` or ``-i`` flag. This
  will download all the products from the given instrument, even non ``core``
  products, unless explicity given ``core`` as a tag. To specify multiple
  instruments, use the flag multiple times. You must spell the instrument the
  same as spelled in `Missions and Instruments`_ (case matters!).
* Only products which do not exist in the download directory will be downloaded.

Running ``get_mission_json`` will do the following:

* Create a copy of ``data.json`` in the ``tests`` or ``test`` directory. This
  will just be the ``core`` data by default. The purpose of getting a copy of
  the ``data.json`` is so it is easier to include images in respective
  projects that are not included in the default ``data.json``. Then developers
  can use the ``-f`` flag on ``get_mission_data`` (see above) to use this
  custom ``data.json``.
* If ``data.json`` already exists, an exception is raised.
* The same flags apply to ``get_mission_json`` as ``get_mission_data``.

Mission Data
-------------

.. _here: https://github.com/planetarypy/planetary_test_data/blob/master/planetary_test_data/data.json

The PDS mission data included in the package can be found here_. 

The following are core products:

* 0047MH0000110010100214C00_DRCL.IMG
* 0047MH0000110010100214C00_DRCL.LBL
* 1p134482118erp0902p2600r8m1.img
* 1p190678905erp64kcp2600l8c1.img
* 2p129641989eth0361p2600r8m1.img
* 2m132591087cfd1800p2977m2f1.img
* h58n3118.img
* r01090al.img

If there are products you think should be included or removed from this dataset
please file a Github issue. New images should be images from instruments that
are not already included or different file types (i.e. EDR vs RDR). New core
images should be distinctly different than the ones that exist and would expose
test and/or edge cases for multiple PlanetaryPy projects/affiliates. For
example, if there was not an RGB image included in the core products (which
there is), then that would test image would expose an edge case for many
projects. However, it is best to use ``get_mission_json`` to get a copy of
``data.json``, add the desired test images to that json file, and then download
images using ``get_mission_data -f path/to/data.json``. We recommend using a
``make test`` command to get the proper mission data before testing.

data.json Format
-----------------

The ``data.json`` file contains PDS product names, urls and other
metainformation about the product.  This structure will be extended to support
generic testing, for instance the ``label`` key will be changed to a
dictionary that includes product label keys and the values found at those keys.

Below is a sample snippet of a ``data.json`` entry::

    "1m298459885effa312p2956m2m1.img": {
        "instrument": "MICROSCOPIC IMAGER", 
        "label": "PDS3", 
        "opens": "True", 
        "url": "http://pds-imaging.jpl.nasa.gov/data/mer/opportunity/mer1mo_0xxx/data/sol1918/edr/1m298459885effa312p2956m2m1.img"
    },


Missions and Instruments
------------------------

The following missions and their instruments have products available for
testing:

* 2001 Mars Odyssey
    * Thermal Emission Imaging System
* Cassini
    * Cassini Radar
    * Imaging Science Subsystem
    * Imaging Science Subsystem Narrow Angle
    * Visual And Infrared Mapping Spectrometer
* Chandrayaan-1
    * Context Camera
    * High Resolution Imaging Science Experiment
    * Mars Color Imager
    * Moon Mineralogy Mapper
* Clementine
    * High Resolution Camera
    * Long Wave Infrared Camera
    * Nearinfrared Camera
    * Ultraviolet/Visible (Uv/Vis) Camera
    * Ultraviolet/Visible Camera
* ESA Mars Express
    * High Resolution Stereo Camera
* Galileo
    * Near-Infrared Mapping Spectrometer
    * Solid_State_Imaging
* Lunar Reconnaissance Orbiter
    * Lunar Reconnaissance Orbiter Camera
    * Lyman Alpha Mapping Project
    * Mid Infrared Camera 1
    * Mid Infrared Camera 2
    * Near Infrared Camera 1
    * Near Infrared Camera 2
    * Near Infrared Spectrometer 1
    * Near Infrared Spectrometer 2 
    * Total Luminance Photometer
    * Visible Camera
    * Visible Spectrometer
* MESSENGER
    * Mercury Dual Imaging System Narrow Angle Camera
    * Mercury Dual Imaging System Narrow Angle Camera, Mercury Dual Imaging System Wide Angle Camera
    * Mercury Dual Imaging System Wide Angle Camera
* Magellan
    * Global Topography Data Record
    * Radar
    * Radar System
    * Synthetic-Aperture Radar
* Mariner 10
    * Mariner 10
* Mariner 9
    * Imaging Science Subsystem
* Mars Exploration Rover
    * Alpha Particle X-Ray Spectrometer
    * Descent Camera
    * Front Hazard Avoidance Camera Left
    * Front Hazard Avoidance Camera Right
    * Hazard Avoidance Camera
    * Microscopic Imager
    * Moessbauer Spectrometer
    * Navigation Camera
    * Navigation Camera Left
    * Panoramic Camera
    * Panoramic Camera Left
    * Panoramic Camera Right
    * Panoromic Camera
    * Rock Abrasion Tool
* Mars Global Surveyor
    * Mars Orbiter Camera - Wide Angle
    * Mars Orbiter Camera Wide Angle
    * Near Infrared Mapping Spectrometer
* Mars Pathfinder
    * Alpha X-Ray Spectrometer
    * Alpha X-Ray Spectrometer (Apxs)
    * Atmospheric Structure Instrument / Meteorology Package
    * Imager For Mars Pathfinder
    * Rover Camera Left
* Mars Science Laboratory
    * Front Hazard Avoidance Camera Left String B
    * Mars Descent Imager Camera
    * Mars Hand Lens Imager Camera
    * Mast Camera Left
    * Navigation Camera Left String A
* Phoenix
    * Optical Microscope
    * Robotic Arm Camera
    * Surface Stereo Imager
* Viking Lander
    * Camera_1
    * Camera_2
* Viking Orbiter
    * Viking Visual Imaging Subsystem
    * Visual_Imaging_Subsystem_Camera_A, Visual_Imaging_Subsystem_Camera_B
* Voyager
    * Imaging Science Subsystem
    * Imaging Science Subsystem - Narrow Angle Camera




History
=======

0.4.0 (2018-01-21)
------------------

* Made new methods/commands to get products by mission and/or instrument
* Made new methods/command to get a copy of the subset of the data.json file
* Added several new products
* Created new documentation
* Made documentation available on RTD
* Create new tests to get %100 coverage

0.3.3 (2015-07-27)
-------------------

* Added 0047MH0000110010100214C00_DRCL.IMG to the core dataset.

0.3.2 (2015-07-21)
-------------------

* Added 2m132591087cfd1800p2977m2f1.img to the core dataset.

0.3.1 (2015-07-13)
--------------------

* Updated data.json to support extended PDS product label tests.

0.3.0 (2015-07-13)
--------------------

* Rewritten to be driven by command line options rather than by file
  system contents.  Run ``get_mission_data -h`` to see options.

0.2.0 (2015-07-11)
--------------------

* Updated ``data.json`` to contain mission data from many more missions.

0.1.1 (2015-07-09)
---------------------

* Fixed Python 3 compativility issue.

0.1.0 (2015-06-24)
---------------------

* First release on PyPI.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/planetarypy/planetary_test_data",
    "name": "planetary_test_data",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "planetary_test_data",
    "author": "PlanetaryPy Developers",
    "author_email": "contact@planetarypy.com",
    "download_url": "https://files.pythonhosted.org/packages/79/a8/d8c588b404b7ddcffe38e59e5784ad4b27197e076b29afe857435c0add76/planetary_test_data-0.4.0.tar.gz",
    "platform": "",
    "description": "===================\nPlanetary Test Data\n===================\n\n.. image:: https://img.shields.io/travis/planetarypy/planetary_test_data.svg\n        :target: https://travis-ci.org/planetarypy/planetary_test_data\n\n.. image:: https://img.shields.io/pypi/v/planetary_test_data.svg\n        :target: https://pypi.python.org/pypi/planetary_test_data\n\n.. image:: https://coveralls.io/repos/github/planetarypy/planetary_test_data/badge.svg\n        :target: https://coveralls.io/github/planetarypy/planetary_test_data\n\n\n\nPlanetary Test Data contains a list of planetary data for software testing\npurposes and utilities to retrieve them.\n\n* Free software: BSD license\n\nFeatures\n--------\n\n* Downloads a core set of sample Planetary test data into\n  ``./mission_data/`` or ``./tests/mission_data/`` if ``./tests/`` exists.\n\nTODO\n------\n\n* Download to central cache directory and use symbolic links to share data\n  between projects or other locations.\n* Find smaller example images to reduce download times.\n* Command line usage improvements\n\n  * Include a mode that allows users to somehow specify subsets of data to\n    retrieve.  Perhaps selecting by mission or instrument name.\n\n* Improve label testing.\n* Include Mission Names with each product.\n* Include product type with each product.\n\nSee also the Github issues for this project.\n\nUsage\n------\n\nTo download the core set of planetary test data install this package with pip\nand then run the command ``get_mission_data``::\n\n  pip install planetary_test_data\n  get_mission_data\n\nAdditional usage options are shown below::\n\n  usage: get_mission_data [-h] [--all] [--file FILE] [--dir DIR] [--tags [TAGS]]\n                        [--instruments [INSTRUMENTS]] [--missions [MISSIONS]]\n\n  optional arguments:\n    -h, --help            show this help message and exit\n    --all, -a             Download all products.\n    --file FILE, -f FILE  Override default data.json by providing path to custom\n                          data.json file.\n    --dir DIR, -d DIR     Directory to place test data products in.\n    --tags [TAGS], -t [TAGS]\n                          Retrieve products whose tags match those provided\n                          here.\n    --instruments [INSTRUMENTS], -i [INSTRUMENTS]\n                          Get products by instrument\n    --missions [MISSIONS], -m [MISSIONS]\n                          Get products by mission\n\nTo get a copy of a subset of ``data.json``::\n\n  get_mission_json\n\nAdditional usage options are shown below::\n\n  usage: get_mission_json [-h] [--all] [--file FILE] [--dir DIR] [--tags [TAGS]]\n                        [--instruments [INSTRUMENTS]] [--missions [MISSIONS]]\n\n  optional arguments:\n    -h, --help            show this help message and exit\n    --all, -a             Download all products.\n    --file FILE, -f FILE  Override default data.json by providing path to custom\n                          data.json file.\n    --dir DIR, -d DIR     Directory to place test data products in.\n    --tags [TAGS], -t [TAGS]\n                          Retrieve products whose tags match those provided\n                          here.\n    --instruments [INSTRUMENTS], -i [INSTRUMENTS]\n                          Get products by instrument\n    --missions [MISSIONS], -m [MISSIONS]\n                          Get products by mission\n\n\nDescription\n------------\n\nRunning ``get_mission_data`` will do the following:\n\n* If ``tests`` directory exists it will create ``tests/mission_data`` if\n  necessary.  If ``tests`` does not exist, it will just create \n  ``mission_data`` in the current directory.\n* The data prodcuts tagged to be ``core`` products will be downloaded\n  into the download directory.\n* Use the ``-a`` or ``--all`` flag to get all the images. This, however, is NOT\n  recommended for you will download over 200 images and labels.\n* The ``-t`` or ``--tags`` will retrieve products matched with the supplied tag.\n  To give multiple tags, use the flag multiple times.\n* The ``-d`` or ``--dir`` flag can be used to save the images in a new custom\n  location.\n* If there exists a custom ``data.json`` locally and you would rather use that\n  file to download images rather than the default, use the ``-f`` or\n  ``--file`` flag and then the path to the ``data.json``. This is especially\n  useful if there are test images needed that do not exist in or are not\n  part of the ``core`` in the default ``data.json`` (see ``get_mission_json``\n  below).\n* To get products by mission use the ``--mission`` or ``-m`` flag. This will\n  download all the products from the given mission, even non ``core`` products,\n  unless explicity given ``core`` as a tag. To specify multiple missions, use\n  the flag multiple times. You must spell the mission the same as spelled in\n  `Missions and Instruments`_ (case matters!).\n* To get products by instruments use the ``--instruments`` or ``-i`` flag. This\n  will download all the products from the given instrument, even non ``core``\n  products, unless explicity given ``core`` as a tag. To specify multiple\n  instruments, use the flag multiple times. You must spell the instrument the\n  same as spelled in `Missions and Instruments`_ (case matters!).\n* Only products which do not exist in the download directory will be downloaded.\n\nRunning ``get_mission_json`` will do the following:\n\n* Create a copy of ``data.json`` in the ``tests`` or ``test`` directory. This\n  will just be the ``core`` data by default. The purpose of getting a copy of\n  the ``data.json`` is so it is easier to include images in respective\n  projects that are not included in the default ``data.json``. Then developers\n  can use the ``-f`` flag on ``get_mission_data`` (see above) to use this\n  custom ``data.json``.\n* If ``data.json`` already exists, an exception is raised.\n* The same flags apply to ``get_mission_json`` as ``get_mission_data``.\n\nMission Data\n-------------\n\n.. _here: https://github.com/planetarypy/planetary_test_data/blob/master/planetary_test_data/data.json\n\nThe PDS mission data included in the package can be found here_. \n\nThe following are core products:\n\n* 0047MH0000110010100214C00_DRCL.IMG\n* 0047MH0000110010100214C00_DRCL.LBL\n* 1p134482118erp0902p2600r8m1.img\n* 1p190678905erp64kcp2600l8c1.img\n* 2p129641989eth0361p2600r8m1.img\n* 2m132591087cfd1800p2977m2f1.img\n* h58n3118.img\n* r01090al.img\n\nIf there are products you think should be included or removed from this dataset\nplease file a Github issue. New images should be images from instruments that\nare not already included or different file types (i.e. EDR vs RDR). New core\nimages should be distinctly different than the ones that exist and would expose\ntest and/or edge cases for multiple PlanetaryPy projects/affiliates. For\nexample, if there was not an RGB image included in the core products (which\nthere is), then that would test image would expose an edge case for many\nprojects. However, it is best to use ``get_mission_json`` to get a copy of\n``data.json``, add the desired test images to that json file, and then download\nimages using ``get_mission_data -f path/to/data.json``. We recommend using a\n``make test`` command to get the proper mission data before testing.\n\ndata.json Format\n-----------------\n\nThe ``data.json`` file contains PDS product names, urls and other\nmetainformation about the product.  This structure will be extended to support\ngeneric testing, for instance the ``label`` key will be changed to a\ndictionary that includes product label keys and the values found at those keys.\n\nBelow is a sample snippet of a ``data.json`` entry::\n\n    \"1m298459885effa312p2956m2m1.img\": {\n        \"instrument\": \"MICROSCOPIC IMAGER\", \n        \"label\": \"PDS3\", \n        \"opens\": \"True\", \n        \"url\": \"http://pds-imaging.jpl.nasa.gov/data/mer/opportunity/mer1mo_0xxx/data/sol1918/edr/1m298459885effa312p2956m2m1.img\"\n    },\n\n\nMissions and Instruments\n------------------------\n\nThe following missions and their instruments have products available for\ntesting:\n\n* 2001 Mars Odyssey\n    * Thermal Emission Imaging System\n* Cassini\n    * Cassini Radar\n    * Imaging Science Subsystem\n    * Imaging Science Subsystem Narrow Angle\n    * Visual And Infrared Mapping Spectrometer\n* Chandrayaan-1\n    * Context Camera\n    * High Resolution Imaging Science Experiment\n    * Mars Color Imager\n    * Moon Mineralogy Mapper\n* Clementine\n    * High Resolution Camera\n    * Long Wave Infrared Camera\n    * Nearinfrared Camera\n    * Ultraviolet/Visible (Uv/Vis) Camera\n    * Ultraviolet/Visible Camera\n* ESA Mars Express\n    * High Resolution Stereo Camera\n* Galileo\n    * Near-Infrared Mapping Spectrometer\n    * Solid_State_Imaging\n* Lunar Reconnaissance Orbiter\n    * Lunar Reconnaissance Orbiter Camera\n    * Lyman Alpha Mapping Project\n    * Mid Infrared Camera 1\n    * Mid Infrared Camera 2\n    * Near Infrared Camera 1\n    * Near Infrared Camera 2\n    * Near Infrared Spectrometer 1\n    * Near Infrared Spectrometer 2 \n    * Total Luminance Photometer\n    * Visible Camera\n    * Visible Spectrometer\n* MESSENGER\n    * Mercury Dual Imaging System Narrow Angle Camera\n    * Mercury Dual Imaging System Narrow Angle Camera, Mercury Dual Imaging System Wide Angle Camera\n    * Mercury Dual Imaging System Wide Angle Camera\n* Magellan\n    * Global Topography Data Record\n    * Radar\n    * Radar System\n    * Synthetic-Aperture Radar\n* Mariner 10\n    * Mariner 10\n* Mariner 9\n    * Imaging Science Subsystem\n* Mars Exploration Rover\n    * Alpha Particle X-Ray Spectrometer\n    * Descent Camera\n    * Front Hazard Avoidance Camera Left\n    * Front Hazard Avoidance Camera Right\n    * Hazard Avoidance Camera\n    * Microscopic Imager\n    * Moessbauer Spectrometer\n    * Navigation Camera\n    * Navigation Camera Left\n    * Panoramic Camera\n    * Panoramic Camera Left\n    * Panoramic Camera Right\n    * Panoromic Camera\n    * Rock Abrasion Tool\n* Mars Global Surveyor\n    * Mars Orbiter Camera - Wide Angle\n    * Mars Orbiter Camera Wide Angle\n    * Near Infrared Mapping Spectrometer\n* Mars Pathfinder\n    * Alpha X-Ray Spectrometer\n    * Alpha X-Ray Spectrometer (Apxs)\n    * Atmospheric Structure Instrument / Meteorology Package\n    * Imager For Mars Pathfinder\n    * Rover Camera Left\n* Mars Science Laboratory\n    * Front Hazard Avoidance Camera Left String B\n    * Mars Descent Imager Camera\n    * Mars Hand Lens Imager Camera\n    * Mast Camera Left\n    * Navigation Camera Left String A\n* Phoenix\n    * Optical Microscope\n    * Robotic Arm Camera\n    * Surface Stereo Imager\n* Viking Lander\n    * Camera_1\n    * Camera_2\n* Viking Orbiter\n    * Viking Visual Imaging Subsystem\n    * Visual_Imaging_Subsystem_Camera_A, Visual_Imaging_Subsystem_Camera_B\n* Voyager\n    * Imaging Science Subsystem\n    * Imaging Science Subsystem - Narrow Angle Camera\n\n\n\n\nHistory\n=======\n\n0.4.0 (2018-01-21)\n------------------\n\n* Made new methods/commands to get products by mission and/or instrument\n* Made new methods/command to get a copy of the subset of the data.json file\n* Added several new products\n* Created new documentation\n* Made documentation available on RTD\n* Create new tests to get %100 coverage\n\n0.3.3 (2015-07-27)\n-------------------\n\n* Added 0047MH0000110010100214C00_DRCL.IMG to the core dataset.\n\n0.3.2 (2015-07-21)\n-------------------\n\n* Added 2m132591087cfd1800p2977m2f1.img to the core dataset.\n\n0.3.1 (2015-07-13)\n--------------------\n\n* Updated data.json to support extended PDS product label tests.\n\n0.3.0 (2015-07-13)\n--------------------\n\n* Rewritten to be driven by command line options rather than by file\n  system contents.  Run ``get_mission_data -h`` to see options.\n\n0.2.0 (2015-07-11)\n--------------------\n\n* Updated ``data.json`` to contain mission data from many more missions.\n\n0.1.1 (2015-07-09)\n---------------------\n\n* Fixed Python 3 compativility issue.\n\n0.1.0 (2015-06-24)\n---------------------\n\n* First release on PyPI.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Planetary Test Data contains a list of planetary data for software testing purposes and utilities to retrieve them.",
    "version": "0.4.0",
    "split_keywords": [
        "planetary_test_data"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "8f262569b963ed6b48bfefa5b32c41e1",
                "sha256": "23a5059059d2f589fac3b3374c2611e026d233f94cbf089bbbd5399703d44546"
            },
            "downloads": -1,
            "filename": "planetary_test_data-0.4.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8f262569b963ed6b48bfefa5b32c41e1",
            "packagetype": "bdist_wheel",
            "python_version": "3.6",
            "requires_python": null,
            "size": 19919,
            "upload_time": "2018-01-22T07:30:10",
            "upload_time_iso_8601": "2018-01-22T07:30:10.017988Z",
            "url": "https://files.pythonhosted.org/packages/df/a7/9b42f08c39518eb2ea51551bbce1ba678e9d074d10486c71a166d5797705/planetary_test_data-0.4.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2d32973af070c4fdb0f8097a41967de5",
                "sha256": "17a8a93eae7707e00b02dc82c3f57724af8609e47a454496416229f76380f94c"
            },
            "downloads": -1,
            "filename": "planetary_test_data-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2d32973af070c4fdb0f8097a41967de5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 30469,
            "upload_time": "2018-01-22T07:30:07",
            "upload_time_iso_8601": "2018-01-22T07:30:07.040788Z",
            "url": "https://files.pythonhosted.org/packages/79/a8/d8c588b404b7ddcffe38e59e5784ad4b27197e076b29afe857435c0add76/planetary_test_data-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2018-01-22 07:30:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "planetarypy",
    "github_project": "planetary_test_data",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": null,
            "specs": []
        },
        {
            "name": "flake8",
            "specs": [
                [
                    ">=",
                    "3.4.1"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "3.2.2"
                ]
            ]
        },
        {
            "name": "tox",
            "specs": [
                [
                    ">=",
                    "2.8.2"
                ]
            ]
        },
        {
            "name": "wheel",
            "specs": [
                [
                    ">=",
                    "0.30.0"
                ]
            ]
        },
        {
            "name": "pytest-cov",
            "specs": [
                [
                    ">=",
                    "2.5.1"
                ]
            ]
        },
        {
            "name": "coveralls",
            "specs": [
                [
                    ">=",
                    "1.2.0"
                ]
            ]
        },
        {
            "name": "sphinx",
            "specs": [
                [
                    ">=",
                    "1.6.6"
                ]
            ]
        },
        {
            "name": "sphinx-rtd-theme",
            "specs": [
                [
                    ">=",
                    "0.2.4"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "planetary_test_data"
}
        
Elapsed time: 0.03184s