#!/usr/bin/env python # coding: utf-8 # ### Try out the Vortexa SDK # First, let's import our requirements # In[ ]: from datetime import datetime from vortexasdk import OnshoreInventoriesTimeseries # In[ ]: df = OnshoreInventoriesTimeseries().search(time_min=datetime(2020,1,1), time_max=datetime(2021,1,1)).to_df() df.head() # That's it! You've successfully loaded data using the Vortexa SDK and should see a list of results. Check out https://vortechsa.github.io/python-sdk/ for more examples