# pip install Pydap matplotlib from pydap.client import open_url import matplotlib.pyplot as pl buoy = open_url('link_para_netcdf') temp = buoy.variables['temperature'][:] time = buoy.variables['time'][:] pl.plot(time,temp[:,0],'.') x1,x2,y1,y2 = pl.axis() pl.axis((x1,x2,-10,40)) pl.show()