#!/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 products with 'gasoil in the name' products = v.Products().search("gasoil").to_df() # In[ ]: products.head() # That's it! You've successfully loaded data using the Vortexa SDK. Check out https://vortechsa.github.io/python-sdk/ for more examples