#!/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 # Pricing information for the TD3C route recorded on 1/11/2021. # You'll need to enter your Vortexa API key when prompted. # In[ ]: date = datetime(2021, 11, 1) df = v.FreightPricingSearch().search( routes=["TD3C"], days=[date] ).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