#!/usr/bin/env python # coding: utf-8 # ### Try out the VortexaSDK # First let's import our requirements # In[ ]: from datetime import datetime, timedelta import vortexasdk as v # Now let's load a dataframe of canal transit records that were recently updated # You'll need to enter your Vortexa API key when prompted. # In[ ]: df = v.CanalTransit()\ .search(updated_since=datetime.now() - timedelta(days=2))\ .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