#!/usr/bin/env python # coding: utf-8 # ### Try out the Vortexa SDK # First, let's import our requirements # In[ ]: from vortexasdk import OnshoreInventoriesSearch # In[ ]: df = OnshoreInventoriesSearch().search(crude_confidence=['confirmed']).to_df() df.head(10) lst = OnshoreInventoriesSearch().search(storage_types=['refinery']).to_list() lst # 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