pyNASA

View project on GitHub

Simple Python interface to NASA datasets

pyNASA provides a simple interface to obtain seveal NASA datasets and return them as a pandas dataframe ready to use. It currently retrieves the data every time it is requested. A local caching mechanism will be added soon!

Available datasets and corresponding methods

Installation

pip install pyNASA

Usage

Simplest example:

from pyNASA import pyNASA

nasa = pyNASA()
data = nasa.outgassing() # Retrieve the "Outgassing Db" dataset as a pandas data frame

print(data.shape)