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