#!/usr/bin/env python # coding: utf-8 # ### Try out the VortexaSDK # First let's import our requirements # In[ ]: import vortexasdk as v # You'll need to enter your Vortexa API key when prompted. # In[ ]: # Let's load some sample geographies with 'Ocean' in the name. vessels = v.Vessels().search("Ocean").to_df() # In[ ]: vessels.head() # That's it! You've successfully loaded data using the Vortexa SDK. Check out https://vortechsa.github.io/python-sdk/ for more examples