#!/usr/bin/env python # coding: utf-8 # ### Try out the VortexaSDK # First let's import our requirements # In[ ]: from datetime import datetime import vortexasdk as v # Top 5 countries by number of unique vessels by destination region breakdown, in the last quarter. # You'll need to enter your Vortexa API key when prompted. # In[ ]: df = v.FleetUtilisationDestinationBreakdown().search( breakdown_size=5, breakdown_geography="region", filter_time_min=datetime(2020,10,18), filter_time_max=datetime(2021,1,18,23,59) ).to_df() # In[ ]: df.head() # That's it! You've successfully loaded data using the Vortexa SDK. Check out https://vortechsa.github.io/python-sdk/ for more examples