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