Tools to download climate indices from NOAA (soi, qbo, pna etc) and format as Pandas dataframe.
$ pip install git+https://github.com/gabrielmpp/climate_indices
import climIndices as ci
import matplotlib.pyplot as plt
df = ci.get_data(['nina34', 'oni', 'nao', 'qbo'])
df.plot(subplots=True, sharex=True, title='Climate indices', legend='False', figsize=[10, 10])
plt.show()